/** Shopify CDN: Minification failed

Line 3633:0 Unexpected "}"

**/
/* ============================================
   copperMaison — Component Styles
   PREMIUM EDITION
   ============================================ */

/* --- Announcement Bar — Luxury gradient --- */
.announcement-bar {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-soft) 50%, var(--color-primary) 100%);
  color: var(--color-white);
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  position: relative;
  z-index: 100;
  transition: transform var(--transition-base);
  border-bottom: 1px solid rgba(191, 126, 94, 0.2);
  height: 36px;
  overflow: hidden;
}

.announcement-bar__slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.announcement-bar__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-2xl);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.announcement-bar__slide.is-active {
  opacity: 1;
  transform: translateY(0);
}

.announcement-bar.is-hidden {
  transform: translateY(-100%);
  position: absolute;
  width: 100%;
}

.announcement-bar__close {
  position: absolute;
  right: var(--space-xl);
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-white);
  opacity: 0.5;
  transition: all var(--transition-fast);
  padding: 4px;
  z-index: 2;
}

.announcement-bar__close:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.announcement-bar span {
  color: var(--color-copper-light);
  font-weight: 700;
}

/* --- Header — 3-Tier Centered Layout (marocMaroc style) --- */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header.is-scrolled {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
  border-bottom-color: transparent;
}

/* Tier 1 — Utility Bar */
.header__utility {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px var(--space-xl);
  max-width: var(--container-wide);
  margin: 0 auto;
  border-bottom: 1px solid var(--color-border-light);
  height: 32px;
}

.header__utility-left,
.header__utility-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__utility-link {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
  transition: color var(--transition-fast);
  padding: 0;
  white-space: nowrap;
}

.header__utility-link:hover {
  color: var(--color-copper);
}

.header__utility-sep {
  width: 6px;
  height: 6px;
  position: relative;
  margin: 0 6px;
  flex-shrink: 0;
}

.header__utility-sep::before,
.header__utility-sep::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--color-copper-light);
}

.header__utility-sep::before {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.header__utility-sep::after {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: rotate(45deg);
}

/* Tier 2 — Centered Logo */
.header__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px var(--space-xl);
  max-width: var(--container-wide);
  margin: 0 auto;
  position: relative;
  height: 48px;
}

/* Moroccan ornamental line below brand */
.header__brand::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(300px, 50%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-copper-light) 30%, var(--color-copper) 50%, var(--color-copper-light) 70%, transparent);
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-copper);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 400;
}

.header__logo-text em {
  font-style: normal;
  color: var(--color-copper);
}

/* Icons flanking the logo (mobile/right side) */
.header__brand-icons {
  position: absolute;
  right: var(--space-xl);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Tier 3 — Centered Nav */
.header__nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-xl);
  max-width: var(--container-wide);
  margin: 0 auto;
  height: 36px;
  border-top: 1px solid var(--color-border-light);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.header__nav-link {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text);
  position: relative;
  padding: 8px 0;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-copper);
  transition: width var(--transition-base);
}

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

.header__nav-link:hover {
  color: var(--color-copper);
}

/* Nav separator — Moroccan star */
.header__nav-sep {
  width: 8px;
  height: 8px;
  position: relative;
  flex-shrink: 0;
}

.header__nav-sep::before,
.header__nav-sep::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--color-copper);
}

.header__nav-sep::before {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.header__nav-sep::after {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: rotate(45deg);
}

/* --- Mega Menu Dropdown --- */
.header__nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  padding: 24px;
  display: flex;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 100;
  min-width: 520px;
  pointer-events: none;
}

.header__nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.mega-menu__products {
  display: flex;
  gap: 20px;
}

.mega-menu__product {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 130px;
  text-decoration: none;
  color: var(--color-text);
  position: relative;
}

.mega-menu__product:hover .mega-menu__img {
  transform: scale(1.05);
}

.mega-menu__badge {
  position: absolute;
  top: 4px;
  left: 4px;
  background: var(--color-copper);
  color: white;
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  z-index: 2;
}

.mega-menu__img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin-bottom: 8px;
  transition: transform var(--transition-fast);
  background: #fafafa;
  border-radius: 0;
}

.mega-menu__stars {
  font-size: 0.6rem;
  color: var(--color-copper);
  margin-bottom: 4px;
}

.mega-menu__stars span {
  color: var(--color-text-muted);
  font-size: 0.55rem;
}

.mega-menu__name {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
  line-height: 1.3;
}

.mega-menu__sub {
  font-size: 0.6rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.mega-menu__bottom {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.mega-menu__cart {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--color-copper);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.mega-menu__cart svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.mega-menu__cart:hover {
  background: var(--color-copper-dark);
}

.mega-menu__price {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text);
}

.mega-menu__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 16px;
  border-left: 1px solid var(--color-border-light);
}

.mega-menu__cta-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mega-menu__cta-btn {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid var(--color-text);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text);
  text-decoration: none;
  border-radius: 50px;
  transition: all var(--transition-fast);
}

.mega-menu__cta-btn:hover {
  background: var(--color-text);
  color: var(--color-white);
}

.header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--color-text);
  transition: color var(--transition-fast);
  position: relative;
}

.header__icon:hover {
  color: var(--color-copper);
}

.header__icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.header__cart-count {
  position: absolute;
  top: -2px;
  right: -4px;
  min-width: 14px;
  height: 14px;
  background-color: var(--color-copper);
  color: var(--color-white);
  font-size: 0.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.header__menu-toggle {
  display: none;
  color: var(--color-text);
}

.header__menu-toggle svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.header__icon--mobile {
  display: none;
}

/* --- Legacy header__inner (keep for compatibility, hidden on desktop) --- */
.header__inner {
  display: none;
}

.header__left {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  flex: 1;
}

.header__right {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-menu.is-open {
  pointer-events: all;
  opacity: 1;
}

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--color-overlay);
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 400px;
  height: 100%;
  background-color: var(--color-bg);
  padding: var(--space-2xl);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  color: var(--color-text);
}

.mobile-menu__close svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.mobile-menu__nav {
  margin-top: var(--space-3xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.mobile-menu__link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text);
  transition: color var(--transition-fast);
}

.mobile-menu__link:hover {
  color: var(--color-copper);
}

/* --- Hero Section — Premium with Ken Burns & vignette --- */
.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: kenBurns 25s ease-in-out infinite alternate;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(10, 10, 10, 0.2) 40%,
    rgba(10, 10, 10, 0.6) 100%
  );
}

/* Vignette + zellige pattern overlay */
.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.3);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23C79A51'%3E%3Cpath d='M30 0L60 30L30 60L0 30z M30 8L8 30l22 22 22-22z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 50px 50px;
  opacity: 0.06;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 0 var(--space-xl);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--color-copper-light);
  margin-bottom: var(--space-xl);
  animation: fadeInUp 1s var(--ease-luxury) forwards;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 1s var(--ease-luxury) 0.2s forwards;
  opacity: 0;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero__description {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 1s var(--ease-luxury) 0.4s forwards;
  opacity: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta {
  animation: fadeInUp 1s var(--ease-luxury) 0.6s forwards;
  opacity: 0;
}

/* --- Collection Cards — Premium with copper border glow --- */
.collection-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  border: 1px solid transparent;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  border-radius: 16px;
  background-color: #f5f0ec;
}

.collection-card:hover {
  border-color: rgba(191, 126, 94, 0.3);
  box-shadow: 0 8px 40px rgba(191, 126, 94, 0.12);
}

.collection-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.collection-card:hover .collection-card__image {
  transform: scale(1.05);
}

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(10, 10, 10, 0.1) 60%,
    transparent 100%
  );
  transition: background var(--transition-base);
}

.collection-card:hover .collection-card__overlay {
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.8) 0%,
    rgba(10, 10, 10, 0.2) 60%,
    rgba(10, 10, 10, 0.05) 100%
  );
}

/* Moroccan arch inner frame on hover */
.collection-card::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid transparent;
  border-radius: 50% 50% 0 0 / 30% 30% 0 0;
  z-index: 3;
  transition: border-color var(--transition-base);
  pointer-events: none;
}

.collection-card:hover::after {
  border-color: rgba(191, 126, 94, 0.4);
}

.collection-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-2xl);
  z-index: 2;
}

.collection-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.collection-card__count {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-copper-light);
  font-weight: 700;
}

.collection-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--color-white);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-base);
}

.collection-card:hover .collection-card__arrow {
  opacity: 1;
  transform: translateY(0);
}

.collection-card__arrow svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition-fast);
}

.collection-card:hover .collection-card__arrow svg {
  transform: translateX(4px);
}

/* --- Product Card — Premium with lift effect --- */
.product-card {
  position: relative;
  cursor: pointer;
  transition: transform var(--transition-base);
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card__image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background-color: #f5f0ec;
  border-radius: 16px;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.4s ease, transform var(--transition-slow);
}

.product-card__image--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
}

.product-card:hover .product-card__image:not(.product-card__image--hover) {
  opacity: 0;
}

.product-card:hover .product-card__image--hover {
  opacity: 1;
}

.product-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background-color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition-fast);
  z-index: 3;
  box-shadow: var(--shadow-sm);
}

.product-card:hover .product-card__wishlist {
  opacity: 1;
  transform: scale(1);
}

.product-card__wishlist:hover {
  background-color: var(--color-copper);
}

.product-card__wishlist:hover svg {
  stroke: var(--color-white);
}

.product-card__wishlist svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-text);
  fill: none;
  stroke-width: 1.5;
  transition: all var(--transition-fast);
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background-color: var(--color-copper);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 3;
}

.product-card__quick-add {
  display: none;
}

/* Circular Cart Button (marocMaroc style) */
.product-card__cart-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.product-card__cart-btn:hover {
  background-color: var(--color-copper);
  border-color: var(--color-copper);
}

.product-card__cart-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-text);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--transition-fast);
}

.product-card__cart-btn:hover svg {
  stroke: var(--color-white);
}

.product-card__info {
  padding: var(--space-md) 0 var(--space-xs);
  text-align: center;
}

.product-card__info-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
}

.product-card__info-text {
  flex: 1;
  min-width: 0;
}

.product-card__name {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--color-text);
  margin-bottom: 4px;
  transition: color var(--transition-fast);
  line-height: 1.4;
}

.product-card:hover .product-card__name {
  color: var(--color-copper);
}

.product-card__subtitle {
  display: none;
}

.product-card__price {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 400;
  margin-bottom: 0;
}

.product-card__price--sale {
  color: var(--color-copper);
}

.product-card__price--original {
  text-decoration: line-through;
  color: var(--color-text-light);
  margin-left: var(--space-sm);
  font-size: 0.8rem;
}

.product-card__stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 4px;
}

.product-card__stars svg {
  width: 13px;
  height: 13px;
  fill: var(--color-copper);
}

.product-card__stars svg.empty {
  fill: var(--color-border);
}

.product-card__review-count {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-left: 4px;
}

/* --- Section Headers — Premium with luxury divider --- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* --- Welcome Popup (Offre de Bienvenue) --- */
.welcome-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 320px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-xl);
  z-index: 500;
  transform: translateY(120%);
  transition: transform 0.6s var(--ease-luxury);
  overflow: hidden;
}

.welcome-popup.is-visible {
  transform: translateY(0);
}

.welcome-popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  z-index: 2;
}

.welcome-popup__close:hover {
  color: var(--color-text);
}

.welcome-popup__close svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.welcome-popup__header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-soft) 100%);
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
  text-align: center;
}

.welcome-popup__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.welcome-popup__discount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-copper-light);
  font-family: var(--font-heading);
}

.welcome-popup__body {
  padding: var(--space-lg) var(--space-xl) var(--space-xl);
  text-align: center;
}

.welcome-popup__text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.welcome-popup__code {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--color-bg-alt);
  border: 1px dashed var(--color-copper);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-copper);
  margin-bottom: var(--space-lg);
}

.welcome-popup__cta {
  width: 100%;
}

@media (max-width: 480px) {
  .welcome-popup {
    bottom: 12px;
    right: 12px;
    left: 12px;
    width: auto;
  }
}

.section-header__subtitle {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--color-copper);
  margin-bottom: var(--space-md);
}

.section-header__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.section-header__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: var(--space-md) auto;
}

.section-header__divider::before,
.section-header__divider::after {
  content: '';
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-copper));
}

.section-header__divider::after {
  background: linear-gradient(90deg, var(--color-copper), transparent);
}

.section-header__divider::before {
  background: linear-gradient(90deg, transparent, var(--color-copper));
}

/* Moroccan star center accent in divider */
.section-header__divider .moroccan-star,
.section-header__divider span {
  display: inline-block;
  width: 10px;
  height: 10px;
  position: relative;
  flex-shrink: 0;
}

.section-header__divider span::before,
.section-header__divider span::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--color-copper);
}

.section-header__divider span::before {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.section-header__divider span::after {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: rotate(45deg);
}

.section-header__description {
  max-width: 580px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Inline section header — title left, link right */
.section-header--inline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  text-align: left;
}

.section-header--inline .section-header__title {
  margin-bottom: 0;
}

.section-header__link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-copper);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
}

.section-header__link:hover {
  color: var(--color-copper-dark);
}

/* Products Grid — 4 columns */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  .section-header--inline {
    flex-wrap: wrap;
    gap: var(--space-sm);
  }
}

/* --- Carousel --- */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  gap: var(--space-xl);
  transition: transform 0.5s var(--ease-out);
  cursor: grab;
}

.carousel__track:active {
  cursor: grabbing;
}

.carousel__slide {
  flex: 0 0 calc(25% - var(--space-xl) * 3/4);
  min-width: 260px;
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.carousel__btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.carousel__btn:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.carousel__btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* --- Brand Story Split --- */
.brand-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.brand-split__image {
  overflow: hidden;
}

.brand-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-4xl);
  background-color: var(--color-bg-alt);
}

.brand-split__subtitle {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-copper);
  margin-bottom: var(--space-lg);
}

.brand-split__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  line-height: 1.3;
}

.brand-split__text {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

/* --- Newsletter — Premium dark section with copper accents --- */
.newsletter {
  background: linear-gradient(135deg, #0A0A0A 0%, #141210 50%, #0A0A0A 100%);
  padding: var(--space-5xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative copper lines */
.newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-copper), transparent);
}

.newsletter__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.newsletter__text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: var(--space-2xl);
  letter-spacing: 0.02em;
}

.newsletter__form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: border-color var(--transition-base);
}

.newsletter__form:focus-within {
  border-color: var(--color-copper);
  box-shadow: 0 0 0 3px rgba(191, 126, 94, 0.1);
}

.newsletter__input {
  flex: 1;
  padding: 17px 22px;
  background: transparent;
  color: var(--color-white);
  font-size: 0.9rem;
  border: none;
  letter-spacing: 0.02em;
}

.newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.03em;
}

.newsletter__submit {
  padding: 17px 32px;
  background: linear-gradient(135deg, var(--color-copper), var(--color-copper-dark));
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
}

.newsletter__submit:hover {
  background: linear-gradient(135deg, var(--color-copper-light), var(--color-copper));
  box-shadow: 0 4px 20px rgba(191, 126, 94, 0.3);
}

/* --- Footer --- */
.footer {
  background-color: var(--color-bg-alt);
  border-top: 1px solid var(--color-border-light);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  padding: var(--space-4xl) 0;
}

.footer__brand-text {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: var(--space-lg);
  max-width: 300px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  padding: 2px 0;
}

.footer__link:hover {
  color: var(--color-copper);
}

.footer__social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer__social-link:hover {
  background-color: var(--color-copper);
  border-color: var(--color-copper);
  color: var(--color-white);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer__bottom {
  border-top: 1px solid var(--color-border-light);
  padding: var(--space-xl) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.footer__payments {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.footer__payment-icon {
  height: 24px;
  opacity: 0.5;
  transition: opacity var(--transition-fast);
}

.footer__payment-icon:hover {
  opacity: 1;
}

/* --- Cart Drawer --- */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background-color: var(--color-bg);
  z-index: 300;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

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

.cart-drawer__overlay {
  position: fixed;
  inset: 0;
  background-color: var(--color-overlay);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.cart-drawer__overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl) var(--space-2xl);
  border-bottom: 1px solid var(--color-border-light);
}

.cart-drawer__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
}

.cart-drawer__close {
  color: var(--color-text);
}

.cart-drawer__close svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-xl) var(--space-2xl);
}

.cart-drawer__empty {
  text-align: center;
  padding: var(--space-4xl) 0;
}

.cart-drawer__empty-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--color-border);
  fill: none;
  stroke-width: 1;
  margin-bottom: var(--space-lg);
}

.cart-drawer__empty-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.cart-item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.cart-item__image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  background-color: var(--color-bg-alt);
}

.cart-item__details {
  flex: 1;
}

.cart-item__name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  margin-bottom: var(--space-xs);
}

.cart-item__price {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.cart-item__quantity {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  width: fit-content;
}

.cart-item__qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-text);
  transition: background-color var(--transition-fast);
}

.cart-item__qty-btn:hover {
  background-color: var(--color-bg-alt);
}

.cart-item__qty-value {
  width: 36px;
  text-align: center;
  font-size: 0.85rem;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  line-height: 32px;
}

.cart-item__remove {
  margin-left: auto;
  align-self: flex-start;
  color: var(--color-text-light);
  transition: color var(--transition-fast);
}

.cart-item__remove:hover {
  color: var(--color-text);
}

.cart-item__remove svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.cart-drawer__footer {
  padding: var(--space-xl) var(--space-2xl);
  border-top: 1px solid var(--color-border-light);
}

.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

.cart-drawer__subtotal-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 700;
}

.cart-drawer__subtotal-value {
  font-weight: 700;
}

.cart-drawer__shipping {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.cart-drawer__checkout {
  width: 100%;
}

/* --- Breadcrumb --- */
.breadcrumb {
  padding: var(--space-lg) 0;
  font-size: 0.8rem;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.breadcrumb__item {
  color: var(--color-text-light);
}

.breadcrumb__item a:hover {
  color: var(--color-copper);
}

.breadcrumb__separator {
  color: var(--color-border);
  margin: 0 var(--space-xs);
}

.breadcrumb__item.is-active {
  color: var(--color-text);
}

/* --- Collection Hero --- */
.collection-hero {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.collection-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
}

.collection-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.collection-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.collection-hero__description {
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* --- Filter Bar --- */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: var(--space-2xl);
}

.filter-bar__count {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.filter-bar__sort {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.filter-bar__sort-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--color-text-muted);
}

.filter-bar__sort-select {
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  font-size: 0.85rem;
  color: var(--color-text);
  background-color: var(--color-white);
  cursor: pointer;
}

/* --- Product Page --- */
.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  padding: var(--space-md) 0 var(--space-2xl);
}

/* Gallery: main top, thumbs below — Manta style */
.product-gallery {
  position: sticky;
  top: calc(var(--header-height) + var(--space-md));
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.product-gallery__thumbs--horizontal {
  display: flex;
  flex-direction: row;
  gap: var(--space-sm);
  overflow-x: auto;
  order: 1;
}

.product-gallery__thumb {
  width: 72px;
  height: 72px;
  min-width: 72px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition-fast);
  background-color: #f5f0ec;
  border-radius: 0;
}

.product-gallery__thumb.is-active,
.product-gallery__thumb:hover {
  border-color: var(--color-copper);
}

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

.product-gallery__main {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: #f5f0ec;
  cursor: zoom-in;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

.product-gallery__main:hover img {
  transform: scale(1.05);
}

/* Product Info — marocMaroc style */
.product-info__subtitle {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-copper);
  margin-bottom: var(--space-sm);
}

.product-info__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.product-info__rating {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: var(--space-xs);
}

.product-info__rating svg {
  width: 14px;
  height: 14px;
  fill: var(--color-copper);
}

.product-info__rating svg.empty {
  fill: var(--color-border);
}

.product-info__rating-count {
  font-size: 0.8rem;
  color: var(--color-copper);
  margin-left: 6px;
  text-decoration: underline;
}

.product-info__divider {
  width: 100%;
  height: 1px;
  background-color: var(--color-border-light);
  margin: var(--space-lg) 0;
}

/* 2x2 Feature Highlights — Manta style */
.product-info__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: var(--space-lg) 0;
  padding: var(--space-md) 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.product-info__highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--color-text);
}

.product-info__highlight svg {
  flex-shrink: 0;
  color: var(--color-copper);
}

/* Quantity Row */
.product-info__qty-row {
  margin-bottom: var(--space-md);
}

.product-info__qty-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

/* Full Width ATC — jghay style */
.product-info__add-to-cart--full {
  width: 100%;
  padding: 16px 32px;
  font-size: 0.85rem;
  border-radius: 0;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: none;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  transition: all var(--transition-base);
}

.product-info__add-to-cart--full:hover {
  background-color: var(--color-copper-dark);
  border-color: var(--color-copper-dark);
}

/* Stock indicator — jghay style */
.product-info__stock {
  font-size: 0.85rem;
  color: #5a9e5a;
  margin-bottom: var(--space-lg);
  font-weight: 500;
}

/* Gallery search icon — jghay style */
.product-gallery__search {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  border: 1px solid var(--color-border-light);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-gallery__search:hover {
  background: var(--color-white);
  color: var(--color-copper);
  transform: scale(1.05);
}

/* jghay-style quantity selector — bordered box */
.quantity-selector--jghay {
  border-radius: 0;
  border: 1px solid var(--color-border);
  display: inline-flex;
  align-items: center;
}

.quantity-selector--jghay .quantity-selector__btn {
  width: 44px;
  height: 46px;
  font-size: 1.1rem;
  color: var(--color-text);
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.quantity-selector--jghay .quantity-selector__btn:hover {
  background-color: var(--color-bg-alt);
}

.quantity-selector--jghay .quantity-selector__value {
  width: 44px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 46px;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}

/* Wishlist button — jghay style standalone square */
.product-info__wishlist-btn-jghay {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-border);
  background: transparent;
  cursor: pointer;
  color: var(--color-text-muted);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-lg);
  transition: all var(--transition-fast);
}

.product-info__wishlist-btn-jghay:hover {
  border-color: var(--color-copper);
  color: var(--color-copper);
}

.product-info__wishlist-btn-jghay:hover svg {
  fill: rgba(191, 126, 94, 0.15);
}

/* Categories — jghay style */
.product-info__meta {
  margin-bottom: var(--space-md);
}

.product-info__categories {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.product-info__categories a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.product-info__categories a:hover {
  color: var(--color-copper);
}

/* Share — jghay style */
.product-info__share {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.product-info__share-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}

.product-info__share-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-info__share-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.product-info__share-icons a:hover {
  color: var(--color-copper);
}

/* Description Tab — jghay style */
.product-info__tabs {
  margin-top: var(--space-md);
}

.product-info__tab-nav {
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: var(--space-xl);
}

.product-info__tab-btn {
  padding: var(--space-md) 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-bottom: -1px;
}

.product-info__tab-btn.is-active,
.product-info__tab-btn:hover {
  color: var(--color-text);
  border-bottom-color: var(--color-primary);
}

.product-info__tab-content {
  display: none;
}

.product-info__tab-content.is-active {
  display: block;
}

.product-info__tab-content p {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.product-info__tab-content p:last-child {
  margin-bottom: 0;
}


/* Variant Selector (Size Pills) */
.product-info__variants {
  margin-bottom: var(--space-lg);
}

.product-info__variant-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.product-info__variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.product-info__variant-pill {
  padding: 10px 20px;
  border: 1px solid var(--color-border);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--transition-fast);
  background: transparent;
}

.product-info__variant-pill:hover {
  border-color: var(--color-copper);
  color: var(--color-copper);
}

.product-info__variant-pill.is-active {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.product-info__price {
  font-size: 1.4rem;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.product-info__description {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  font-size: 0.9rem;
}

/* Quantity + Add to Cart Row */
.product-info__actions {
  display: flex;
  gap: var(--space-md);
  align-items: stretch;
  margin-bottom: var(--space-md);
}

.quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 50px;
  flex-shrink: 0;
}

.quantity-selector__label {
  display: none;
}

.quantity-selector__controls {
  display: flex;
  align-items: center;
}

.quantity-selector__btn {
  width: 40px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-text);
  transition: background-color var(--transition-fast);
  border: none;
  background: transparent;
  cursor: pointer;
}

.quantity-selector__btn:hover {
  background-color: var(--color-bg-alt);
}

.quantity-selector__value {
  width: 36px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 44px;
}

.product-info__add-to-cart {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  height: 50px;
}

.product-info__wishlist-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.product-info__wishlist-btn {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  transition: color var(--transition-fast);
}

.product-info__wishlist-btn:hover {
  color: var(--color-copper);
}

.product-info__wishlist-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* Guarantee Badges (marocMaroc style) */
.product-info__guarantees {
  display: flex;
  gap: var(--space-xl);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: var(--space-xl);
}

.product-info__guarantee {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  font-weight: 400;
}

.product-info__guarantee svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-copper);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* Accordion */
.accordion {
  border-top: 1px solid var(--color-border-light);
}

.accordion__item {
  border-bottom: 1px solid var(--color-border-light);
}

.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.accordion__title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.accordion__icon {
  width: 20px;
  height: 20px;
  position: relative;
}

.accordion__icon::before,
.accordion__icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-text);
  transition: transform var(--transition-fast);
}

.accordion__icon::before {
  width: 12px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion__icon::after {
  width: 1px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion__item.is-open .accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.accordion__item.is-open .accordion__content {
  max-height: 500px;
}

.accordion__body {
  padding-bottom: var(--space-xl);
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* --- Instagram Section --- */
.instagram-section {
  padding: var(--space-4xl) 0;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.instagram-grid__item {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

.instagram-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.instagram-grid__item:hover img {
  transform: scale(1.08);
}

.instagram-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  opacity: 0;
  transition: opacity var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-grid__item:hover::after {
  opacity: 1;
}

/* --- Marquee Ticker --- */
.marquee {
  background-color: var(--color-bg-alt);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee__item {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

/* --- Guarantee Bar --- */
.guarantee {
  background-color: var(--color-white);
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.guarantee__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
}

.guarantee__item {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex: 1;
  justify-content: center;
}

.guarantee__icon {
  flex-shrink: 0;
  color: var(--color-copper);
}

.guarantee__text {
  display: flex;
  flex-direction: column;
}

.guarantee__title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text);
  margin-bottom: 2px;
}

.guarantee__desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.guarantee__divider {
  width: 1px;
  height: 40px;
  background-color: var(--color-border);
  flex-shrink: 0;
}

/* --- Parallax Quote --- */
.parallax-quote {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-quote__bg {
  position: absolute;
  inset: -40px 0;
  width: 100%;
  height: calc(100% + 80px);
  object-fit: cover;
}

.parallax-quote__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.45);
}

.parallax-quote__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: var(--space-2xl) var(--space-xl);
  background: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.parallax-quote__diamond {
  width: 10px;
  height: 10px;
  background-color: var(--color-copper);
  transform: rotate(45deg);
  margin: 0 auto var(--space-2xl);
}

.parallax-quote .moroccan-star::before,
.parallax-quote .moroccan-star::after {
  background-color: var(--color-copper);
}

.parallax-quote__text {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: #fff;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-xl);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.parallax-quote__cite {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-copper-light);
}

/* --- Testimonials --- */
.testimonials-grid {
  gap: var(--space-2xl);
}

.testimonial {
  background-color: var(--color-white);
  padding: var(--space-2xl);
  border: 1px solid var(--color-border-light);
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.testimonial:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(191, 126, 94, 0.2);
}

.testimonial__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-lg);
}

.testimonial__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--color-copper);
}

.testimonial__text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-copper), var(--color-copper-dark));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial__name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-text);
  margin-bottom: 0;
}

.testimonial__location {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* --- Product Badge --- */
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-copper);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  z-index: 5;
}

/* --- Product Info Extras --- */
.product-info__installment {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: -8px;
  margin-bottom: 4px;
}

.product-info__installment strong {
  color: var(--color-text);
}

.product-info__urgency {
  font-size: 0.75rem;
  color: var(--color-copper);
  font-weight: 600;
  margin-bottom: 12px;
}

.product-info__buy-now {
  width: 100%;
  margin-top: 8px;
  border: 1.5px solid var(--color-text);
  border-radius: 50px;
  background: transparent;
  color: var(--color-text);
  font-size: 0.75rem;
  padding: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.product-info__buy-now:hover {
  background: var(--color-text);
  color: var(--color-white);
}

/* --- Image Zoom --- */
.product-gallery__zoom {
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery__zoom img {
  transition: transform 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-gallery__zoom:hover img {
  transform: scale(1.8);
  cursor: zoom-in;
}

/* --- Product Story (Full Width) --- */
.product-story {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  min-height: 420px;
  overflow: hidden;
  background-color: #f5f0ec;
}

.product-story__image {
  position: relative;
  overflow: hidden;
}

.product-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-story__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 56px;
  background: var(--color-bg);
}

.product-story__eyebrow {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-copper);
  font-weight: 700;
  margin-bottom: 12px;
}

.product-story__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: 16px;
}

.product-story__text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .product-story {
    grid-template-columns: 1fr;
  }
  .product-story__image {
    height: 300px;
  }
  .product-story__content {
    padding: 32px 24px;
    order: -1;
  }
}

/* --- Feature Highlights (3 Columns) --- */
.product-features {
  padding: 48px 0;
  background: var(--color-bg-alt);
}

.product-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.product-features__icon {
  margin-bottom: 20px;
  color: var(--color-copper);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(191, 126, 94, 0.08);
  border: 1px solid rgba(191, 126, 94, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease;
}

.product-features__icon:hover {
  background: rgba(191, 126, 94, 0.15);
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(191, 126, 94, 0.12);
}

.product-features__icon svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.2;
}

.product-features__heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--color-text);
}

.product-features__text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 280px;
  margin: 0 auto;
}

/* --- Craftsmanship Gallery (2 Columns) --- */
.product-craft {
  padding: 48px 0;
}

.product-craft__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 48px;
}

.product-craft__row:last-child {
  margin-bottom: 0;
}

.product-craft__row--reverse {
  direction: rtl;
}

.product-craft__row--reverse > * {
  direction: ltr;
}

.product-craft__image img {
  width: 100%;
  border-radius: 16px;
}

.product-craft__eyebrow {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-copper);
  font-weight: 700;
  margin-bottom: 12px;
}

.product-craft__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--color-text);
}

.product-craft__text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

/* --- Customer Reviews --- */
.product-reviews {
  padding: 48px 0;
  background: var(--color-bg-alt);
}

.reviews-summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--color-border-light);
  margin-bottom: 28px;
  background: var(--color-white);
}

.reviews-summary__score {
  text-align: center;
  padding-right: 20px;
}

.reviews-summary__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  color: var(--color-text);
}

.reviews-summary__stars {
  color: var(--color-copper);
  font-size: 1.1rem;
  margin: 8px 0;
}

.reviews-summary__count {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.reviews-summary__bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reviews-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-bar__label {
  font-size: 0.75rem;
  font-weight: 700;
  width: 30px;
  color: var(--color-text);
}

.reviews-bar__track {
  flex: 1;
  height: 8px;
  background: var(--color-border-light);
  border-radius: 0;
  overflow: hidden;
}

.reviews-bar__fill {
  height: 100%;
  background: var(--color-copper);
  border-radius: 0;
  transition: width 0.6s ease;
}

.reviews-bar__count {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  width: 20px;
  text-align: right;
}

.reviews-summary__action {
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  border: 1px solid var(--color-border-light);
  padding: 24px;
  background: var(--color-white);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-copper);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.review-card__name {
  font-weight: 700;
  font-size: 0.85rem;
}

.review-card__date {
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

.review-card__badge {
  margin-left: auto;
  font-size: 0.6rem;
  font-weight: 700;
  color: #2e7d32;
  background: #e8f5e9;
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
}

.review-card__stars {
  color: var(--color-copper);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.review-card__title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.review-card__text {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* --- Sticky ATC Bar --- */
.sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--color-white);
  border-top: 1px solid var(--color-border-light);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-atc.is-visible {
  transform: translateY(0);
}

.sticky-atc__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

.sticky-atc__name {
  font-weight: 700;
  font-size: 0.85rem;
}

.sticky-atc__price {
  font-size: 0.8rem;
  color: var(--color-copper);
  font-weight: 700;
}

.sticky-atc__btn {
  padding: 12px 32px;
  font-size: 0.7rem;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .header__utility {
    display: none;
  }

  .header__nav-bar {
    display: none;
  }

  .header__menu-toggle {
    display: flex;
  }

  .header__brand-icons {
    display: flex;
    gap: var(--space-sm);
  }

  /* Show cart & wishlist icons on mobile in brand bar */
  .header__brand {
    padding: var(--space-md) var(--space-xl);
  }

  .header__brand .header__logo-text {
    font-size: 1.8rem;
  }

  .header__icon--mobile {
    display: flex;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .brand-split {
    grid-template-columns: 1fr;
  }

  .brand-split__content {
    padding: var(--space-2xl);
  }

  .product-page {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: static;
    grid-template-columns: 1fr;
  }

  .product-gallery__thumbs {
    flex-direction: row;
    order: 1;
  }

  .product-gallery__main {
    aspect-ratio: 1/1;
  }

  .product-info__guarantees {
    flex-direction: column;
    gap: var(--space-md);
  }

  .carousel__slide {
    flex: 0 0 calc(33.33% - var(--space-xl) * 2/3);
  }

  .guarantee__grid {
    flex-wrap: wrap;
  }

  .guarantee__divider:nth-child(4),
  .guarantee__divider:nth-child(6) {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  .hero {
    height: 70vh;
    min-height: 400px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .newsletter__form {
    flex-direction: column;
  }

  .collection-hero {
    height: 250px;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .carousel__slide {
    flex: 0 0 calc(50% - var(--space-xl) / 2);
  }

  .filter-bar {
    flex-direction: column;
    gap: var(--space-md);
    align-items: flex-start;
  }

  .guarantee__grid {
    flex-direction: column;
    gap: var(--space-xl);
  }

  .guarantee__divider {
    width: 60px;
    height: 1px;
  }

  .parallax-quote {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero {
    height: 60vh;
  }

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

/* ============================================
   Cart Drawer
   ============================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 90vw;
  height: 100vh;
  background: var(--color-bg);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
}

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

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border-light);
}

.cart-drawer__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-text);
}

.cart-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--color-text);
  transition: color var(--transition-fast);
}

.cart-drawer__close:hover {
  color: var(--color-copper);
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  color: var(--color-text-muted);
  text-align: center;
}

.cart-drawer__empty svg {
  color: var(--color-border);
}

.cart-drawer__empty p {
  font-size: 0.95rem;
}

.cart-drawer__empty .btn {
  margin-top: 8px;
  font-size: 0.75rem;
  padding: 10px 24px;
}

/* Cart Item */
.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
}

.cart-item__image {
  width: 80px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f0ec;
  flex-shrink: 0;
}

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

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

.cart-item__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
  line-height: 1.3;
}

.cart-item__size {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.cart-item__price {
  font-size: 0.85rem;
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: 8px;
}

.cart-item__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 50px;
}

.cart-item__qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--color-text);
  transition: background var(--transition-fast);
}

.cart-item__qty-btn:hover {
  background: var(--color-bg-alt);
}

.cart-item__qty span {
  width: 24px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
}

.cart-item__remove {
  position: absolute;
  top: 16px;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  padding: 4px;
  transition: color var(--transition-fast);
}

.cart-item__remove:hover {
  color: var(--color-copper-dark);
}

/* Cart Footer */
.cart-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--color-border-light);
}

.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.cart-drawer__shipping {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.cart-drawer__checkout {
  width: 100%;
  padding: 14px 32px;
  font-size: 0.8rem;
  border-radius: 50px;
}

/* Cart Badge */
.header__cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  width: 18px;
  height: 18px;
  background: var(--color-copper);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}

  .carousel__slide {
    flex: 0 0 calc(100% - var(--space-md));
    min-width: 240px;
  }
}

/* --- Floating Cart Button — jghay style --- */
.floating-cart {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.floating-cart:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
  border-color: var(--color-copper);
  color: var(--color-copper);
}

.floating-cart__count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background-color: var(--color-copper);
  color: var(--color-white);
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
