@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --accent: #ef4444;
  --accent-light: #f87171;

  --dark: #120606;
  --mid: #1f0b0b;

  --card-bg: #ffffff;

  --border: #fecaca;

  --text: #1a0b0b;
  --muted: #8b5a5a;

  --light-bg: #fff5f5;

  --ink: #0a0a0a;
  --ink-2: #1a0a0a;

  --amber: #fca5a5;
  --amber-light: #fecaca;
  --amber-dim: rgba(239, 68, 68, 0.12);

  --cream: #ffe4e6;
  --cream-2: #fecdd3;

  --stone: #7c4a4a;

  --border: rgba(239, 68, 68, 0.12);
  --border-light: #fecaca;

  --card-shadow: 0 4px 30px rgba(239, 68, 68, 0.08);
  --card-shadow-hover: 0 24px 60px rgba(239, 68, 68, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Syne', sans-serif;
}

/* ─── NAVBAR ─── */
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--dark) !important;
  letter-spacing: -0.5px;
}

.navbar-brand span {
  color: var(--accent);
}

.nav-link {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text) !important;
  padding: 0.5rem 0.75rem !important;
  transition: color 0.2s;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-link:hover {
  color: var(--accent) !important;
}

.nav-link.active {
  color: var(--accent) !important;
}

/* Search */
.search-wrap {
  position: relative;
}

.search-wrap input {
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 0.45rem 2.5rem 0.45rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s, width 0.3s;
  width: 200px;
  background: var(--light-bg);
}

.search-wrap input:focus {
  border-color: var(--accent);
  width: 260px;
  background: #fff;
}

.search-wrap .search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.8rem;
  pointer-events: none;
}

.search-results-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  max-height: 300px;
  overflow-y: auto;
  display: none;
  z-index: 999;
  border: 1px solid var(--border);
}

.search-results-dropdown.show {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
  color: var(--text);
}

.search-result-item:hover {
  background: var(--light-bg);
}

.search-result-item img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 6px;
}

.search-result-item .sr-name {
  font-size: 0.84rem;
  font-weight: 500;
}

.search-result-item .sr-price {
  font-size: 0.8rem;
  color: var(--accent);
}

/* Icon buttons */
.nav-icon-btn {
  position: relative;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
  cursor: pointer;
  color: var(--text);
  font-size: 1rem;
}

.nav-icon-btn:hover {
  background: var(--light-bg);
}

.badge-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--accent);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
}

/* Cart dropdown */
.cart-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  width: 280px;
  padding: 16px;
  display: none;
  z-index: 999;
  border: 1px solid var(--border);
}

.cart-dropdown.show {
  display: block;
}

.cart-drop-total {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.text-accent {
  color: var(--accent);
}

.checkout-section {
  padding: 60px 0;
  background: var(--cream);
  min-height: 80vh
}

.checkout-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  margin-bottom: 20px
}

.checkout-card-head {
  padding: 22px 28px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 14px
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0
}

.step-num.done {
  background: #2d8a6e
}

.checkout-card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink)
}

.checkout-card-body {
  padding: 28px
}

.form-label {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 7px;
  display: block
}

.form-control {
  width: 100%;
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff
}

.form-control:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(232, 151, 74, 0.12)
}

.form-group {
  margin-bottom: 20px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px
}

.pay-method {
  border: 1.5px solid var(--border-light);
  border-radius: 14px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px
}

.pay-method:hover {
  border-color: var(--amber)
}

.pay-method.sel {
  border-color: var(--amber);
  background: var(--amber-dim)
}

.pay-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s
}

.pay-method.sel .pay-radio {
  border-color: var(--amber)
}

.pay-method.sel .pay-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber)
}

.pay-icon {
  font-size: 1.4rem
}

.pay-label {
  font-weight: 600;
  font-size: 0.9rem
}

.pay-sub {
  font-size: 0.77rem;
  color: var(--stone)
}

/* Order Summary */
.order-summary {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  padding: 28px;
  position: sticky;
  top: 100px
}

.os-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px
}

.os-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light)
}

.os-item:last-of-type {
  border-bottom: none
}

.os-item-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0
}

.os-item-name {
  font-size: 0.82rem;
  font-weight: 600;
  flex: 1;
  line-height: 1.35
}

.os-item-price {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink)
}

.os-totals {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--border-light)
}

.os-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.87rem;
  color: var(--stone)
}

.os-row.grand {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
  margin-top: 10px
}

.os-row.grand .gval {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--amber)
}

/* Progress */
.checkout-progress {
  display: flex;
  align-items: center;
  margin-bottom: 36px
}

.cp-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--stone)
}

.cp-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  transition: all 0.3s;
  flex-shrink: 0
}

.cp-step.done .cp-num {
  background: #2d8a6e;
  border-color: #2d8a6e;
  color: #fff
}

.cp-step.active .cp-num {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff
}

.cp-step.active {
  color: var(--ink)
}

.cp-line {
  flex: 1;
  height: 1px;
  background: var(--border-light);
  margin: 0 10px
}

.cp-step.done+.cp-line {
  background: var(--amber)
}

/* Card chips */
.card-chips {
  display: flex;
  gap: 8px;
  margin-top: 10px
}

.card-chip {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 7px;
  padding: 5px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--stone)
}

/* Success */
.success-screen {
  text-align: center;
  padding: 60px 0
}

.success-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d8a6e, #34a87e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  margin: 0 auto 28px;
  box-shadow: 0 16px 48px rgba(45, 138, 110, 0.35);
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275)
}

@keyframes popIn {
  from {
    transform: scale(0);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

.success-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 14px
}

.success-sub {
  color: var(--stone);
  font-size: 1rem;
  margin-bottom: 36px
}

.success-order-id {
  background: var(--cream);
  border-radius: 14px;
  padding: 16px 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  font-size: 0.88rem;
  font-weight: 600
}

.success-order-id span {
  color: var(--amber);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem
}


/* Parent */
.custom-dropdown {
  position: relative;
}

/* Force override Bootstrap */
.custom-dropdown-menu {
  position: absolute !important;
  top: 100%;
  right: 0;
  margin-top: 14px;

  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  width: 280px;
  padding: 10px 0;
  border: 1px solid #eee;

  display: block !important;
  /* override bootstrap */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

/* Show on hover */
.custom-dropdown:hover .custom-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Top Arrow */
.custom-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 25px;
  width: 16px;
  height: 16px;
  background: #fff;
  transform: rotate(45deg);
  border-left: 1px solid #eee;
  border-top: 1px solid #eee;
}

/* Items */
.custom-dropdown-menu .dropdown-item {
  position: relative;
  padding: 10px 20px;
  padding-right: 35px;
  transition: 0.3s ease;
}

/* Hover background */
.custom-dropdown-menu .dropdown-item:hover {
  background: #f8f9fa;
  padding-left: 25px;
}

/* Arrow on item hover */
.custom-dropdown-menu .dropdown-item::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid #000;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  opacity: 0;
  transition: 0.3s ease;
}

.custom-dropdown-menu .dropdown-item:hover::after {
  opacity: 1;
  right: 12px;
}

/* ─── HERO ─── */
.hero-section {
  background: #fff;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: var(--light-bg);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-tagline {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-tagline::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 36px;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0.75rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 92, 0, 0.35);
  color: #fff;
}

.btn-outline-dark {
  border: 2px solid var(--dark);
  color: var(--dark);
  background: none;
  border-radius: 100px;
  padding: 0.7rem 1.8rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-dark:hover {
  background: var(--dark);
  color: #fff;
}

.hero-img-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrap img {
  max-width: 460px;
  width: 100%;
  border-radius: 20px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
  animation: floatY 4s ease-in-out infinite;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

.hero-badge {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-badge-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
}

.hero-badge-1 {
  bottom: 60px;
  left: -20px;
}

.hero-badge-2 {
  top: 80px;
  right: -10px;
}

.hero-badge .label {
  font-size: 0.7rem;
  color: var(--muted);
}

.hero-badge .value {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ─── CATEGORY BANNERS ─── */
.cat-banners {
  padding: 40px 0;
}

.cat-banner {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 140px;
  cursor: pointer;
  transition: transform 0.3s;
  text-decoration: none;
}

.cat-banner:hover {
  transform: scale(1.02);
}

.cat-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.cat-banner:hover img {
  transform: scale(1.05);
}

.cat-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
}

.cat-banner-overlay h4 {
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.cat-banner-overlay p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  margin: 0;
}

.cat-banner-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.8rem;
}

/* ─── SECTION HEADER ─── */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.5px;
  color: var(--dark);
  margin-bottom: 0;
}

/* ─── CATEGORIES SIDEBAR ─── */
.products-section {
  padding: 60px 0;
  background: #fff;
}

.cat-sidebar {
  position: sticky;
  top: 80px;
}

.cat-sidebar-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  padding: 0 0 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 4px;
  transition: all 0.2s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.cat-item:hover {
  background: var(--light-bg);
}

.cat-item.active {
  background: var(--accent);
  color: #fff;
}

.cat-item .cat-name {
  font-weight: 500;
  font-size: 0.9rem;
}

.cat-item .cat-count {
  font-size: 0.75rem;
  background: rgba(0, 0, 0, 0.08);
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 600;
}

.cat-item.active .cat-count {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

/* ─── PRODUCT CARD ─── */
.product-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.product-card-img {
  position: relative;
  overflow: hidden;
  background: var(--light-bg);
  height: 250px;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.product-card:hover .product-card-img img {
  transform: scale(1.06);
}

.card-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.25s;
}

.product-card:hover .card-actions {
  opacity: 1;
  transform: translateX(0);
}

.card-action-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.8rem;
  color: var(--text);
}

.card-action-btn:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1);
}

.card-action-btn.wishlist-btn.active {
  color: var(--accent);
}

.card-action-btn.wishlist-btn.active:hover {
  background: var(--accent);
  color: #fff;
}

.cat-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
}

.product-card-body {
  padding: 14px 16px 16px;
}

.product-card-body h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--dark);
  line-height: 1.3;
}

.product-card-body .desc-preview {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
}

.btn-add-cart {
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-add-cart:hover {
  background: var(--accent);
  transform: scale(1.04);
}

.btn-add-cart.in-cart {
  background: var(--accent);
}

/* ─── SUBSCRIBE CTA ─── */
.subscribe-section {
  background: var(--dark);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.subscribe-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 92, 0, 0.2) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  pointer-events: none;
}

.subscribe-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 92, 0, 0.15) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
  pointer-events: none;
}

.subscribe-section h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #fff;
  letter-spacing: -0.5px;
}

.subscribe-section p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

.subscribe-form {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 6px;
}

.subscribe-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  padding: 0 12px;
  font-size: 0.9rem;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.subscribe-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.subscribe-form button:hover {
  background: var(--accent-light);
}

/* ─── FEATURES CARDS ─── */
.features-section {
  padding: 60px 0;
  background: var(--light-bg);
}

.feature-card {
  border-radius: 20px;
  padding: 28px 24px;
  height: 100%;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.feature-card h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.8;
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

footer .brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 12px;
}

footer .brand-name span {
  color: var(--accent);
}

footer h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

footer a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.88rem;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--accent);
}

.footer-divider {
  /* border: 1px solid rgba(255, 255, 255, 0.8) ; */
  border-color: rgba(255, 255, 255, 0.8);
  margin: 40px 0 0;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5) !important;
  transition: all 0.2s;
  font-size: 0.85rem;
}

.social-link:hover {
  background: var(--accent);
  color: #fff !important;
}

/* ─── PRODUCT DETAIL PAGE ─── */
.product-detail-section {
  padding: 60px 0;
}

.product-detail-img {
  border-radius: 20px;
  overflow: hidden;
  background: var(--light-bg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-cat-tag {
  display: inline-block;
  background: var(--light-bg);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.detail-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.5px;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.1;
}

.detail-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.detail-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-wishlist-outline {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text);
}

.btn-wishlist-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-wishlist-outline.active {
  border-color: var(--accent);
  color: var(--accent);
  background: #FFF0E8;
}

.detail-meta {
  margin-top: 28px;
}

.detail-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.detail-meta-item i {
  color: var(--accent);
  width: 18px;
}

/* ─── CATEGORY PAGE ─── */
.category-hero {
  background: var(--dark);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.category-hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 92, 0, 0.25) 0%, transparent 70%);
}

.category-hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  letter-spacing: -1px;
}

.category-hero p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
}

.filter-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 65px;
  z-index: 100;
}

.filter-pill {
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  background: none;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text);
  white-space: nowrap;
}

.filter-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-pill.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
}

/* Remove default Bootstrap separator */
.breadcrumb-item+.breadcrumb-item::before {
  content: ">";
  padding: 0 8px;
  color: var(--muted);
  font-size: 0.75rem;
}

/* Text styling */
.breadcrumb-item,
.breadcrumb-item a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--text);
}

.breadcrumb-item a:hover {
  color: var(--accent);
}

/* ─── TOAST ─── */
.store-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark);
  color: #fff;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  transition: all 0.3s;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.store-toast i {
  color: var(--accent);
}

.store-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ─── UTILS ─── */
.products-grid {
  row-gap: 24px;
}

.section-divider {
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 24px;
}

/* No results */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}

.no-results i {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.3;
}

@media (max-width: 768px) {
  .hero-section::before {
    display: none;
  }

  .hero-section {
    padding: 40px 0;
    text-align: center;
  }

  .hero-sub {
    margin: 0 auto 28px;
  }

  .hero-badge {
    display: none;
  }

  .cat-sidebar {
    position: relative;
    top: 0;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .cat-sidebar-title {
    display: none;
  }

  .cat-item {
    white-space: nowrap;
    flex: 0 0 auto;
  }
}

/* about */
/* ─── ABOUT SECTION ─── */
.about-section {
  background: var(--light-bg);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-section .section-label {
  color: var(--accent);
}

.about-section .section-title {
  color: var(--dark);
  margin-bottom: 24px;
}

.about-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 32px;
}

.about-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.about-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--text);
}

.about-features-list li i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 2px;
}

.about-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img-wrap img {
  max-width: 90%;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  animation: floatY 5s ease-in-out infinite;
}

/* Floating Statistic Badge */
.about-stat-badge {
  position: absolute;
  bottom: 30px;
  right: 10%;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-stat-badge .value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--dark);
  line-height: 1;
}

.about-stat-badge .label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

/* process */
/* ─── PROCESS SECTION (Enhanced with Line & Dots) ─── */
.process-section {
  padding: 80px 0;
  background: #fff;
}

.process-section .section-label {
  color: var(--accent);
}

.process-section .section-title {
  color: var(--dark);
  margin-bottom: 48px;
}

.process-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 0 20px;
}

/* Main Horizontal Connecting Line */
.process-wrapper::before {
  content: '';
  position: absolute;
  top: 45px;
  /* Aligns with the center of the icon */
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 100px);
  height: 3px;
  background: var(--accent-light);
  z-index: 0;
}

.process-item {
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1;
  max-width: 220px;
  transition: transform 0.3s;
}

.process-item:hover {
  transform: translateY(-8px);
}

/* The "Dot" - Enhanced Icon Container */
.process-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--accent);
  transition: all 0.3s;
  position: relative;
  /* Needed for hover effects */
}

/* Add a subtle inner shadow for depth */
.process-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
}

.process-item:hover .process-icon {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 92, 0, 0.25);
}

.process-item:hover .process-icon::after {
  /* opacity: 1; */
}

.process-item h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.process-item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .process-wrapper::before {
    width: calc(100% - 60px);
  }

  .process-item {
    max-width: 180px;
  }

  .process-icon {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .process-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 0;
    /* Remove gap, handle with padding */
  }

  /* Hide the horizontal line on mobile */
  .process-wrapper::before {
    display: none;
  }

  .process-item {
    max-width: 100%;
    width: 80%;
    padding: 40px 0;
    position: relative;
  }

  /* Vertical line for mobile */
  .process-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 40px;
    background: var(--border);
  }
}

/* contact */
/* ===================================================================
  CONTACT SECTION - PROPERLY STYLED
=================================================================== */

/* --- Main Section Styling --- */
.contact-section {
  background: var(--light-bg); /* Uses a light background from your variables */
  padding: 80px 0; /* Gives the section top and bottom breathing room */
}

.contact-section .section-label {
  color: var(--accent); /* Makes the label stand out with the accent color */
}

.contact-section .section-title {
  color: var(--dark);
  margin-bottom: 48px; /* Space between the title and the content below */
}

/* --- Left Column: Contact Form --- */
.contact-form-wrapper {
  background: #fff; /* A clean white background for the form */
  padding: 40px;
  border-radius: 12px; /* Soft rounded corners */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Subtle shadow to lift it off the page */
}

.contact-form-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 24px;
}

/* --- FIX: Style for the three-column row --- */
.contact-form .form-row-3 {
  display: flex; /* Use Flexbox for alignment */
  gap: 20px; /* Adds space between the form inputs */
}

/* --- Form Input & Textarea Styling --- */
.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-control {
  background: var(--light-bg); /* Light background for inputs */
  border: 1px solid transparent; /* No border by default */
  border-radius: 8px; /* Slightly rounded corners */
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--dark);
  transition: all 0.2s ease-in-out; /* Smooth transition for all changes */
  width: 100%; /* Ensures inputs fill their container */
}

/* Style for the placeholder text */
.contact-form .form-control::placeholder {
  color: var(--muted);
}

/* Hover and Focus states for better user feedback */
.contact-form .form-control:hover {
  border-color: var(--border);
}

.contact-form .form-control:focus {
  outline: none; /* Removes default browser outline */
  border-color: var(--accent);
  background: #fff; /* Changes to white on focus for clarity */
  box-shadow: 0 0 0 3px rgba(255, 92, 0, 0.1); /* Soft glow effect */
}

/* --- Right Column: Contact Details --- */
.contact-details-wrapper {
  padding-left: 40px; /* Creates space between the two columns on larger screens */
}

.contact-details-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 32px;
}

.contact-details-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-details-item i {
  color: var(--accent);
  font-size: 1.25rem;
  width: 24px;
  text-align: center;
  margin-top: 2px; /* Fine-tunes vertical alignment with text */
}

.contact-details-item .info h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.contact-details-item .info p,
.contact-details-item .info a {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-details-item .info a:hover {
  color: var(--accent);
}


/* --- Responsive Design for Contact Section --- */
@media (max-width: 991px) {
  /* On tablets and smaller, stack the columns and remove left padding */
  .contact-details-wrapper {
    padding-left: 0;
    padding-top: 40px; /* Add space on top now that it's below the form */
  }

  /* Make the three form inputs stack vertically */
  .contact-form .form-row-3 {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 576px) {
  /* On very small screens, reduce padding inside the form wrapper */
  .contact-form-wrapper {
    padding: 30px 20px;
  }
}


/* faq */
/* ===================================================================
  FAQ SECTION - INFO ICON & PLUS SIGN STYLE
=================================================================== */

/* --- Main Section Styling --- */
.faq-section {
  background: #fff;
  padding: 80px 0;
}

.faq-section .section-label {
  color: var(--accent);
}

.faq-section .section-title {
  color: var(--dark);
  margin-bottom: 48px;
}

/* --- Left Column: Accordion --- */
.faq-accordion {
  max-width: 100%;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px; /* Space between icon, text, and plus sign */
  transition: color 0.2s;
}

/* --- Info Icon --- */
.faq-info-icon {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0; /* Prevents icon from shrinking */
}

/* --- Question Text --- */
.faq-question-text {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark);
  flex-grow: 1; /* Makes text take up available space */
}

/* --- Plus/Minus Icon --- */
.faq-expand-icon {
  color: var(--dark);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  display: block;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

/* When an item is active, rotate the plus sign to become a minus */
.faq-item.active .faq-expand-icon {
  transform: rotate(45deg);
}

/* --- Answer Styling --- */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding-left: 32px; /* Aligns answer with the question text */
  padding-right: 32px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  padding-top: 10px;
  margin: 0;
}

.faq-answer a {
  color: var(--accent);
  font-weight: 600;
}

/* --- Right Column: Call to Action (Unchanged) --- */
.faq-cta-wrapper {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-cta-img {
  max-width: 80%;
  margin: 0 auto 30px;
  border-radius: 8px;
}

.faq-cta-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.faq-cta-text {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.faq-cta-contact {
  margin-top: 30px;
  text-align: left;
}

/* --- Responsive Design for FAQ Section --- */
@media (max-width: 991px) {
  .faq-cta-wrapper {
    margin-top: 20px;
  }
}