/* ====== VARIABLES & BASE ====== */
:root {
  --primary: #8a1e50;
  --primary-light: #f63ba2;
  --accent: #5c99fb;
  --accent-2: #ec4899;
  --dark: #0f172a;
  --text: #1e293b;
  --text-muted: #64748b;
  --bg: #f8fafc;
  --bg-alt: #f1f5f9;
  --card-bg: #ffffff;
  --border: #e2e8f0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(30, 58, 138, .08);
  --shadow-hover: 0 16px 48px rgba(30, 58, 138, .15);
  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
  --nav-height: 72px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

.btn-primary{
  background-color: var(--primary);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

.text-pink {
  color: #ec4899;
}

.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary-light);
  background: #dbeafe;
  padding: .25rem .75rem;
  border-radius: 20px;
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: .5rem;
}

/* ====== NAVBAR ====== */
#mainNav {
  height: var(--nav-height);
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  z-index: 1050;
}

#mainNav.scrolled {
  background: rgba(255, 255, 255, .97);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(30, 58, 138, .08);
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark) !important;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.brand-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: .9rem;
}

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

.nav-link {
  font-weight: 500;
  color: var(--text) !important;
  font-size: .95rem;
  padding: .5rem .9rem !important;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-light) !important;
  background: #eff6ff;
}

.mega-menu {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hover);
  padding: .5rem;
  min-width: 240px;
}

.mega-menu .dropdown-item {
  border-radius: 8px;
  padding: .6rem 1rem;
  font-weight: 500;
  transition: var(--transition);
}

.mega-menu .dropdown-item:hover {
  background: #eff6ff;
  color: var(--primary-light);
}

.search-wrap {
  position: relative;
}

.search-input {
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: .45rem 1rem .45rem 2.2rem;
  font-size: .9rem;
  width: 220px;
  transition: var(--transition);
  background: var(--bg);
  outline: none;
}

.search-input:focus {
  border-color: var(--primary-light);
  width: 280px;
  box-shadow: 0 0 0 3px #dbeafe;
}

.search-icon {
  position: absolute;
  left: .75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: .85rem;
  pointer-events: none;
}

.nav-icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
}

.nav-icon-btn:hover {
  background: #eff6ff;
  border-color: var(--primary-light);
  color: var(--primary-light);
}

.badge-dot {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  background: var(--accent);
  color: white;
  font-size: .65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.cart-btn .badge-dot {
  background: var(--primary-light);
}

.nav-cta {
  border-radius: 50px !important;
  font-weight: 600;
  padding: .45rem 1.2rem !important;
}

/* ====== HERO SLIDER ====== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background: var(--slide-bg);
  opacity: 0;
  transition: opacity .8s ease, transform .8s ease;
  transform: scale(1.03);
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-slide .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.slide-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbFloat 6s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, .2);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(147, 197, 253, .15);
  bottom: 0;
  left: -80px;
  animation-delay: 2s;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(219, 234, 254, .12);
  top: 50%;
  left: 40%;
  animation-delay: 4s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translateY(0) scale(1)
  }

  50% {
    transform: translateY(-30px) scale(1.05)
  }
}

.slide-badge {
  display: inline-block;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
  color: white;
  font-size: .85rem;
  font-weight: 600;
  padding: .4rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, .2);
  margin-bottom: 1.5rem;
}

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.slide-title em {
  font-style: italic;
  color: var(--accent);
}

.slide-desc {
  color: rgba(255, 255, 255, .8);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}

.slide-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--primary-light);
  color: white;
  border: 2px solid var(--primary-light);
  border-radius: 50px;
  padding: .75rem 2rem;
  font-weight: 700;
  font-family: var(--font-display);
  transition: var(--transition);
  text-decoration: none;
}

.btn-hero-primary:hover {
  background: white;
  color: var(--primary-light);
}

.btn-hero-ghost {
  background: rgba(255, 255, 255, .1);
  color: white;
  border: 2px solid rgba(255, 255, 255, .4);
  border-radius: 50px;
  padding: .75rem 2rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, .2);
}

.slide-img-wrap {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-blob {
  width: 300px;
  height: 300px;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  background: rgba(59, 130, 246, .15);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: blobMorph 8s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

.hero-img-blob img{
  width: 100%;
  height: 100%;
  animation: blobMorph 8s ease-in-out infinite;
  object-fit: cover;
}

@keyframes blobMorph {

  0%,
  100% {
    border-radius: 40% 60% 70% 30%/40% 50% 60% 50%
  }

  50% {
    border-radius: 60% 40% 30% 70%/50% 40% 50% 60%
  }
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  padding: .6rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  color: white;
  white-space: nowrap;
}

.card-1 {
  top: 30px;
  left: -20px;
  animation: floatCard 4s ease-in-out infinite;
}

.card-2 {
  bottom: 60px;
  right: -30px;
  animation: floatCard 4s ease-in-out infinite 2s;
}

@keyframes floatCard {

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

  50% {
    transform: translateY(-12px)
  }
}

.slider-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .3);
  color: white;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.slider-btn:hover {
  background: rgba(255, 255, 255, .3);
}

.slider-dots {
  display: flex;
  gap: .5rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.slider-dot.active {
  width: 24px;
  border-radius: 4px;
  background: white;
}

/* ====== SEARCH RESULTS ====== */
.search-results-panel {
  background: white;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  margin-top: var(--nav-height);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 100;
}

/* ====== CATEGORY CTA ====== */
.category-cta-section {
  background: white;
}

.cat-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  background: white;
  border: 1.5px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
}

.cat-cta-btn:hover {
  border-color: var(--cat-color, var(--primary-light));
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  color: var(--cat-color, var(--primary-light));
}

.cat-cta-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--cat-color) 12%, white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--cat-color);
  transition: var(--transition);
}

.cat-cta-btn:hover .cat-cta-icon {
  background: var(--cat-color);
  color: white;
}

.cat-cta-btn span {
  font-weight: 600;
  font-size: .85rem;
  text-align: center;
}

/* ====== PRODUCT SECTIONS ====== */
.products-section {
  padding: 5rem 0;
  background: var(--bg);
}

.products-section.alt-bg {
  background: white;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.show-all-btn {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--primary-light);
  text-decoration: none;
  font-size: .9rem;
  border: 1.5px solid var(--primary-light);
  padding: .5rem 1.25rem;
  border-radius: 50px;
  transition: var(--transition);
}

.show-all-btn:hover {
  background: var(--primary-light);
  color: white;
}

/* ====== PRODUCT CARD ====== */
.product-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.product-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  z-index: 5;
  background: var(--accent);
  color: white;
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.product-icon-placeholder {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  transition: var(--transition);
}

.product-card:hover .product-icon-placeholder {
  transform: scale(1.1) translateY(-4px);
}

.product-quick-actions {
  position: absolute;
  top: .75rem;
  right: .75rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}

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

.card-action-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
}

.card-action-btn:hover,
.card-action-btn.active {
  background: #fef2f2;
  color: #ef4444;
}

.product-info {
  padding: 1rem 1.25rem 1.25rem;
}

.product-category-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
}

.product-name {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  margin: .35rem 0 .4rem;
  color: var(--dark);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-rating {
  font-size: .75rem;
  color: var(--text-muted);
  margin-bottom: .6rem;
}

.product-rating span {
  margin-left: .25rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
}

.add-to-cart-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-light);
  color: white;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}

.add-to-cart-btn:hover {
  background: var(--primary);
  transform: scale(1.1);
}

.add-to-cart-btn.in-cart {
  background: #10b981;
}

/* ====== ABOUT SECTION ====== */
.about-section {
  background: var(--bg);
}

.about-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: color-mix(in srgb, var(--acolor) 30%, transparent);
}

.about-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--acolor) 12%, white);
  color: var(--acolor);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.about-card h5 {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: .6rem;
}

.about-card p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.6;
}

.stats-row {
  border-top: 1.5px solid var(--border);
  padding-top: 2.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-light);
}

.stat-label {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ====== FAQ SECTION ====== */
.faq-section {
  background: white;
}

.faq-item {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-btn {
  background: white !important;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--dark) !important;
  border: none;
  padding: 1.25rem 1.5rem !important;
  font-size: 1rem;
  box-shadow: none !important;
}

.faq-btn:not(.collapsed) {
  background: #eff6ff !important;
  color: var(--primary-light) !important;
}

.faq-icon {
  color: var(--primary-light);
  font-size: 1.1rem;
}

.faq-body {
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 1.5rem 1.25rem;
  background: #eff6ff;
}

/* ====== SUBSCRIBE ====== */
.subscribe-section {
  background: linear-gradient(135deg, #0f1b3d, #1a3a6b);
}

.subscribe-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  padding: 3rem;
  backdrop-filter: blur(20px);
}

.subscribe-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
}

.subscribe-card p {
  color: rgba(255, 255, 255, .7);
}

.subscribe-input-wrap {
  display: flex;
  gap: .5rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50px;
  padding: .4rem;
}

.subscribe-input {
  flex: 1;
  background: transparent;
  border: 1px solid #cac8c8;
  outline: none;
  color: white;
  padding: .5rem 1rem;
  font-size: .95rem;
  min-width: 0;
}

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

.subscribe-btn {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 50px;
  padding: .6rem 1.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  white-space: nowrap;
  transition: var(--transition);
}

.subscribe-btn:hover {
  background: #d97706;
}

.subscribe-note {
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
  margin-top: .75rem;
}

.unsub-link {
  color: rgba(255, 255, 255, .7);
  text-decoration: underline;
}

.unsub-link:hover {
  color: white;
}

/* ====== CONTACT ====== */
.contact-section {
  background: var(--bg);
}

.contact-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--ccolor) 12%, white);
  color: var(--ccolor);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}

.contact-card h6 {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: .5rem;
}

.contact-card p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.6;
}

.contact-form-wrap {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-input {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  padding: .75rem 1rem !important;
  font-size: .95rem !important;
  transition: var(--transition) !important;
  outline: none !important;
}

.contact-input:focus {
  border-color: var(--primary-light) !important;
  box-shadow: 0 0 0 3px #dbeafe !important;
}

.send-btn {
  background: var(--primary-light) !important;
  border: none !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  padding: .75rem 2rem !important;
}

.send-btn:hover {
  background: var(--primary) !important;
}

.social-connect {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 50px;
  background: color-mix(in srgb, var(--sc) 8%, white);
  color: var(--sc);
  border: 1.5px solid color-mix(in srgb, var(--sc) 25%, transparent);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 600;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--sc);
  color: white;
  transform: translateY(-2px);
}

.app-badges {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  padding: .6rem 1.2rem;
  background: var(--dark);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: .85rem;
  transition: var(--transition);
}

.app-badge:hover {
  background: var(--primary-light);
}

/* ====== FOOTER ====== */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .7);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: white !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.footer-brand .brand-icon {
  background: var(--accent);
}

.footer-desc {
  font-size: .9rem;
  line-height: 1.7;
}

.footer-badges {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.f-badge {
  font-size: .75rem;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: .3rem .75rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  font-size: .9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
}

.payment-icons {
  display: flex;
  gap: .75rem;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, .5);
}

/* ====== CART SIDEBAR ====== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 1060;
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cart-sidebar {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 380px;
  max-width: 95vw;
  background: white;
  z-index: 1061;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  transform: translateX(0);
}

.wishlist-sidebar {
  border-left: 3px solid #ec4899;
}

.cart-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h5 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
}

.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cart-close:hover {
  background: #fee2e2;
  color: #ef4444;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
}

.cart-total {
  font-size: 1.05rem;
}

.checkout-btn {
  border-radius: 50px !important;
  font-weight: 700 !important;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: .75rem;
  transition: var(--transition);
}

.cart-item:hover {
  border-color: var(--primary-light);
}

.cart-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: .85rem;
  font-weight: 600;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-size: .8rem;
  color: var(--text-muted);
}

.cart-item-remove {
  background: none;
  border: 1px solid var(--border);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.cart-item-remove:hover {
  background: #fef2f2;
  color: #ef4444;
  border-color: #fecaca;
}

.empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  color: var(--text-muted);
  text-align: center;
}

.bg-pink {
  background: #ec4899 !important;
}

/* ====== PRODUCT MODAL ====== */
.product-modal {
  border-radius: 24px;
  border: none;
  overflow: hidden;
}

.modal-img-wrap {
  border-radius: 16px;
  overflow: hidden;
}

.modal-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  border-radius: 16px;
}

.modal-category-badge {
  font-size: .75rem;
  padding: .3rem .8rem;
  border-radius: 50px;
  color: white;
}

.modal-price {
  margin-bottom: .5rem;
}

.modal-actions {
  display: flex;
  gap: .75rem;
  align-items: center;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: .35rem .75rem;
}

.qty-control button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
}

.qty-control span {
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}

/* ====== LEGAL OVERLAY ====== */
.legal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  padding: 1rem;
}

.legal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.legal-modal {
  background: white;
  border-radius: 24px;
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px);
  transition: transform .3s;
}

.legal-overlay.active .legal-modal {
  transform: translateY(0);
}

.legal-modal h3 {
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 1rem;
}

.legal-modal h5 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 1.25rem 0 .5rem;
}

.legal-modal p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: .75rem;
}

.legal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.legal-close:hover {
  background: #fee2e2;
  color: #ef4444;
}

.unsub-modal {
  max-width: 420px;
  text-align: left;
}

.unsub-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #fef2f2;
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}

/* ====== BACK TO TOP ====== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: white;
  border: none;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(59, 130, 246, .4);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .slide-title {
    font-size: 1.8rem;
  }

  .subscribe-input-wrap {
    flex-direction: column;
    border-radius: 16px;
  }

  .subscribe-btn {
    border-radius: 12px !important;
  }

  .hero-section {
    height: 80vh;
  }

  .search-input {
    width: 160px;
  }

  .search-input:focus {
    width: 200px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-sidebar {
    width: 100%;
  }
}

@media (max-width: 576px) {
  :root {
    --nav-height: 64px;
  }

  .products-section {
    padding: 3rem 0;
  }

  .cat-cta-btn {
    padding: 1rem .5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ====== ANIMATIONS ====== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slide.active .slide-badge,
.hero-slide.active .slide-title,
.hero-slide.active .slide-desc,
.hero-slide.active .slide-actions {
  animation: fadeInUp .8s ease forwards;
}

.hero-slide.active .slide-badge {
  animation-delay: .1s;
  opacity: 0;
}

.hero-slide.active .slide-title {
  animation-delay: .25s;
  opacity: 0;
}

.hero-slide.active .slide-desc {
  animation-delay: .4s;
  opacity: 0;
}

.hero-slide.active .slide-actions {
  animation-delay: .55s;
  opacity: 0;
}

/* ══════════════════════════════════════════
   ADDITIONS & UPDATES
   ══════════════════════════════════════════ */

/* ── Product card IMAGE ── */
.product-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
  display: block;
}

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

.product-img-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--pcolor) 8%, white);
}

/* wishlist btn active state */
.card-action-btn.wishlisted {
  background: #fef2f2;
  color: #ef4444;
}

/* ── Cart/wishlist item with image ── */
.cart-item-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ci-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.cart-item-unit {
  font-size: .78rem;
  color: var(--text-muted);
  display: block;
  margin-top: .15rem;
}

.ci-qty-row {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-top: .4rem;
}

.ci-qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--text);
  transition: var(--transition);
}

.ci-qty-btn:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
  background: #eff6ff;
}

.ci-qty-num {
  min-width: 22px;
  text-align: center;
  font-weight: 700;
  font-size: .9rem;
}

.ci-line-total {
  font-weight: 700;
  font-size: .85rem;
  color: var(--dark);
  margin-left: .5rem;
}

/* wishlist actions column */
.wish-item-actions {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  flex-shrink: 0;
}

/* Cart footer price rows */
.cart-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .4rem 0;
  font-size: .9rem;
  border-bottom: 1px solid var(--border);
}

.cart-price-row:last-of-type {
  border-bottom: none;
}

.cart-total-row {
  font-size: 1.05rem;
  font-weight: 700;
  padding-top: .6rem;
}

.fw-600 {
  font-weight: 600;
}

/* ── CHECKOUT OVERLAY ── */
.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}

.checkout-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.checkout-modal {
  background: white;
  border-radius: 24px;
  width: 100%;
  max-width: 960px;
  margin: auto;
  transform: translateY(40px) scale(.97);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .25);
}

.checkout-overlay.active .checkout-modal {
  transform: translateY(0) scale(1);
}

.checkout-header {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
}

.checkout-back-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.checkout-back-btn:hover {
  background: #eff6ff;
  color: var(--primary-light);
  border-color: var(--primary-light);
}

.checkout-body {
  padding: 1.75rem;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

/* checkout form sections */
.co-section {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.co-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.co-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .35rem;
  display: block;
}

.co-input {
  border: 1.5px solid var(--border) !important;
  border-radius: 10px !important;
  padding: .65rem 1rem !important;
  font-size: .95rem !important;
  transition: var(--transition) !important;
}

.co-input:focus {
  border-color: var(--primary-light) !important;
  box-shadow: 0 0 0 3px #dbeafe !important;
  outline: none;
}

/* payment options */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.payment-option {
  display: block;
  cursor: pointer;
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  transition: var(--transition);
}

.payment-option input[type="radio"] {
  display: none;
}

.payment-option.selected,
.payment-option:has(input:checked) {
  border-color: var(--primary-light);
  background: #eff6ff;
}

.payment-option-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.payment-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.disabled-option {
  cursor: not-allowed;
  opacity: .7;
}

.co-cod-note {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  padding: .75rem 1rem;
  font-size: .88rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.co-place-btn {
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-family: var(--font-display) !important;
  padding: .85rem 2rem !important;
  font-size: 1rem !important;
}

/* order summary box */
.co-summary-box {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  position: sticky;
  top: 1rem;
}

.co-items-list {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 1rem;
}

.co-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
}

.co-item:last-child {
  border-bottom: none;
}

.co-item-img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.co-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.co-item-info {
  flex: 1;
  min-width: 0;
}

.co-item-name {
  font-size: .85rem;
  font-weight: 600;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.co-item-meta {
  font-size: .75rem;
  color: var(--text-muted);
}

.co-item-price {
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}

.co-price-breakdown {
  border-top: 1.5px solid var(--border);
  padding-top: .75rem;
  margin-bottom: 1rem;
}

.co-price-row {
  display: flex;
  justify-content: space-between;
  padding: .35rem 0;
  font-size: .9rem;
}

.co-price-total {
  font-size: 1.1rem;
  font-weight: 800;
  border-top: 2px solid var(--dark);
  padding-top: .6rem;
  margin-top: .3rem;
}

.co-trust-badges {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: .75rem;
}

.co-trust-badges span {
  font-size: .78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .3rem;
  background: white;
  border: 1px solid var(--border);
  padding: .25rem .6rem;
  border-radius: 50px;
}

.form-label{
  color: #fff;
}

/* ── ORDER SUCCESS ── */
.success-modal {
  max-width: 440px;
}

.success-animation {
  display: flex;
  justify-content: center;
  margin-bottom: .5rem;
}

.success-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 24px rgba(16, 185, 129, .35);
  animation: successPop .5s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

@keyframes successPop {
  from {
    transform: scale(0)
  }

  to {
    transform: scale(1)
  }
}

.success-details {
  background: var(--bg);
  border-radius: 12px;
  padding: 1rem;
  margin-top: 1rem;
}

.success-detail-row {
  display: flex;
  align-items: center;
  padding: .4rem 0;
  font-size: .9rem;
  border-bottom: 1px solid var(--border);
}

.success-detail-row:last-child {
  border-bottom: none;
}

/* ── MODAL improvements ── */
.modal-product-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
}

.modal-img-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
  border-radius: 16px;
}

.modal-img-wrap {
  border-radius: 16px;
  overflow: hidden;
}

.modal-perks {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.perk-tag {
  font-size: .78rem;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: .25rem .7rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

/* ── Responsive checkout ── */
@media(max-width:768px) {
  .checkout-body {
    padding: 1rem;
  }

  .co-section {
    padding: 1rem;
  }

  .checkout-modal {
    border-radius: 16px;
  }

  .co-summary-box {
    position: static;
  }
}