/* ====================================================
   BLISS BALANCE.co - MOBILE & LAPTOP PERFECTED STYLES
   100% Responsive Engine (Phones & Laptops Parity)
   ==================================================== */

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

:root {
  /* Color Tokens */
  --clr-bg: #0A0A0C;
  --clr-card-bg: #141619;
  --clr-red: #E50914;
  --clr-red-hover: #C10711;
  --clr-yellow: #FAFF00;
  --clr-yellow-hover: #E6EC00;
  --clr-pink: #FF3366;
  --clr-white: #FFFFFF;
  --clr-text-muted: #9E9EA5;
  --clr-border: rgba(255, 255, 255, 0.12);

  /* Typography */
  --ff-heading: 'Space Grotesk', -apple-system, sans-serif;
  --ff-body: 'Plus Jakarta Sans', -apple-system, sans-serif;

  /* Layout & Spacing */
  --header-height: 88px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body.bliss-comet-theme {
  font-family: var(--ff-body);
  background-color: var(--clr-bg);
  color: var(--clr-white);
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  touch-action: manipulation;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ====================================================
   1. PLAIN INTRO LOADER WITH MASSIVE LOGO FLICKER
   ==================================================== */
.intro-loader-screen {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s ease;
}

.intro-loader-screen.dismissed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-center-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.flicker-logo-img {
  width: clamp(220px, 60vw, 380px);
  height: auto;
  object-fit: contain;
  animation: logoFlickerGlow 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

@keyframes logoFlickerGlow {
  0% {
    opacity: 0.15;
    transform: scale(0.96);
    filter: drop-shadow(0 0 0px var(--clr-red));
  }
  20% {
    opacity: 0.95;
    transform: scale(1.03);
    filter: drop-shadow(0 0 35px var(--clr-red));
  }
  35% {
    opacity: 0.35;
    transform: scale(0.98);
  }
  55% {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 0 50px var(--clr-red));
  }
  75% {
    opacity: 0.75;
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 0 40px var(--clr-red));
  }
}

/* ====================================================
   2. ANNOUNCEMENT BAR
   ==================================================== */
.announcement-bar {
  background-color: #141619;
  color: var(--clr-white);
  font-family: var(--ff-heading);
  font-size: clamp(0.7rem, 2vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid var(--clr-border);
  overflow: hidden;
  white-space: nowrap;
}

.announcement-track {
  display: inline-flex;
  gap: 24px;
  animation: marqueeScroll 25s linear infinite;
}

.accent {
  color: var(--clr-red);
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ====================================================
   3. NAVBAR (DESKTOP & MOBILE OPTIMIZED)
   ==================================================== */
.navbar-comet {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(10, 10, 12, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav-container {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-svg {
  height: clamp(38px, 6vw, 56px);
  width: auto;
  object-fit: contain;
}

.brand-text-block {
  display: flex;
  align-items: baseline;
}

.brand-name {
  font-family: var(--ff-heading);
  font-size: clamp(1.2rem, 3.5vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--clr-white);
  white-space: nowrap;
}

.brand-domain {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 2.8vw, 1.35rem);
  font-weight: 500;
  color: var(--clr-text-muted);
  margin-left: 0;
}

.nav-menu {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--clr-white);
  position: relative;
  padding: 6px 0;
  transition: var(--transition-smooth);
}

.nav-link.active,
.nav-link:hover {
  color: var(--clr-yellow);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--clr-yellow);
  transition: var(--transition-smooth);
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  position: relative;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: var(--clr-card-bg);
  color: var(--clr-white);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.icon-btn:hover,
.icon-btn:active {
  background: var(--clr-yellow);
  color: #000;
  border-color: var(--clr-yellow);
}

.mobile-menu-toggle {
  display: none;
}

.badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--clr-red);
  color: var(--clr-white);
  font-family: var(--ff-heading);
  font-size: 0.7rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: #0A0A0C;
  border-bottom: 1px solid var(--clr-border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(-150%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
}

.mobile-nav-drawer.open {
  transform: translateY(0);
}

.mobile-nav-link {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--clr-yellow);
}

/* ====================================================
   4. HERO SECTION (PHONE & LAPTOP PARITY)
   ==================================================== */
.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--clr-border);
  padding: 60px 0;
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 12, 0.92) 0%, rgba(10, 10, 12, 0.65) 50%, rgba(10, 10, 12, 0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero-tag {
  font-family: var(--ff-heading);
  font-size: clamp(0.9rem, 2.5vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #EEE;
  display: block;
  margin-bottom: 8px;
}

.hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 18px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  color: #DDD;
  max-width: 580px;
  margin-bottom: 34px;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  min-height: 48px;
}

.btn-yellow {
  background-color: var(--clr-yellow);
  color: #000000;
}

.btn-yellow:hover,
.btn-yellow:active {
  background-color: var(--clr-yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(250, 255, 0, 0.35);
}

.btn-outline {
  background-color: rgba(10, 10, 12, 0.4);
  color: var(--clr-white);
  border: 1px solid var(--clr-white);
  backdrop-filter: blur(8px);
}

.btn-outline:hover,
.btn-outline:active {
  background: var(--clr-white);
  color: #000;
}

.btn-yellow-outline {
  background-color: transparent;
  color: var(--clr-yellow);
  border: 1px solid var(--clr-yellow);
}

.btn-yellow-outline:hover {
  background: var(--clr-yellow);
  color: #000;
}

/* ====================================================
   5. 2-CATEGORY SPOTLIGHT SHOWCASE (MOBILE OPTIMIZED)
   ==================================================== */
.categories-2grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.category-spotlight-card {
  position: relative;
  height: clamp(340px, 45vh, 440px);
  background: var(--clr-card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.category-spotlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.category-spotlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.15) 0%, rgba(10, 10, 12, 0.92) 100%);
}

.category-spotlight-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: clamp(20px, 4vw, 36px);
  z-index: 2;
}

.spotlight-tag {
  font-family: var(--ff-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--clr-yellow);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 6px;
}

.spotlight-title {
  font-family: var(--ff-heading);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.1;
}

.spotlight-desc {
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  color: var(--clr-text-muted);
  margin-bottom: 16px;
  max-width: 480px;
}

.spotlight-btn {
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--clr-yellow);
  letter-spacing: 0.08em;
  transition: var(--transition-smooth);
}

.category-spotlight-card:hover .spotlight-btn {
  padding-left: 6px;
}

/* ====================================================
   6. FEATURED PRODUCTS & TOUCH HORIZONTAL CAROUSEL
   ==================================================== */
.section-padding {
  padding: clamp(50px, 8vw, 95px) 0;
  border-bottom: 1px solid var(--clr-border);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-header.center {
  justify-content: center;
  text-align: center;
}

.section-label {
  font-family: var(--ff-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--clr-red);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 6px;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 5vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.ctrl-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: var(--clr-card-bg);
  color: var(--clr-white);
  border: 1px solid var(--clr-border);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.ctrl-btn:hover,
.ctrl-btn:active {
  background: var(--clr-yellow);
  color: #000;
  border-color: var(--clr-yellow);
}

.carousel-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 14px;
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
}

.carousel-viewport::-webkit-scrollbar {
  display: none;
}

.products-track {
  display: flex;
  gap: 20px;
  min-width: min-content;
}

.product-card {
  width: clamp(250px, 75vw, 295px);
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  background: var(--clr-red);
  color: var(--clr-white);
  font-family: var(--ff-heading);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.product-image-box {
  position: relative;
  height: clamp(200px, 35vw, 250px);
  background: #08080A;
}

.product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.quick-view-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.product-card:hover .quick-view-overlay,
.product-card:focus-within .quick-view-overlay {
  transform: translateY(0);
}

.btn-quick-view {
  width: 100%;
  background: rgba(10, 10, 12, 0.95);
  color: var(--clr-white);
  font-family: var(--ff-heading);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 12px;
  min-height: 44px;
}

.product-info {
  padding: 16px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.product-cat {
  font-family: var(--ff-heading);
  font-size: 0.65rem;
  color: var(--clr-red);
  font-weight: 800;
  text-transform: uppercase;
}

.product-rating {
  font-size: 0.78rem;
  color: var(--clr-yellow);
  font-weight: 700;
}

.product-name {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.product-swatches {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.swatch.active,
.swatch:hover {
  transform: scale(1.25);
  border-color: var(--clr-white);
}

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--clr-border);
  padding-top: 12px;
  gap: 8px;
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.product-price {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--clr-white);
}

.product-price-old {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  text-decoration: line-through;
}

.btn-add-cart {
  background: var(--clr-red);
  color: var(--clr-white);
  font-family: var(--ff-heading);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 10px 14px;
  min-height: 40px;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.btn-add-cart:hover,
.btn-add-cart:active {
  background: var(--clr-red-hover);
}

/* ====================================================
   7. CAMPAIGN DROP BANNER
   ==================================================== */
.banner-campaign-drop {
  background: #141619;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 16px 0;
}

.campaign-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--ff-heading);
  font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.campaign-text {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.campaign-tag {
  background: var(--clr-red);
  color: var(--clr-white);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.campaign-timer {
  color: var(--clr-yellow);
  font-weight: 800;
}

/* ====================================================
   8. SECONDARY HIGHLIGHT BANNER
   ==================================================== */
.highlight-banner {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--clr-border);
  padding: 50px 0;
}

.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 12, 0.92) 0%, rgba(10, 10, 12, 0.7) 50%, rgba(10, 10, 12, 0.3) 100%);
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.banner-subtitle {
  font-family: var(--ff-heading);
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  font-weight: 700;
  color: #DDD;
  margin-bottom: 6px;
}

.banner-title {
  font-family: var(--ff-heading);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.banner-desc {
  font-size: clamp(0.92rem, 2vw, 1.1rem);
  color: #CCC;
  max-width: 600px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ====================================================
   9. REVIEWS & PRESS
   ==================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.review-card {
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.stars {
  color: #FFB800;
  font-size: 1rem;
  margin-bottom: 10px;
}

.review-quote {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.review-text {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.reviewer-name {
  font-family: var(--ff-heading);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--clr-white);
  margin-top: auto;
}

.press-ticker {
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.press-title {
  font-family: var(--ff-heading);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--clr-red);
}

.press-logos {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--ff-heading);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 800;
  color: var(--clr-text-muted);
}

/* ====================================================
   10. GIANT YELLOW SLOGAN MARQUEE
   ==================================================== */
.slogan-marquee-banner {
  background: var(--clr-yellow);
  color: #000000;
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}

.slogan-text {
  font-family: var(--ff-heading);
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  display: inline-block;
  animation: sloganScroll 25s linear infinite;
}

.highlight-pink {
  background: var(--clr-pink);
  color: var(--clr-white);
  padding: 2px 10px;
}

@keyframes sloganScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ====================================================
   11. MAIN FOOTER
   ==================================================== */
.main-footer {
  background: #060608;
  padding: 60px 0 30px;
  border-top: 1px solid var(--clr-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-svg {
  height: 44px;
  width: auto;
}

.footer-about-text {
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  margin: 14px 0 20px;
  line-height: 1.6;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-border);
  color: var(--clr-white);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background: var(--clr-yellow);
  color: #000;
}

.footer-heading {
  font-family: var(--ff-heading);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--clr-text-muted);
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--clr-white);
}

.contact-info p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}

/* ====================================================
   12. COMET LUXURY CART DRAWER (MOBILE PERFECTED)
   ==================================================== */
.drawer-overlay,
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.active,
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 480px;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: #0A0A0C;
  border-left: 1px solid var(--clr-border);
  z-index: 2100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.cart-header {
  padding: 20px 24px;
  background: #0A0A0C;
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-title {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.cart-title sup {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  font-weight: 600;
  margin-left: 2px;
}

.close-btn {
  font-size: 1.8rem;
  color: var(--clr-white);
  padding: 4px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-items-container {
  flex-grow: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
}

/* Empty Cart */
.cart-empty-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 10px;
}

.shoebox-icon-box {
  width: 130px;
  height: 84px;
  border: 2px solid var(--clr-white);
  border-radius: var(--radius-sm);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.shoebox-icon-box::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -4px;
  right: -4px;
  height: 10px;
  border: 2px solid var(--clr-white);
  border-bottom: none;
}

.shoebox-logo-svg {
  width: 40px;
  height: auto;
}

.cart-empty-title {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.cart-empty-sub {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-bottom: 20px;
}

.btn-get-started {
  background: var(--clr-yellow);
  color: #000000;
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  min-height: 44px;
}

.account-subtext {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  margin-bottom: 24px;
}

.account-subtext a {
  color: var(--clr-white);
  text-decoration: underline;
}

.bestsellers-heading {
  font-family: var(--ff-heading);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: left;
  width: 100%;
  margin-bottom: 14px;
  border-top: 1px solid var(--clr-border);
  padding-top: 20px;
}

.bestsellers-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  padding-bottom: 10px;
}

.bestseller-item-card {
  min-width: 150px;
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.bestseller-item-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.bestseller-item-info {
  padding: 10px;
  text-align: left;
}

.bestseller-item-title {
  font-family: var(--ff-heading);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bestseller-item-price {
  font-size: 0.78rem;
  color: var(--clr-yellow);
  font-weight: 700;
}

/* Cart Item Row */
.cart-item-row {
  display: flex;
  gap: 14px;
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 14px;
}

.cart-item-thumb {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: #08080A;
}

.cart-item-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.cart-item-name {
  font-family: var(--ff-heading);
  font-size: 0.98rem;
  font-weight: 800;
}

.cart-item-sub {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  margin-top: 2px;
}

.cart-item-price {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-white);
}

.cart-item-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 8px;
}

.stepper-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  background: #000;
}

.stepper-btn {
  width: 36px;
  height: 36px;
  color: var(--clr-white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stepper-val {
  font-family: var(--ff-heading);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0 10px;
}

/* Cart 4-Grid Features Row */
.cart-features-4grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 14px 0;
  margin: 14px 0;
  text-align: center;
}

.cart-feature-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cart-feature-icon {
  font-size: 1rem;
  margin-bottom: 4px;
}

.cart-feature-title {
  font-family: var(--ff-heading);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  line-height: 1.2;
}

/* Gift Wrap Box */
.gift-wrap-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--clr-card-bg);
  border: 1px dashed var(--clr-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 14px;
}

.gift-wrap-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}

.btn-add-gift {
  border: 1px solid var(--clr-border);
  color: var(--clr-white);
  font-family: var(--ff-heading);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  min-height: 34px;
}

/* Cart Footer */
.cart-footer {
  padding: 20px 24px;
  background: #0A0A0C;
  border-top: 1px solid var(--clr-border);
  padding-bottom: max(20px, env(safe-area-inset-bottom));
}

.checkout-notice-strip {
  background: rgba(250, 255, 0, 0.08);
  border: 1px solid rgba(250, 255, 0, 0.2);
  color: var(--clr-yellow);
  font-family: var(--ff-heading);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.checkout-btn {
  width: 100%;
  background: var(--clr-yellow);
  color: #000000;
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 16px;
  border-radius: var(--radius-sm);
  min-height: 52px;
  transition: var(--transition-smooth);
}

.checkout-btn:hover,
.checkout-btn:active {
  background: var(--clr-yellow-hover);
}

/* ====================================================
   13. MODALS (RESPONSIVE QUICK VIEW & SEARCH)
   ==================================================== */
.quick-view-card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  max-width: 850px;
  width: 90%;
  max-height: 90vh;
  max-height: 90dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 2100;
}

.search-modal-card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 90%;
  max-height: 85vh;
  padding: 28px;
  overflow-y: auto;
  z-index: 2100;
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  font-size: 1.8rem;
  color: var(--clr-white);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-img-wrapper {
  background: #000;
  height: 100%;
  min-height: 250px;
}

.modal-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content-wrapper {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.modal-cat {
  font-family: var(--ff-heading);
  font-size: 0.68rem;
  color: var(--clr-red);
  font-weight: 800;
  text-transform: uppercase;
}

.modal-title {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 4px 0;
}

.modal-price {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--clr-yellow);
  margin-bottom: 10px;
}

.modal-desc {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  margin-bottom: 18px;
}

.size-grid {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.size-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius-sm);
  background: #1A1A1E;
  color: var(--clr-white);
  border: 1px solid var(--clr-border);
  font-family: var(--ff-heading);
  font-weight: 800;
}

.size-btn.active,
.size-btn:hover {
  background: var(--clr-yellow);
  color: #000;
}

.search-input-field {
  width: 100%;
  background: var(--clr-bg);
  color: var(--clr-white);
  border: 1px solid var(--clr-border);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  margin-top: 14px;
}

.toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast-msg {
  background: var(--clr-yellow);
  color: #000;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: 0.85rem;
  width: fit-content;
  max-width: 100%;
  pointer-events: auto;
}

/* ====================================================
   14. BREAKPOINTS (PHONE & TABLET & LAPTOP PARITY)
   ==================================================== */
@media (max-width: 1024px) {
  .categories-2grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu-wrap {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-actions,
  .banner-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn,
  .banner-actions .btn {
    width: 100%;
  }

  .reviews-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-view-card {
    grid-template-columns: 1fr;
  }

  .cart-drawer {
    width: 100vw;
  }
}
