@charset "UTF-8";

/* ==========================================
   LACHRISS — Premium Hair E-Commerce
   Design System & Base Styles
   ========================================== */

:root {
  --luxury-pink: #FF69B4; /* Deep Pink */
  --luxury-pink-hover: #FF1493;
  --luxury-pink-light: rgba(255, 105, 180, 0.1);
  --luxury-teal: #008080; /* High Contrast Black */
  --luxury-teal-hover: #006666;
  --luxury-teal-light: rgba(0, 128, 128, 0.1);
  --white: #FFFFFF;
  --soft-bg: #FFF0F5; /* Lavender Blush - slight pink tint */
  --dark-text: #000000;
  --gray-text: #555555;
  --light-gray: #999999;
  --border: #F8D7E3; /* Pinkish border */
  --sale-red: #E60000;
  --success: #00B34A;
  --star-gold: #FFC107;
  --overlay: rgba(0, 0, 0, 0.6);
  --glass: rgba(255, 255, 255, 0.9);
  --shadow-sm: 0 4px 15px rgba(255, 20, 147, 0.1);
  --shadow-md: 0 10px 30px rgba(255, 20, 147, 0.15);
  --shadow-lg: 0 20px 50px rgba(255, 20, 147, 0.2);
  --shadow-pink: 0 8px 30px rgba(255, 20, 147, 0.5);
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6); }
}

@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(-1%, -1%); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ==========================================
   BASE / RESET
   ========================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  color: var(--dark-text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin-top: 0;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: inherit;
  padding: 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn--primary {
  background-color: var(--luxury-pink);
  color: white;
  padding: 16px 36px;
}
.btn--primary:hover {
  background-color: var(--luxury-pink-hover);
  transform: scale(1.02);
  box-shadow: var(--shadow-pink);
}

.btn--secondary {
  background-color: transparent;
  border: 1px solid var(--luxury-teal);
  color: var(--luxury-teal);
  padding: 14px 34px;
}
.btn--secondary:hover {
  background-color: var(--luxury-teal);
  color: white;
}

.btn--ghost {
  background-color: transparent;
  color: var(--dark-text);
  padding: 12px 24px;
  text-transform: none;
  letter-spacing: 0;
}
.btn--ghost:hover {
  text-decoration: underline;
}

.btn--white {
  background-color: white;
  color: var(--dark-text);
  padding: 16px 36px;
}
.btn--white:hover {
  background-color: var(--soft-bg);
  transform: scale(1.02);
}

/* ==========================================
   SECTION HEADERS & LAYOUT
   ========================================== */

.section {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .section {
    padding: 80px 0;
  }
}
.section--alt {
  background-color: var(--soft-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-family: 'Satoshi', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 12px;
}
@media (min-width: 1024px) {
  .section-title {
    font-size: 40px;
  }
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--gray-text);
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================
   PROMO BAR
   ========================================== */

.header-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.promo-bar {
  background-color: var(--luxury-pink);
  color: white;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}
.promo-bar--hidden {
  display: none;
}
.promo-bar__track {
  display: flex;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.promo-bar__text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  padding: 0 40px;
  flex-shrink: 0;
}
.promo-bar__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  width: 24px;
  height: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================
   NAVBAR
   ========================================== */

.navbar {
  width: 100%;
  padding: 16px 0;
  transition: all 0.3s;
  background-color: transparent;
}
.navbar--scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1024px) {
  .navbar__inner {
    padding: 0 40px;
  }
}

.navbar__logo {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s;
}
.navbar--scrolled .navbar__logo {
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar__links {
  display: none;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .navbar__links {
    display: flex;
  }
}

.navbar__link {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: white;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 8px 0;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--luxury-teal);
  transition: width 0.3s ease;
}
.navbar__link:hover::after,
.navbar__link--active::after {
  width: 100%;
}
.navbar__link--active {
  color: var(--luxury-teal);
}
.navbar--scrolled .navbar__link {
  color: var(--dark-text);
  text-shadow: none;
}
.navbar--scrolled .navbar__link--active {
  color: var(--luxury-teal);
}

.navbar__icons {
  display: flex;
  gap: 8px;
  align-items: center;
}
@media (min-width: 768px) {
  .navbar__icons {
    gap: 16px;
  }
}

.navbar__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  position: relative;
  color: white;
}
.navbar__icon:hover {
  background-color: rgba(255,255,255,0.1);
}
.navbar--scrolled .navbar__icon {
  color: var(--dark-text);
}
.navbar--scrolled .navbar__icon:hover {
  background-color: var(--soft-bg);
}
.navbar__icon svg {
  width: 20px;
  height: 20px;
}

.navbar__badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--luxury-pink);
  color: white;
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.navbar__mobile-btn {
  display: flex;
}
@media (min-width: 1024px) {
  .navbar__mobile-btn {
    display: none;
  }
}

/* ==========================================
   MOBILE MENU
   ========================================== */

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: white;
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.mobile-menu--active {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu__links {
  list-style: none;
  padding: 20px;
  margin: 0;
}
.mobile-menu__link {
  display: block;
  padding: 16px 0;
  font-family: 'Satoshi', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--dark-text);
  border-bottom: 1px solid var(--border);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero {
    min-height: 100vh;
  }
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 20s ease infinite alternate;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 0 20px;
  color: white;
  margin-top: 60px; /* Account for navbar */
}
@media (min-width: 1024px) {
  .hero__content {
    padding: 0 40px;
    margin-left: 5%;
  }
}

.hero__title {
  font-family: 'Satoshi', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 56px;
  }
}

.hero__subtitle {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.9;
}
@media (min-width: 1024px) {
  .hero__subtitle {
    font-size: 18px;
  }
}

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

.hero__badge {
  position: absolute;
  top: auto;
  bottom: 40px;
  right: 20px;
  background-color: var(--luxury-pink);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  font-weight: 600;
  animation: float 3s ease-in-out infinite;
  z-index: 2;
}
@media (min-width: 1024px) {
  .hero__badge {
    bottom: 40px;
    top: auto;
    right: 40px;
    font-size: 14px;
    padding: 12px 24px;
  }
}

/* ==========================================
   CATEGORY CARDS
   ========================================== */

.categories__grid {
  display: grid;
  gap: 16px;
  grid-auto-flow: column;
  grid-auto-columns: 70vw;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  /* Hide scrollbar */
  scrollbar-width: none; 
}
.categories__grid::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .categories__grid {
    grid-template-columns: repeat(5, 1fr);
    grid-auto-flow: row;
    overflow-x: visible;
  }
}
@media (min-width: 1024px) {
  .categories__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.category-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  scroll-snap-align: start;
}
.category-card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.category-card:hover .category-card__image {
  transform: scale(1.1);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
}

.category-card__title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-family: 'Satoshi', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  right: 20px;
}

/* ==========================================
   PRODUCT CARDS
   ========================================== */

/* ---- FILTERS ---- */
.product-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-btn {
  background: white;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 20px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--gray-text);
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--luxury-pink);
  color: white;
  border-color: var(--luxury-pink);
}

.product-card.hidden {
  display: none !important;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .products__grid {
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .products__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.product-card__image-wrapper {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background-color: var(--soft-bg);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
}
.product-card__image-secondary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card__image {
  opacity: 0;
}
.product-card:hover .product-card__image-secondary {
  opacity: 1;
  transform: scale(1.08);
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (min-width: 768px) {
  .product-card__badge {
    font-size: 11px;
  }
}
.product-card__badge--sale {
  background-color: var(--sale-red);
  color: white;
}
.product-card__badge--bestseller {
  background-color: var(--luxury-teal);
  color: white;
}
.product-card__badge--new {
  background-color: var(--dark-text);
  color: white;
}

.product-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
  cursor: pointer;
  color: var(--light-gray);
}
@media (min-width: 768px) {
  .product-card__wishlist {
    width: 36px;
    height: 36px;
  }
}
.product-card__wishlist--active {
  background-color: var(--luxury-pink);
  color: white;
}
.product-card__wishlist--active svg {
  fill: white !important;
  stroke: white !important;
}
.product-card__wishlist svg {
  width: 16px;
  height: 16px;
  fill: transparent;
}
@media (min-width: 768px) {
  .product-card__wishlist svg {
    width: 18px;
    height: 18px;
  }
}

.product-card__info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media (min-width: 768px) {
  .product-card__info {
    padding: 16px;
  }
}

.product-card__type {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--luxury-teal);
  margin-bottom: 4px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .product-card__type {
    font-size: 11px;
  }
}

.product-card__name {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-text);
  line-height: 1.3;
}
@media (min-width: 768px) {
  .product-card__name {
    font-size: 16px;
  }
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--gray-text);
}
@media (min-width: 768px) {
  .product-card__rating {
    font-size: 13px;
  }
}
.product-card__stars {
  color: var(--star-gold);
  letter-spacing: -2px;
}

.product-card__price-wrap {
  margin-top: auto;
  margin-bottom: 12px;
}

.product-card__price {
  font-family: 'Satoshi', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-text);
}
@media (min-width: 768px) {
  .product-card__price {
    font-size: 20px;
  }
}

.product-card__original-price {
  font-size: 13px;
  color: var(--light-gray);
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .product-card__original-price {
    font-size: 14px;
  }
}

.product-card__btn {
  width: 100%;
  padding: 10px;
  background-color: var(--luxury-pink);
  color: white;
  border-radius: 50px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .product-card__btn {
    padding: 12px;
    font-size: 13px;
  }
}
.product-card__btn:hover {
  background-color: var(--luxury-pink-hover);
  box-shadow: var(--shadow-pink);
}

/* ==========================================
   TRUST SECTION
   ========================================== */

.trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .trust__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-card {
  background-color: white;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid var(--border);
}
@media (min-width: 768px) {
  .trust-card {
    padding: 32px;
  }
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--luxury-pink);
}

.trust-card__icon {
  width: 48px;
  height: 48px;
  background-color: var(--luxury-pink-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
@media (min-width: 768px) {
  .trust-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }
}
.trust-card__icon svg {
  width: 20px;
  height: 20px;
  color: var(--luxury-pink);
  stroke: var(--luxury-pink);
}
@media (min-width: 768px) {
  .trust-card__icon svg {
    width: 24px;
    height: 24px;
  }
}

.trust-card__title {
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .trust-card__title {
    font-size: 18px;
  }
}

.trust-card__desc {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0;
}
@media (min-width: 768px) {
  .trust-card__desc {
    font-size: 14px;
  }
}

/* ==========================================
   CUSTOMIZATION STEPS
   ========================================== */

.steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  max-width: 1000px;
  margin: 0 auto 40px;
}
@media (min-width: 1024px) {
  .steps {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }
}

.steps__line {
  display: none;
}
@media (min-width: 1024px) {
  .steps__line {
    display: block;
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background-color: var(--border);
    z-index: 0;
  }
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .step {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    gap: 0;
  }
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--luxury-pink);
  color: white;
  font-family: 'Satoshi', sans-serif;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .step__number {
    width: 80px;
    height: 80px;
    font-size: 24px;
    margin: 0 auto 16px;
  }
}

.step__content {
  flex: 1;
}

.step__title {
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  margin-top: 4px;
}
@media (min-width: 1024px) {
  .step__title {
    font-size: 18px;
    margin-bottom: 8px;
    margin-top: 0;
  }
}

.step__desc {
  font-size: 13px;
  color: var(--gray-text);
  margin: 0;
}
@media (min-width: 1024px) {
  .step__desc {
    font-size: 14px;
    max-width: 200px;
    margin: 0 auto;
  }
}

.customization-cta {
  text-align: center;
}

/* ==========================================
   REVAMP SECTION
   ========================================== */

.revamp__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) {
  .revamp__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.revamp__image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}

.revamp__slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.revamp__slide.active {
  opacity: 1;
}

.revamp__content {
  padding: 0;
}
@media (min-width: 1024px) {
  .revamp__content {
    padding: 20px 0;
  }
}

.revamp__title {
  font-family: 'Satoshi', sans-serif;
  font-size: 28px;
  margin-bottom: 12px;
}
@media (min-width: 1024px) {
  .revamp__title {
    font-size: 36px;
  }
}

.revamp__subtitle {
  font-size: 16px;
  color: var(--gray-text);
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .revamp__subtitle {
    font-size: 18px;
    margin-bottom: 24px;
  }
}

.revamp__desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .revamp__desc {
    font-size: 15px;
    margin-bottom: 24px;
  }
}

.revamp__list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.revamp__list li {
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
@media (min-width: 1024px) {
  .revamp__list li {
    padding: 8px 0;
    font-size: 15px;
  }
}
.revamp__list li svg {
  color: var(--luxury-teal);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.revamp__price {
  font-family: 'Satoshi', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--luxury-pink);
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .revamp__price {
    font-size: 24px;
  }
}

/* ==========================================
   TESTIMONIALS
   ========================================== */

.testimonials__carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 20px 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testimonials__carousel::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .testimonials__carousel {
    gap: 24px;
  }
}

.testimonial-card {
  flex: 0 0 280px;
  background-color: white;
  border-radius: 16px;
  padding: 24px;
  scroll-snap-align: start;
  border: 1px solid var(--border);
  transition: 0.3s;
}
@media (min-width: 1024px) {
  .testimonial-card {
    flex: 0 0 350px;
    padding: 28px;
  }
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
  color: var(--star-gold);
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: -2px;
}
@media (min-width: 1024px) {
  .testimonial-card__stars {
    font-size: 16px;
    margin-bottom: 16px;
  }
}

.testimonial-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-text);
  margin-bottom: 20px;
  font-style: italic;
}
@media (min-width: 1024px) {
  .testimonial-card__text {
    font-size: 15px;
  }
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--luxury-pink);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 14px;
}
@media (min-width: 1024px) {
  .testimonial-card__avatar {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
}

.testimonial-card__name {
  font-family: 'Satoshi', sans-serif;
  font-weight: 600;
  font-size: 13px;
  margin: 0 0 2px 0;
}
@media (min-width: 1024px) {
  .testimonial-card__name {
    font-size: 14px;
  }
}

.testimonial-card__location {
  font-size: 11px;
  color: var(--light-gray);
  margin: 0;
}
@media (min-width: 1024px) {
  .testimonial-card__location {
    font-size: 12px;
  }
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
@media (min-width: 1024px) {
  .testimonials__dots {
    margin-top: 24px;
  }
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border);
  cursor: pointer;
  transition: 0.3s;
}
@media (min-width: 1024px) {
  .testimonials__dot {
    width: 10px;
    height: 10px;
  }
}
.testimonials__dot--active {
  background-color: var(--luxury-pink);
  width: 20px;
  border-radius: 5px;
}
@media (min-width: 1024px) {
  .testimonials__dot--active {
    width: 24px;
  }
}

/* ==========================================
   TEXTURE CARDS
   ========================================== */

.textures__scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  scrollbar-width: none;
}
.textures__scroll::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .textures__scroll {
    gap: 16px;
  }
}

.texture-card {
  flex: 0 0 140px;
  aspect-ratio: 2/3;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .texture-card {
    flex: 0 0 160px;
    border-radius: 16px;
  }
}
@media (min-width: 1024px) {
  .texture-card {
    flex: 0 0 200px;
  }
}

.texture-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.texture-card:hover .texture-card__image {
  transform: scale(1.1);
}

.texture-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}

.texture-card__name {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: white;
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  margin: 0;
}
@media (min-width: 768px) {
  .texture-card__name {
    bottom: 16px;
    left: 16px;
    font-size: 16px;
  }
}

.texture-card__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  color: var(--dark-text);
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 600;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none; /* Click falls through to the card */
  box-shadow: var(--shadow-sm);
}

.texture-card:hover .texture-card__btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

/* ==========================================
   MOTION GRID
   ========================================== */

.motion__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .motion__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.motion-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: var(--soft-bg);
}

.motion-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.motion-card:hover .motion-card__video {
  transform: scale(1.05);
}

/* ==========================================
   INSTAGRAM GRID
   ========================================== */

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
@media (min-width: 768px) {
  .instagram__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }
}
@media (min-width: 1024px) {
  .instagram__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.instagram-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.instagram-item:hover .instagram-item__image {
  transform: scale(1.1);
}

.instagram-item__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255,105,180,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.instagram-item:hover .instagram-item__overlay {
  opacity: 1;
}

.instagram-item__overlay svg {
  color: white;
  width: 24px;
  height: 24px;
}
@media (min-width: 768px) {
  .instagram-item__overlay svg {
    width: 32px;
    height: 32px;
  }
}

.instagram-cta {
  text-align: center;
  margin-top: 32px;
}

/* ==========================================
   FAQ
   ========================================== */

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  font-weight: 600;
  width: 100%;
  text-align: left;
  transition: color 0.3s;
  color: var(--dark-text);
}
@media (min-width: 768px) {
  .faq-question {
    padding: 20px 0;
    font-size: 17px;
  }
}
.faq-question:hover {
  color: var(--luxury-pink);
}
.faq-item--active .faq-question {
  color: var(--luxury-pink);
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: currentColor;
}
@media (min-width: 768px) {
  .faq-icon {
    width: 24px;
    height: 24px;
  }
}
.faq-item--active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}
.faq-item--active .faq-answer {
  max-height: 500px; /* arbitrary large value */
  padding-bottom: 16px;
}
@media (min-width: 768px) {
  .faq-item--active .faq-answer {
    padding-bottom: 20px;
  }
}

.faq-answer p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-text);
  margin: 0;
}
@media (min-width: 768px) {
  .faq-answer p {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* ==========================================
   CTA BANNER
   ========================================== */

.cta-banner {
  background: linear-gradient(135deg, var(--luxury-pink) 0%, var(--luxury-teal) 100%);
  padding: 60px 20px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cta-banner {
    padding: 80px 20px;
  }
}

.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}
.cta-banner::before {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -50px;
}
.cta-banner::after {
  width: 400px;
  height: 400px;
  bottom: -200px;
  right: -100px;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  font-family: 'Satoshi', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .cta-banner__title {
    font-size: 44px;
    margin-bottom: 16px;
  }
}

.cta-banner__subtitle {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .cta-banner__subtitle {
    font-size: 18px;
    margin-bottom: 32px;
  }
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background-color: #1A1A1A;
  color: rgba(255,255,255,0.8);
  padding: 48px 0 0;
}
@media (min-width: 768px) {
  .footer {
    padding: 64px 0 0;
  }
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer__logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 16px;
}

.footer__brand-name {
  font-family: 'Satoshi', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin: 0 0 8px;
}
@media (min-width: 768px) {
  .footer__brand-name {
    font-size: 28px;
    margin: 0 0 12px;
  }
}

.footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .footer__tagline {
    font-size: 14px;
  }
}

.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .footer__social a {
    width: 40px;
    height: 40px;
  }
}
.footer__social a:hover {
  background-color: var(--luxury-pink);
  border-color: var(--luxury-pink);
}
.footer__social svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.footer__heading {
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  .footer__heading {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__links li {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .footer__links li {
    margin-bottom: 12px;
  }
}
.footer__links a {
  font-size: 13px;
  transition: color 0.3s;
}
@media (min-width: 768px) {
  .footer__links a {
    font-size: 14px;
  }
}
.footer__links a:hover {
  color: var(--luxury-pink);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 32px;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__bottom {
    margin-top: 48px;
    padding: 24px 0;
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
@media (min-width: 768px) {
  .footer__copyright {
    font-size: 13px;
  }
}

.footer__payments {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__payment-icon {
  background-color: rgba(255,255,255,0.1);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer__credit {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
@media (min-width: 768px) {
  .footer__credit {
    font-size: 12px;
  }
}

/* ==========================================
   CART DRAWER
   ========================================== */

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 3000;
  pointer-events: none;
  visibility: hidden;
}
.cart-drawer--active {
  pointer-events: all;
  visibility: visible;
}

.cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s;
}
.cart-drawer--active .cart-drawer__overlay {
  opacity: 1;
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
@media (min-width: 480px) {
  .cart-drawer__panel {
    width: 420px;
  }
}
.cart-drawer--active .cart-drawer__panel {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
  .cart-drawer__header {
    padding: 20px 24px;
  }
}

.cart-drawer__title {
  font-family: 'Satoshi', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}
@media (min-width: 768px) {
  .cart-drawer__title {
    font-size: 20px;
  }
}

.cart-drawer__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  color: var(--dark-text);
}
@media (min-width: 768px) {
  .cart-drawer__close {
    width: 36px;
    height: 36px;
  }
}
.cart-drawer__close:hover {
  background-color: var(--soft-bg);
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}
@media (min-width: 768px) {
  .cart-drawer__items {
    padding: 20px 24px;
  }
}

.cart-drawer__empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--gray-text);
}
@media (min-width: 768px) {
  .cart-drawer__empty {
    padding: 60px 20px;
  }
}

.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
  .cart-item {
    gap: 16px;
    padding: 16px 0;
  }
}

.cart-item__image {
  width: 70px;
  height: 90px;
  border-radius: 8px;
  object-fit: cover;
  background-color: var(--soft-bg);
}
@media (min-width: 768px) {
  .cart-item__image {
    width: 80px;
    height: 100px;
  }
}

.cart-item__info {
  flex: 1;
}

.cart-item__name {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--dark-text);
}
@media (min-width: 768px) {
  .cart-item__name {
    font-size: 14px;
    margin-bottom: 4px;
  }
}

.cart-item__options {
  font-size: 11px;
  color: var(--gray-text);
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .cart-item__options {
    font-size: 12px;
    margin-bottom: 8px;
  }
}

.cart-item__price {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--luxury-pink);
}
@media (min-width: 768px) {
  .cart-item__price {
    font-size: 15px;
  }
}

.cart-item__qty {
  display: flex;
  align-items: center;
  margin-top: 6px;
}
@media (min-width: 768px) {
  .cart-item__qty {
    margin-top: 8px;
  }
}

.cart-item__qty-btn {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background-color: white;
  color: var(--dark-text);
}
@media (min-width: 768px) {
  .cart-item__qty-btn {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
}
.cart-item__qty-btn:first-child {
  border-radius: 4px 0 0 4px;
}
.cart-item__qty-btn:last-child {
  border-radius: 0 4px 4px 0;
}

.cart-item__qty-value {
  width: 32px;
  height: 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .cart-item__qty-value {
    width: 36px;
    height: 28px;
    font-size: 13px;
  }
}

.cart-item__remove {
  font-size: 11px;
  color: var(--light-gray);
  cursor: pointer;
  margin-top: 4px;
  display: block;
}
@media (min-width: 768px) {
  .cart-item__remove {
    font-size: 12px;
  }
}
.cart-item__remove:hover {
  text-decoration: underline;
}

.cart-drawer__footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background-color: white;
}
@media (min-width: 768px) {
  .cart-drawer__footer {
    padding: 20px 24px;
  }
}

.cart-drawer__upsell {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border);
}

.cart-drawer__upsell-title {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cart-drawer__upsell-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--soft-bg);
  padding: 8px;
  border-radius: 8px;
}

.cart-drawer__upsell-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
}

.cart-drawer__upsell-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.cart-drawer__upsell-name {
  font-size: 13px;
  font-weight: 500;
}

.cart-drawer__upsell-price {
  font-size: 12px;
  color: var(--luxury-pink);
}

.cart-drawer__upsell-btn {
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 12px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.cart-drawer__upsell-btn:hover {
  background: var(--dark-text);
  color: white;
}

.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .cart-drawer__subtotal {
    margin-bottom: 8px;
    font-size: 15px;
  }
}

.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .cart-drawer__total {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.cart-drawer__checkout-btn {
  width: 100%;
  padding: 14px;
  background-color: var(--luxury-pink);
  color: white;
  border-radius: 50px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .cart-drawer__checkout-btn {
    padding: 16px;
    font-size: 15px;
  }
}
.cart-drawer__checkout-btn:hover {
  background-color: var(--luxury-pink-hover);
  box-shadow: var(--shadow-pink);
}

.cart-drawer__continue {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: var(--gray-text);
  text-decoration: underline;
}
@media (min-width: 768px) {
  .cart-drawer__continue {
    font-size: 13px;
  }
}

/* ==========================================
   PRODUCT MODAL
   ========================================== */

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  padding: 16px;
}
.product-modal--active {
  opacity: 1;
  visibility: visible;
}

.product-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.5);
}

.product-modal__content {
  position: relative;
  background-color: white;
  border-radius: 16px;
  max-width: 900px;
  width: 100%;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr;
  animation: scaleIn 0.3s ease;
}
@media (min-width: 768px) {
  .product-modal__content {
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    max-height: 90vh;
  }
}

.product-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 32px;
  height: 32px;
  background-color: white;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-text);
}
@media (min-width: 768px) {
  .product-modal__close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
}

.product-modal__image-wrapper {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
@media (min-width: 768px) {
  .product-modal__image-wrapper {
    aspect-ratio: 3/4;
    border-radius: 20px 0 0 20px;
  }
}

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

.product-modal__info {
  padding: 20px;
}
@media (min-width: 768px) {
  .product-modal__info {
    padding: 32px;
  }
}

.product-modal__type {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--luxury-teal);
  margin-bottom: 4px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .product-modal__type {
    font-size: 12px;
  }
}

.product-modal__name {
  font-family: 'Satoshi', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  margin-top: 0;
}
@media (min-width: 768px) {
  .product-modal__name {
    font-size: 24px;
    margin-bottom: 8px;
  }
}

.product-modal__price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .product-modal__price-wrapper {
    margin-bottom: 24px;
  }
}

.product-modal__price {
  font-family: 'Satoshi', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--luxury-pink);
}
@media (min-width: 768px) {
  .product-modal__price {
    font-size: 28px;
  }
}

.product-modal__original-price {
  font-size: 14px;
  color: var(--light-gray);
  text-decoration: line-through;
}
@media (min-width: 768px) {
  .product-modal__original-price {
    font-size: 16px;
  }
}

.product-modal__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .product-modal__options {
    gap: 16px;
    margin-bottom: 24px;
  }
}

.product-modal__option {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 768px) {
  .product-modal__option {
    gap: 6px;
  }
}

.product-modal__label {
  font-family: 'Satoshi', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (min-width: 768px) {
  .product-modal__label {
    font-size: 13px;
  }
}

.product-modal__select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  appearance: none;
  background: white url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23222222" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>') no-repeat right 12px center;
  cursor: pointer;
  color: var(--dark-text);
}
@media (min-width: 768px) {
  .product-modal__select {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.product-modal__select:focus {
  border-color: var(--luxury-pink);
  outline: none;
  box-shadow: 0 0 0 3px var(--luxury-pink-light);
}

.product-modal__qty {
  display: flex;
  align-items: center;
}

.product-modal__qty-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: var(--dark-text);
}
@media (min-width: 768px) {
  .product-modal__qty-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
.product-modal__qty-btn:first-child {
  border-radius: 4px 0 0 4px;
}
.product-modal__qty-btn:last-child {
  border-radius: 0 4px 4px 0;
}
.product-modal__qty-btn:hover {
  background-color: var(--soft-bg);
}

.product-modal__qty-value {
  width: 48px;
  height: 36px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}
@media (min-width: 768px) {
  .product-modal__qty-value {
    width: 56px;
    height: 40px;
  }
}

.product-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .product-modal__actions {
    gap: 12px;
  }
}

.product-modal__add-btn,
.product-modal__wishlist-btn {
  width: 100%;
}

/* ==========================================
   SEARCH OVERLAY
   ========================================== */

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background-color: white;
  transform: translateY(-100%);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
}
.search-overlay--active {
  transform: translateY(0);
}

.search-overlay__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 20px;
}
@media (min-width: 768px) {
  .search-overlay__inner {
    padding: 32px 20px;
  }
}

.search-overlay__input-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--dark-text);
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .search-overlay__input-wrapper {
    gap: 12px;
  }
}

.search-overlay__input-wrapper > svg {
  color: var(--dark-text);
}

.search-overlay__input {
  flex: 1;
  border: none;
  font-size: 18px;
  font-family: 'Satoshi', sans-serif;
  outline: none;
  color: var(--dark-text);
  background: transparent;
}
@media (min-width: 768px) {
  .search-overlay__input {
    font-size: 24px;
  }
}
.search-overlay__input::placeholder {
  color: var(--light-gray);
}

.search-overlay__close {
  width: 32px;
  height: 32px;
  color: var(--dark-text);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .search-overlay__close {
    width: 40px;
    height: 40px;
  }
}

.search-overlay__popular {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .search-overlay__popular {
    margin-top: 24px;
  }
}

.search-overlay__popular-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-text);
  margin: 0 0 12px;
}
@media (min-width: 768px) {
  .search-overlay__popular-title {
    font-size: 12px;
  }
}

.search-overlay__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-overlay__tag {
  padding: 6px 12px;
  background-color: var(--soft-bg);
  border-radius: 50px;
  font-size: 12px;
  cursor: pointer;
  transition: 0.3s;
  color: var(--dark-text);
}
@media (min-width: 768px) {
  .search-overlay__tag {
    padding: 8px 16px;
    font-size: 13px;
  }
}
.search-overlay__tag:hover {
  background-color: var(--luxury-pink-light);
  color: var(--luxury-pink);
}

/* ==========================================
   WHATSAPP FLOAT
   ========================================== */

.whatsapp-float {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: pulse 2s ease-in-out infinite;
  cursor: pointer;
  transition: transform 0.3s;
}
@media (min-width: 768px) {
  .whatsapp-float {
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
  }
}
.whatsapp-float:hover {
  transform: scale(1.1);
  animation: none;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: white;
}
@media (min-width: 768px) {
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--dark-text);
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
}
@media (min-width: 768px) {
  .whatsapp-float__tooltip {
    right: 70px;
    padding: 8px 16px;
    font-size: 13px;
  }
}
.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
}

/* ==========================================
   UTILITY & ANIMATION CLASSES
   ========================================== */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-image {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}
.animate-on-scroll--visible.reveal-image,
.animate-on-scroll--visible .reveal-image {
  clip-path: inset(0 0 0 0);
}

.animate-on-scroll--delay-1 { transition-delay: 0.1s; }
.animate-on-scroll--delay-2 { transition-delay: 0.2s; }
.animate-on-scroll--delay-3 { transition-delay: 0.3s; }
.animate-on-scroll--delay-4 { transition-delay: 0.4s; }

/* ==========================================
   UTILITIES
   ========================================== */

.text-pink { color: var(--luxury-pink); }
.text-teal { color: var(--luxury-teal); }
.bg-alt { background-color: var(--soft-bg); }


/* Accessibility & Focus Indicators */
*:focus-visible {
  outline: 2px solid var(--luxury-pink);
  outline-offset: 4px;
  border-radius: 2px;
}
.btn:focus-visible, a:focus-visible, button:focus-visible, select:focus-visible, input:focus-visible {
  outline: 3px solid var(--luxury-pink);
  outline-offset: 2px;
}


/* ==========================================
   PARALLAX & ADVANCED HOVER ANIMATIONS
   ========================================== */

/* Hero Parallax */
.hero__parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/Hero Section with models.png');
  background-attachment: scroll; /* Disabled fixed parallax to prevent extreme cropping */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
  will-change: transform;
}

/* Fallback for iOS Safari which doesn't support background-attachment: fixed well */
@supports (-webkit-touch-callout: none) {
  .hero__parallax-bg {
    background-attachment: scroll;
  }
}

/* Product Card Hover Enhancements */
.product-card {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card__image-wrapper {
  overflow: hidden;
}
.product-card__image {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.product-card:hover .product-card__image {
  transform: scale(1.08);
}

/* Category Card Hover Enhancements */
.category-card {
  overflow: hidden;
}
.category-card__image {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.category-card:hover .category-card__image {
  transform: scale(1.12);
}
.category-card:hover .category-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
}

/* Instagram Hover Enhancements */
.instagram-item {
  overflow: hidden;
}
.instagram-item__image {
  transition: transform 0.5s ease;
  will-change: transform;
}
.instagram-item:hover .instagram-item__image {
  transform: scale(1.1);
}

/* Texture Card Hover Enhancements */
.texture-card {
  overflow: hidden;
}
.texture-card__image {
  transition: transform 0.5s ease;
}
.texture-card:hover .texture-card__image {
  transform: scale(1.1);
}


/* ==========================================
   MOBILE UI IMPROVEMENTS (App-like Feel)
   ========================================== */
@media (max-width: 767px) {
  /* Fix Filter Bar stacking */
  .filters-bar {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }
  .filters-group {
    flex-direction: column !important;
    width: 100%;
  }
  .filter-item, .filter-select {
    width: 100% !important;
  }
  .sort-group {
    width: 100%;
    justify-content: space-between;
  }
  
  /* Hero Text adjustments */
  .hero__title {
    font-size: 42px !important;
    line-height: 1.1 !important;
  }
  .hero__subtitle {
    font-size: 16px !important;
    margin-bottom: 32px !important;
  }
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Make scrolling grids snap perfectly like an app */
  html, body { 
    overflow-x: hidden !important; 
    width: 100%; 
    max-width: 100vw; 
  }

  .categories__grid, .products__grid, .textures__scroll, .instagram__grid, .motion__grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 16px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px; /* Space for scrollbar */
    scrollbar-width: none;
  }
  
  .categories__grid::-webkit-scrollbar, .products__grid::-webkit-scrollbar, .textures__scroll::-webkit-scrollbar, .instagram__grid::-webkit-scrollbar, .motion__grid::-webkit-scrollbar {
    display: none;
  }

  .category-card, .product-card, .texture-card, .instagram-item, .motion-card {
    scroll-snap-align: center;
    flex: 0 0 auto;
  }
  
  /* Product card layout adjustment for mobile */
  .product-card {
    width: 85vw; /* Make them slightly narrower so next card peeks in */
    max-width: 320px;
  }
  
  /* Drawers take full width on mobile */
  .cart-drawer__panel, .mobile-menu {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  /* Safe area insets for modern phones with home indicators */
  .cart-drawer__footer, .mobile-menu__footer, .cta-banner {
    padding-bottom: calc(20px + env(safe-area-inset-bottom)) !important;
  }
  
  /* Modal adjustments */
  .product-modal__content {
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    padding: 20px !important;
    padding-top: calc(40px + env(safe-area-inset-top)) !important;
    flex-direction: column !important;
    overflow-y: auto;
  }
  .product-modal__image-wrapper {
    height: 300px !important;
  }
  .product-modal__close {
    top: calc(16px + env(safe-area-inset-top)) !important;
    right: 16px !important;
    background: white !important;
    box-shadow: var(--shadow-md);
  }
}



/* ==========================================
   MOBILE EXCLUSIVE UX OVERRIDES
   ========================================== */

/* Navbar Layout */
@media (max-width: 1023px) {
  .navbar__inner {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center;
    padding: 0 16px !important;
  }
  .navbar__mobile-btn {
    justify-self: start;
    margin: 0;
  }
  .navbar__logo {
    justify-self: center;
    margin: 0 auto;
  }
  .navbar__icons {
    justify-self: end;
    gap: 12px;
  }
  .navbar {
    position: sticky !important;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
  }
  .navbar__icon {
    color: var(--dark-text) !important;
    width: 44px;
    height: 44px;
  }
}

/* Mobile Menu Full Screen Slide-in */
.mobile-menu {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
}
.mobile-menu__body {
  flex: 1;
  overflow-y: auto;
}
.mobile-menu__links {
  padding: 0 24px;
}
.mobile-menu__link {
  font-family: 'Satoshi', sans-serif !important;
  font-size: 22px !important;
  padding: 20px 0 !important;
  border-bottom: 1px solid var(--luxury-teal-light) !important;
  transition: padding-left 0.3s;
}
.mobile-menu__link:hover {
  padding-left: 10px !important;
  color: var(--luxury-pink) !important;
}
.mobile-menu__footer {
  display: flex;
  justify-content: space-around;
  padding: 24px !important;
  background-color: var(--soft-bg);
  border-top: 1px solid var(--luxury-pink-light);
}
.mobile-social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--luxury-teal);
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, color 0.3s;
}
.mobile-social-icon svg {
  width: 24px;
  height: 24px;
}
.mobile-social-icon:hover {
  transform: translateY(-4px) scale(1.05);
  color: var(--luxury-pink);
}

/* Touch Targets - 48x48px min */
button, .btn, .navbar__icon, .mobile-menu__close, .mobile-social-icon, .filter-btn, .product-card__btn {
  min-width: 48px;
  min-height: 48px;
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: var(--white);
  z-index: 2500;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
  visibility: hidden;
}
.search-overlay--active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.search-overlay__header {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--luxury-teal-light);
  gap: 16px;
  padding-top: calc(16px + env(safe-area-inset-top));
}
.search-overlay__form {
  flex: 1;
  display: flex;
  align-items: center;
  background: var(--soft-bg);
  border-radius: 50px;
  padding: 8px 16px;
}
.search-icon {
  width: 20px;
  height: 20px;
  color: var(--gray-text);
  margin-right: 12px;
}
.search-overlay__input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  outline: none;
  color: var(--dark-text);
  min-height: 32px;
}
.search-overlay__close {
  width: 48px;
  height: 48px;
  background: transparent;
  color: var(--dark-text);
}
.search-overlay__content {
  padding: 24px 20px;
  flex: 1;
  overflow-y: auto;
}
.search-section {
  margin-bottom: 32px;
}
.search-section__title {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-text);
  margin-bottom: 16px;
}
.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.search-tag {
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 14px;
  color: var(--dark-text);
  cursor: pointer;
}
.search-suggestions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.search-suggestion {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px;
  border-radius: 12px;
  transition: background 0.3s;
}
.search-suggestion:hover {
  background: var(--soft-bg);
}
.search-suggestion__img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}
.search-suggestion__info h4 {
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  margin-bottom: 4px;
}
.search-suggestion__info p {
  font-size: 14px;
  color: var(--luxury-pink);
  font-weight: 600;
  margin: 0;
}

/* ==========================================
   FLOATING ACTION BUTTONS
   ========================================== */
.fab {
  position: fixed;
  z-index: 2000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
  cursor: pointer;
  color: white;
}
.fab:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}
.fab svg {
  width: 28px;
  height: 28px;
}
.fab--whatsapp {
  bottom: 24px;
  right: 24px;
  background-color: #25D366; /* WhatsApp Green */
  animation: pulse 2s infinite;
}
.fab--totop {
  bottom: 24px;
  left: 24px;
  background-color: var(--luxury-teal);
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.fab--totop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Ensure mobile menu closes when clicking link */
.mobile-menu__link {
  display: block;
}

/* Product Card Actions */
.product-card__actions {
  border-top: 1px solid var(--border);
  background: var(--soft-bg);
}
.product-card__btn-quick {
  background: white;
  color: var(--dark-text);
  border-radius: 4px;
}
.product-card__btn-add {
  background: var(--luxury-pink);
  color: white;
  border: none;
  border-radius: 4px;
}
.product-card {
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

/* Hide Promo Bar if any */
.promo-bar { display: none; }

/* ==========================================
   MOBILE IMAGE OPTIMIZATIONS
   ========================================== */

/* Fix Hero Background Cropping on Mobile */
.hero__parallax-bg {
  background-position: center top !important; /* Keep faces/subjects in view */
}
@media (min-width: 768px) {
  .hero__parallax-bg {
    background-position: center center !important;
  }
}

/* Ensure all horizontal cards are responsive on mobile */
@media (max-width: 768px) {
  .category-card, .texture-card, .instagram-item, .motion-card {
    width: 80vw !important;
    max-width: 280px !important;
    flex: 0 0 auto !important;
  }
  
  /* Guarantee strict aspect ratios to prevent squishing */
  .category-card, .texture-card {
    aspect-ratio: 3/4 !important;
  }
  .instagram-item {
    aspect-ratio: 1/1 !important;
  }
  
  /* Ensure images perfectly fill their containers without distortion */
  .category-card__image, .texture-card__image, .instagram-item__image, .motion-card__image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  
  /* Fix New Arrivals specifically if it uses product-card */
  .product-card {
    width: 80vw !important;
    max-width: 280px !important;
  }
}

/* Fallback for any image tags that might be missing CSS */
img.category-card__image, img.product-card__image, img.texture-card__image, img.instagram-item__image {
  height: 100%;
}

/* ==========================================
   GLOBAL SPACING REFINEMENTS
   ========================================== */

@media (max-width: 767px) {
  /* Give sections breathing room but don't disconnect them */
  .section {
    padding: 64px 0 !important;
  }
  
  /* Improve readability for paragraphs */
  p {
    line-height: 1.7 !important;
    margin-bottom: 16px !important;
  }

  /* Loosen up section headers for a premium feel */
  .section-header {
    margin-bottom: 32px !important;
    padding: 0 16px;
  }
  .section-title {
    margin-bottom: 12px !important;
    letter-spacing: -0.5px !important;
  }

  /* Give grid items some breathing room */
  .categories__grid, .products__grid, .textures__scroll, .instagram__grid, .motion__grid {
    padding-left: 16px !important;
    padding-right: 16px !important;
    gap: 20px !important;
  }
  
  /* Add padding to container to prevent edge-hugging */
  .container {
    padding: 0 20px !important;
  }
  
  /* Soften button spacing */
  .btn {
    padding: 14px 28px !important;
    letter-spacing: 0.5px !important;
  }
}

/* ==========================================
   HERO SECTION UPGRADES
   ========================================== */
.hero__video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%) !important;
  z-index: 1 !important;
}

.hero__content {
  z-index: 2 !important;
}

.hero__title {
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero__subtitle {
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  font-weight: 300;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
  animation: bounce 2s infinite;
}

.hero__scroll-indicator svg {
  width: 20px;
  height: 20px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -10px); }
  60% { transform: translate(-50%, -5px); }
}

@media (max-width: 768px) {
  .hero__scroll-indicator {
    bottom: 24px;
  }
}

/* ==========================================
   USER REQUESTED SPACING & AESTHETICS
   ========================================== */
.section {
  padding: 64px 0 !important;
}

.promo-banner {
  padding: 64px 20px !important;
}

/* Ensure aesthetic upgrades are kept for the hero */
.hero__parallax-bg {
  /* Keep the background image */
  background-image: url('assets/Hero Section with models.png');
  background-position: center top !important; /* Keep faces visible on mobile */
}

@media (min-width: 768px) {
  .hero__parallax-bg {
    background-position: center center !important;
  }
}

/* ==========================================
   USER REVISIONS (LOGO, OVERLAY, SPACING)
   ========================================== */

/* 1. Fix the Header Logo blending */
/* Make the scrolled navbar dark so the black logo blends perfectly */
.navbar--scrolled {
  background-color: rgba(0, 0, 0, 0.95) !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}
/* Ensure icons and text are white when scrolled */
.navbar--scrolled .navbar__link,
.navbar--scrolled .navbar__icon {
  color: white !important;
}
/* Remove the awkward border around the logo */
.navbar__logo {
  border: none !important;
  border-radius: 0 !important; /* Let it be its natural shape if it looks better, or keep 50% without border */
  border-radius: 50% !important; /* Keeping the circle but no border blends better */
}
.navbar--scrolled .navbar__logo {
  border: none !important;
}

/* 2. Let the background picture show fully */
/* Make the top of the overlay completely transparent so faces are 100% visible */
.hero__overlay {
  background: linear-gradient(to bottom, transparent 0%, transparent 40%, rgba(0,0,0,0.6) 80%, rgba(0,0,0,0.8) 100%) !important;
}

/* 3. Space out the hero content and fix the scroll indicator */
.hero {
  min-height: 90vh !important; /* Give it more room */
  padding-bottom: 80px !important; /* Space for the scroll indicator */
  align-items: flex-end !important; /* Push content lower so faces are clear */
}
.hero__content {
  margin-bottom: 40px !important;
  width: 100%;
}
.hero__scroll-indicator {
  bottom: 20px !important; /* Tucked neatly at the bottom */
}

/* 4. Fix the Free Shipping badge overlapping */
/* Move it into normal document flow below the buttons */
.hero__badge {
  position: relative !important;
  bottom: auto !important;
  right: auto !important;
  top: auto !important;
  left: auto !important;
  display: inline-block;
  margin-top: 24px;
  background-color: rgba(255, 105, 180, 0.9) !important; /* Luxury Pink but slightly transparent */
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 30px !important;
  font-size: 14px !important;
  backdrop-filter: blur(4px);
  text-align: center;
  width: auto;
}

/* ==========================================
   FINAL UI ENGINEER FIXES
   ========================================== */

/* 1. Fix the Header to be seamlessly premium */
.navbar {
  background-color: rgba(0, 0, 0, 0.95) !important; /* Always black */
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}
.navbar__link, .navbar__icon {
  color: white !important; /* Always white text/icons */
}
.navbar__logo {
  border: none !important;
  background-color: transparent !important;
  border-radius: 50% !important; /* Blends nicely with black background */
}

/* 2. Fix Hero layout, spacing, and overlapping */
.hero {
  margin-top: 0 !important; /* Remove the white gap at the top! */
  padding-top: 100px !important; /* Push text below navbar */
  padding-bottom: 120px !important; /* Make room for WhatsApp button at bottom */
  min-height: 100vh !important; /* Full screen */
  display: flex !important;
  flex-direction: column !important; /* Prevent badge from sitting side-by-side */
  align-items: center !important;
  justify-content: flex-end !important; /* Push everything to bottom */
}

.hero__content {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  width: 100% !important;
  max-width: 600px !important;
  text-align: center !important; /* Center all text */
  padding: 0 20px !important;
}

.hero__actions {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  gap: 16px !important;
  align-items: center !important; /* Center the buttons */
  margin-top: 32px !important;
}

.hero__actions .btn {
  width: 100% !important;
  max-width: 300px !important; /* Prevent them from stretching too wide on tablet */
}

/* 3. Fix Scroll Indicator overlapping FAB */
.hero__scroll-indicator {
  bottom: 40px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

/* 4. Fix Badge Layout */
.hero__badge {
  position: static !important; /* Let it sit in normal flow */
  display: inline-block !important;
  width: auto !important;
  background-color: rgba(255, 105, 180, 0.9) !important;
  padding: 8px 24px !important;
}

/* Ensure background covers everything */
.hero__parallax-bg {
  top: 0 !important;
  height: 100% !important;
}

/* ==========================================
   DESKTOP HERO FIXES (REVERT MOBILE OVERRIDES)
   ========================================== */
@media (min-width: 769px) {
  .hero {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  
  .hero__content {
    text-align: left !important;
    margin-left: 5% !important;
    max-width: 650px !important;
  }
  
  .hero__actions {
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
  }
  
  .hero__actions .btn {
    width: auto !important;
    max-width: none !important;
  }
  
  .hero__badge {
    display: inline-block !important;
    margin-top: 0 !important;
    margin-left: 16px !important;
  }
}

/* ==========================================
   PREMIUM DESKTOP UI ENHANCEMENTS
   ========================================== */

/* The new top badge (pill shape above title) */
.hero__badge-top {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Enhancing the Desktop Overlay for better contrast on left-aligned text */
@media (min-width: 769px) {
  .hero__overlay {
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 40%, transparent 100%) !important;
  }
  
  /* Editorial Typography */
  .hero__title {
    font-size: 84px !important;
    line-height: 1.1 !important;
    letter-spacing: -2px !important;
    margin-bottom: 24px !important;
    text-shadow: none !important; /* The gradient handles contrast now */
  }
  
  .hero__subtitle {
    font-size: 20px !important;
    line-height: 1.6 !important;
    max-width: 500px !important;
    color: rgba(255,255,255,0.9) !important;
    margin-bottom: 48px !important;
  }
  
  /* Button Refinements */
  .hero__actions {
    gap: 20px !important;
  }
  
  .hero__actions .btn {
    padding: 16px 36px !important;
    font-size: 15px !important;
    letter-spacing: 1px !important;
    border-radius: 40px !important;
  }
  
  .hero__actions .btn--secondary {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: white !important;
  }
  .hero__actions .btn--secondary:hover {
    background: white !important;
    color: black !important;
  }
  
  /* Center the content vertically perfectly */
  .hero {
    align-items: center !important;
  }
  
  .hero__content {
    margin-left: 8% !important; /* Slightly more indent */
    margin-top: 0 !important;
  }
}

/* Mobile fallback for the new badge */
@media (max-width: 768px) {
  .hero__badge-top {
    font-size: 12px;
    padding: 6px 16px;
    margin-bottom: 16px;
    background: rgba(255, 105, 180, 0.9); /* Keep the pink for mobile pop */
    border: none;
  }
}

/* ==========================================
   SHOPPABLE REELS SECTION
   ========================================== */
.reels__scroll {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  gap: 16px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 24px;
  padding-left: 16px;
  padding-right: 16px;
}

.reels__scroll::-webkit-scrollbar {
  display: none;
}

.reel-card {
  position: relative;
  flex: 0 0 60vw;
  max-width: 250px;
  aspect-ratio: 9/16;
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  background: black;
  transition: transform 0.3s;
}

@media (min-width: 768px) {
  .reel-card {
    flex: 0 0 250px;
  }
}

.reel-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.reel-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-card__overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.reel-card:hover .reel-card__overlay {
  opacity: 1;
}

.reel-card__play {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

/* REEL MODAL */
.reel-modal {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.reel-modal--active {
  opacity: 1;
  visibility: visible;
}

.reel-modal__overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.reel-modal__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 450px; /* TikTok video width */
  height: 100dvh;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .reel-modal__content {
    height: 90vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  }
}

.reel-modal__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: black;
}

.reel-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(5px);
}

.reel-modal__shop-btn {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 300px;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  background-color: var(--luxury-pink) !important;
  color: white !important;
  border: none !important;
}


/* ==========================================
   LUXURY MICRO-INTERACTIONS & HOVER STATES
   ========================================== */
@media (prefers-reduced-motion: no-preference) {
  
  /* 1. Navigation Links: Smooth Underline Reveal */
  .navbar__menu-link {
    position: relative;
    text-decoration: none;
    transition: color 0.4s ease;
  }
  .navbar__menu-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--luxury-pink);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .navbar__menu-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }

  /* 2. Hero CTA Buttons */
  .hero__actions .btn {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
  }
  .hero__actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  }
  
  /* 3. Product Cards Elevation & Image Zoom */
  .product-card {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    will-change: transform;
  }
  .product-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 32px rgba(0,0,0,0.08) !important;
  }
  .product-card__image {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    will-change: transform;
  }
  .product-card:hover .product-card__image {
    transform: scale(1.04) !important; /* Gentle luxury zoom */
  }

  /* 4. Wishlist Icons */
  .product-card__wishlist {
    transition: transform 0.4s ease, background-color 0.4s ease;
  }
  .product-card__wishlist:hover {
    transform: scale(1.1);
  }
  .product-card__wishlist svg {
    transition: fill 0.4s ease, stroke 0.4s ease !important;
  }
  .product-card__wishlist:hover svg {
    fill: var(--luxury-pink) !important;
    stroke: var(--luxury-pink) !important;
  }

  /* 5. Add-to-Cart Buttons */
  .product-card__btn-add, .product-card__btn-quick {
    transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease !important;
    will-change: transform;
  }
  .product-card__btn-add:hover {
    background-color: #d1567d !important; /* Slightly darker pink */
    box-shadow: 0 4px 12px rgba(222, 107, 142, 0.3) !important;
    transform: translateY(-1px) !important;
  }
  .product-card__btn-quick:hover {
    background-color: #f8f8f8 !important;
    transform: translateY(-1px) !important;
  }

  /* 6. Category Cards */
  .category-card {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  }
  .category-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
  }
  .category-card__image {
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  }
  .category-card:hover .category-card__image {
    transform: scale(1.05) !important;
  }
  .category-card__title {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  }
  .category-card:hover .category-card__title {
    transform: translateY(-2px) !important;
  }

  /* 7. FAQ Accordion Background Shift */
  .faq-item {
    transition: background-color 0.4s ease, border-color 0.4s ease !important;
  }
  .faq-item:hover {
    background-color: #fafafa !important;
  }
  .faq-icon {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  }
  .faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg) !important;
  }

  /* 8. Testimonial Cards */
  .testimonial-card {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  }
  .testimonial-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 32px rgba(0,0,0,0.06) !important;
  }

  /* 9. Cart Drawer & Search Smooth Transitions */
  .cart-drawer, .search-overlay {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }
  .cart-overlay, .search-overlay {
    transition: opacity 0.6s ease, backdrop-filter 0.6s ease !important;
  }

}
