/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:wght@300;400;500;600;700&family=Cinzel+Decorative:wght@400&display=swap');

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Primary Colors */
  --color-deep-green: #193F3C;
  --color-green-dark: #0F2A28;
  --color-green-medium: #1E524E;
  --color-green-light: #2A6B66;

  /* Gold Accent */
  --color-gold: #C29341;
  --color-gold-light: #D4AE6A;
  --color-gold-dark: #A67C2E;
  --color-gold-shimmer: linear-gradient(135deg, #C29341, #E8C97A, #C29341);

  /* Neutrals */
  --color-cream: #FBF9F6;
  --color-warm-white: #F7F4EF;
  --color-off-white: #EDEDED;
  --color-text-dark: #1A1A1A;
  --color-text-body: #3D3D3D;
  --color-text-muted: #7A7A7A;
  --color-border: #E5E0D8;

  /* Typography */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1400px;
  --container-padding: 0 40px;

  /* Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Shadows */
  --shadow-soft: 0 4px 30px rgba(25, 63, 60, 0.08);
  --shadow-medium: 0 8px 40px rgba(25, 63, 60, 0.12);
  --shadow-hover: 0 12px 50px rgba(25, 63, 60, 0.18);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-body);
  background-color: var(--color-cream);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-family: var(--font-body);
}

input, textarea {
  font-family: var(--font-body);
  border: none;
  outline: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--color-deep-green);
  color: var(--color-cream);
  text-align: center;
  padding: 1rem 2rem;
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  z-index: 1001;
  overflow: hidden;
}

.announcement-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(194, 147, 65, 0.08) 25%,
    rgba(194, 147, 65, 0.18) 50%,
    rgba(194, 147, 65, 0.08) 75%,
    transparent 100%
  );
  animation: shimmer 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  will-change: transform;
}

.announcement-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.3;
}

.announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.announcement-bar span {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.announcement-bar .gold-dot {
  width: 4px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 50%;
  display: inline-block;
}

/* ===== HEADER / NAVBAR ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(25, 63, 60, 0.06);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(25, 63, 60, 0.1);
  border-bottom: 1px solid rgba(194, 147, 65, 0.15);
}

.header.scrolled::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194, 147, 65, 0.4), transparent);
  animation: pulse-glow 3s ease-in-out infinite;
}

.header__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 140px;
}

.header__left {
  flex: 1;
  display: flex;
  align-items: center;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.header__nav a {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-deep-green);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header__nav a:hover {
  color: var(--color-gold);
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--color-gold);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

.header__center {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

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

.header__logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.header__brand-name {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--color-deep-green);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 0.4rem;
}

.header__tagline {
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 400;
  margin-top: 0.3rem;
  padding-bottom: 0.4rem;
}

.header__right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.2rem;
}

.header__icon {
  position: relative;
  color: var(--color-deep-green);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.header__icon:hover {
  color: var(--color-gold);
  background: rgba(194, 147, 65, 0.08);
}

.header__icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}

.header__cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: var(--color-gold);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile menu toggle */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  cursor: pointer;
  z-index: 1002;
  position: relative;
  background: transparent;
  border: none;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.header__hamburger:hover, .header__hamburger:active {
  background: rgba(194, 147, 65, 0.12);
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-deep-green);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

/* Perfect 'X' Cross animation on Active state */
.header__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--color-gold-light) !important;
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--color-gold-light) !important;
}

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

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    radial-gradient(1.5px 1.5px at 10% 20%, rgba(194, 147, 65, 0.4) 50%, transparent 50%),
    radial-gradient(1px 1px at 80% 40%, rgba(255, 255, 255, 0.3) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 30% 70%, rgba(194, 147, 65, 0.3) 50%, transparent 50%),
    radial-gradient(1px 1px at 60% 15%, rgba(255, 255, 255, 0.25) 50%, transparent 50%),
    radial-gradient(1px 1px at 90% 80%, rgba(194, 147, 65, 0.35) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 50% 50%, rgba(255, 255, 255, 0.2) 50%, transparent 50%);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.6;
}

.hero__slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero__slide.active {
  opacity: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroKenBurns 12s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroKenBurns {
  0% { transform: scale(1.05) rotate(0deg); }
  50% { transform: scale(1.10) rotate(0.5deg); }
  100% { transform: scale(1.15) rotate(-0.3deg); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 42, 40, 0.3) 0%,
    rgba(15, 42, 40, 0.15) 40%,
    rgba(15, 42, 40, 0.5) 100%
  );
  z-index: 2;
}

.hero__content {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
  color: white;
  width: 90%;
  max-width: 800px;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.3rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1.5rem;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
  text-transform: none;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.5s;
}

.hero__tagline {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3.5rem;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero__cta {
  display: inline-block;
  padding: 1.5rem 4.5rem;
  background: var(--color-gold);
  color: white;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.9s;
}

.hero__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.hero__cta:hover {
  background: var(--color-gold-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(194, 147, 65, 0.35), 0 15px 40px rgba(194, 147, 65, 0.2);
}

.hero__cta:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 2px 10px rgba(194, 147, 65, 0.3);
  transition: all 0.1s ease;
}

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

/* Hero Slideshow Controls */
.hero__dots {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1.2rem;
  z-index: 4;
}

.hero__dot {
  width: 30px;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-fast);
  border-radius: 2px;
}

.hero__dot.active {
  background: var(--color-gold);
  width: 50px;
  box-shadow: 0 0 10px rgba(194, 147, 65, 0.6), 0 0 20px rgba(194, 147, 65, 0.3);
  animation: pulse-glow 2s ease-in-out infinite;
}

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

/* ===== SECTION COMMON STYLES ===== */
.section {
  padding: var(--section-padding);
}

.section__header {
  text-align: center;
  margin-bottom: 6rem;
}

.section__eyebrow {
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}

.section__title {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 400;
  color: var(--color-deep-green);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.section__divider {
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  margin: 2rem auto 0;
}

.section__description {
  font-size: 1.6rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 1.5rem auto 0;
  line-height: 1.8;
}

/* ===== CATEGORIES SECTION ===== */
.categories {
  background: var(--color-cream);
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.category-card {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  cursor: pointer;
  group: true;
  aspect-ratio: 3/4;
}

/* Gold corner borders on hover */
.category-card::before,
.category-card::after {
  content: '';
  position: absolute;
  z-index: 5;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card::before {
  top: 12px;
  left: 12px;
  width: 0;
  height: 0;
  border-top: 2px solid var(--color-gold);
  border-left: 2px solid var(--color-gold);
}

.category-card::after {
  bottom: 12px;
  right: 12px;
  width: 0;
  height: 0;
  border-bottom: 2px solid var(--color-gold);
  border-right: 2px solid var(--color-gold);
}

.category-card:hover::before,
.category-card:hover::after {
  width: 40px;
  height: 40px;
  opacity: 1;
}

.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover .category-card__image {
  transform: scale(1.08) rotate(1.5deg);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(15, 42, 40, 0.75) 0%,
    rgba(15, 42, 40, 0.1) 50%,
    rgba(15, 42, 40, 0.05) 100%
  );
  transition: var(--transition-smooth);
}

.category-card:hover .category-card__overlay {
  background: linear-gradient(
    0deg,
    rgba(15, 42, 40, 0.85) 0%,
    rgba(140, 110, 40, 0.15) 50%,
    rgba(194, 147, 65, 0.08) 100%
  );
}

.category-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
  color: white;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.category-card:hover .category-card__content {
  transform: translateY(0);
}

.category-card__name {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  transition: text-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover .category-card__name {
  text-shadow: 0 0 20px rgba(194, 147, 65, 0.5), 0 0 40px rgba(194, 147, 65, 0.2);
}

.category-card__count {
  font-size: 1.3rem;
  color: var(--color-gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 300;
}

.category-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
  font-size: 1.3rem;
  color: var(--color-gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

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

.category-card__arrow svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.category-card:hover .category-card__arrow svg {
  transform: translateX(8px);
  animation: arrow-bounce 1s ease-in-out infinite;
}

@keyframes arrow-bounce {
  0%, 100% { transform: translateX(8px); }
  50% { transform: translateX(14px); }
}

/* ===== FEATURED PRODUCTS ===== */
.featured {
  background: var(--color-warm-white);
}

.featured__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.product-card {
  background: white;
  border-radius: 1.2rem;
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
  border-top: 2px solid transparent;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-gold-shimmer);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 5;
  border-radius: 1.2rem 1.2rem 0 0;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  box-shadow: 0 8px 30px rgba(25, 63, 60, 0.12), 0 20px 60px rgba(25, 63, 60, 0.15), 0 0 0 1px rgba(194, 147, 65, 0.1);
  transform: translateY(-8px);
}

.product-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-off-white);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.product-card__badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--color-deep-green);
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 0.4rem;
  animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); box-shadow: 0 2px 12px rgba(25, 63, 60, 0.3); }
}

.product-card__actions {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-smooth);
}

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

.product-card__action-btn {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: var(--transition-fast);
  color: var(--color-deep-green);
}

.product-card__action-btn:hover {
  background: var(--color-gold);
  color: white;
}

.product-card__action-btn svg {
  width: 18px;
  height: 18px;
}

.product-card__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(25, 63, 60, 0.75);
  color: white;
  text-align: center;
  padding: 1.4rem;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: var(--transition-smooth);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(194, 147, 65, 0.3);
}

.product-card:hover .product-card__quick-add {
  transform: translateY(0);
}

.product-card__info {
  padding: 2rem 2rem 2.5rem;
}

.product-card__category {
  font-size: 1.1rem;
  color: var(--color-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-deep-green);
  margin-bottom: 0.8rem;
  line-height: 1.3;
  transition: var(--transition-fast);
  position: relative;
  display: inline-block;
}

.product-card__name::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.product-card:hover .product-card__name::after {
  width: 100%;
}

.product-card__price {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-card__price-current {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-deep-green);
}

.product-card__price-original {
  font-size: 1.4rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.product-card__price-discount {
  font-size: 1.2rem;
  color: #C4301C;
  font-weight: 500;
}

/* ===== BANNER / PROMO SECTION ===== */
.promo-banner {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.promo-banner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.promo-banner__image {
  position: relative;
  overflow: hidden;
}

.promo-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.promo-banner:hover .promo-banner__image img {
  transform: scale(1.03);
}

.promo-banner__content {
  background: var(--color-deep-green);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 8rem;
  color: white;
}

.promo-banner__eyebrow {
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 2rem;
  font-weight: 400;
}

.promo-banner__title {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.promo-banner__text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 3.5rem;
  max-width: 450px;
}

.promo-banner__btn {
  display: inline-block;
  padding: 1.4rem 4rem;
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.promo-banner__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-gold);
  transition: left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.promo-banner__btn:hover::before {
  left: 0;
}

.promo-banner__btn:hover {
  color: white;
  border-color: var(--color-gold);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--color-cream);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.testimonial-card {
  background: white;
  border-radius: 1.2rem;
  padding: 4rem 3.5rem;
  position: relative;
  transition: var(--transition-smooth);
  border-left: 3px solid transparent;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-5px);
  border-left-color: var(--color-gold);
}

.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.4;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card:hover .testimonial-card__quote {
  opacity: 0.7;
  transform: scale(1.15);
  text-shadow: 0 0 20px rgba(194, 147, 65, 0.3);
}

.testimonial-card__stars {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--color-gold);
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-card__stars svg:nth-child(1) { animation: twinkle 0.6s ease 0.0s; }
.testimonial-card:hover .testimonial-card__stars svg:nth-child(2) { animation: twinkle 0.6s ease 0.1s; }
.testimonial-card:hover .testimonial-card__stars svg:nth-child(3) { animation: twinkle 0.6s ease 0.2s; }
.testimonial-card:hover .testimonial-card__stars svg:nth-child(4) { animation: twinkle 0.6s ease 0.3s; }
.testimonial-card:hover .testimonial-card__stars svg:nth-child(5) { animation: twinkle 0.6s ease 0.4s; }

.testimonial-card__text {
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--color-text-body);
  margin-bottom: 2.5rem;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-deep-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  transition: box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card:hover .testimonial-card__avatar {
  box-shadow: 0 0 0 3px rgba(194, 147, 65, 0.5), 0 0 15px rgba(194, 147, 65, 0.2);
}

.testimonial-card__author-info h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-deep-green);
}

.testimonial-card__author-info span {
  font-size: 1.2rem;
  color: var(--color-text-muted);
}

/* ===== STORY / ABOUT SECTION ===== */
.story {
  background: var(--color-warm-white);
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.story__image-wrap {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
}

.story__image-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 1.2rem;
}

.story__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--color-gold);
  border-radius: 1.2rem;
  z-index: -1;
  animation: pulse-glow 4s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(194, 147, 65, 0.15);
}

.story__content {
  padding: 2rem 0;
}

.story__eyebrow {
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.story__title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 400;
  color: var(--color-deep-green);
  line-height: 1.2;
  margin-bottom: 2.5rem;
}

.story__text {
  font-size: 1.6rem;
  line-height: 1.9;
  color: var(--color-text-body);
  margin-bottom: 2rem;
}

.story__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

.story__feature {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.story__feature-icon {
  width: 45px;
  height: 45px;
  background: rgba(194, 147, 65, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.story__feature:hover .story__feature-icon {
  background: rgba(194, 147, 65, 0.15);
  box-shadow: 0 0 15px rgba(194, 147, 65, 0.2);
}

.story__feature:hover .story__feature-icon svg {
  animation: spin-slow 3s linear infinite;
}

.story__feature-icon svg {
  width: 20px;
  height: 20px;
}

.story__feature span {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-deep-green);
}

.story__btn {
  display: inline-block;
  padding: 1.4rem 4rem;
  background: var(--color-deep-green);
  color: white;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.story__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(194, 147, 65, 0.3), transparent);
  transition: left 0.6s ease;
}

.story__btn:hover {
  background: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(194, 147, 65, 0.3), 0 15px 40px rgba(194, 147, 65, 0.15);
}

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

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--color-deep-green);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(194, 147, 65, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(194, 147, 65, 0.04) 0%, transparent 50%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(194, 147, 65, 0.02) 40px,
      rgba(194, 147, 65, 0.02) 41px
    );
  pointer-events: none;
}

.newsletter__inner {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.newsletter__eyebrow {
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.newsletter__title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 400;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.newsletter__text {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

.newsletter__form {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter__input {
  flex: 1;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.4rem;
  transition: var(--transition-fast);
}

.newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter__input:focus {
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 15px rgba(194, 147, 65, 0.25), 0 0 30px rgba(194, 147, 65, 0.1);
}

.newsletter__btn {
  padding: 1.5rem 3rem;
  background: var(--color-gold);
  color: white;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.newsletter__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
}

.newsletter__btn:hover {
  background: var(--color-gold-dark);
  box-shadow: 0 5px 20px rgba(194, 147, 65, 0.4);
}

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

/* ===== FEATURES BAR ===== */
.features-bar {
  background: white;
  padding: 5rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.features-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 1.2rem;
  border: 1px solid transparent;
  position: relative;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(194, 147, 65, 0.2);
}

.feature-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-gold-shimmer);
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 0 0 1.2rem 1.2rem;
}

.feature-item:hover::after {
  width: 60%;
}

.feature-item__icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 1.5rem;
  background: rgba(194, 147, 65, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-item:hover .feature-item__icon {
  transform: scale(1.15);
  background: rgba(194, 147, 65, 0.12);
  box-shadow: 0 0 0 6px rgba(194, 147, 65, 0.08), 0 0 20px rgba(194, 147, 65, 0.15);
}

.feature-item__icon svg {
  width: 24px;
  height: 24px;
}

.feature-item__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-deep-green);
  margin-bottom: 0.5rem;
}

.feature-item__text {
  font-size: 1.3rem;
  color: var(--color-text-muted);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-green-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 8rem 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold-light), var(--color-gold-dark));
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 500;
  color: white;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.footer__brand-tagline {
  font-size: 1.2rem;
  color: var(--color-gold-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.footer__about-text {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 350px;
}

.footer__social {
  display: flex;
  gap: 1.2rem;
}

.footer__social-link {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.footer__social-link:hover {
  border-color: var(--color-gold);
  background: var(--color-gold);
  color: white;
  animation: social-bounce 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes social-bounce {
  0% { transform: translateY(0); }
  30% { transform: translateY(-8px); }
  50% { transform: translateY(-4px); }
  70% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: white;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.footer__links li {
  margin-bottom: 1.2rem;
}

.footer__links a {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-fast);
  position: relative;
}

.footer__links a::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 5px;
  height: 5px;
  background: var(--color-gold);
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer__links a:hover {
  color: var(--color-gold);
  padding-left: 15px;
}

.footer__links a:hover::before {
  transform: translateY(-50%) scale(1);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--color-gold);
}

.footer__bottom {
  padding: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__legal-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__legal-links a {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.footer__legal-links a:hover {
  color: var(--color-gold);
}

.footer__legal-dot {
  color: rgba(255, 255, 255, 0.25);
  font-size: 1.2rem;
}

.footer__payments {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer__payments span {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 50px;
  height: 50px;
  background: var(--color-deep-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-medium);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: back-to-top-ring 2.5s ease-in-out infinite;
}

@keyframes back-to-top-ring {
  0%, 100% { box-shadow: var(--shadow-medium), 0 0 0 0 rgba(194, 147, 65, 0.3); }
  50% { box-shadow: var(--shadow-medium), 0 0 0 8px rgba(194, 147, 65, 0); }
}

.back-to-top:hover {
  background: var(--color-gold);
  transform: translateY(-3px);
  animation: none;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.back-to-top:hover svg {
  transform: rotate(-15deg) translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .container { padding: 0 30px; }
  .header__container { padding: 0 30px; }
  .featured__grid { grid-template-columns: repeat(3, 1fr); }
  .promo-banner__content { padding: 5rem 5rem; }
}

@media (max-width: 992px) {
  :root { --section-padding: 70px 0; }
  
  .header__nav { display: none; }
  .header__hamburger { display: flex; }
  .header__tagline { display: none; }
  .header__brand-name { font-size: 2.2rem; }
  
  .hero__title { font-size: 4.8rem; }
  .hero__tagline { font-size: 1.8rem; }
  
  .categories__grid { grid-template-columns: repeat(2, 1fr); }
  .featured__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .features-bar__grid { grid-template-columns: repeat(2, 1fr); }
  
  .promo-banner__inner { grid-template-columns: 1fr; }
  .promo-banner__content { padding: 5rem 4rem; }
  
  .story__grid { grid-template-columns: 1fr; gap: 4rem; }
  .story__image-wrap img { height: 400px; }
  
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; }
  
  .section__title { font-size: 3.5rem; }

  /* Mobile Navigation Overlay */
  .header__nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 42, 40, 0.97);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.8rem;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .header__nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .header__nav a {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.8rem 2.5rem;
    position: relative;
    transition: all 0.3s ease;
  }

  .header__nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40px;
    height: 2px;
    background: var(--color-gold);
    transition: transform 0.3s ease;
  }

  .header__nav a:hover,
  .header__nav a.active {
    color: var(--color-gold-light);
  }

  .header__nav a:hover::after,
  .header__nav a.active::after {
    transform: translateX(-50%) scaleX(1);
  }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .header__container { padding: 0 16px; height: 65px; }
  .announcement-bar { padding: 0.6rem 1rem; font-size: 1.1rem; }
  .announcement-bar__inner { gap: 0.8rem; justify-content: center; }
  
  .header__brand-name { font-size: 1.8rem; letter-spacing: 0.08em; }
  .header__logo img { height: 34px; }
  .header__right { gap: 0.8rem; }
  .header__icon { width: 36px; height: 36px; padding: 6px; }
  
  .hero { min-height: 520px; }
  .hero__title { font-size: 3.5rem; }
  .hero__tagline { font-size: 1.5rem; letter-spacing: 0.12em; }
  .hero__subtitle { font-size: 1rem; margin-bottom: 2.5rem; }
  .hero__cta { padding: 1.2rem 3rem; font-size: 1.2rem; }
  .hero__content { width: 90%; bottom: 12%; }
  
  .categories__grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .category-card__name { font-size: 1.8rem; }
  .category-card__count { font-size: 1rem; }
  
  .featured__grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .product-card__info { padding: 1.2rem; }
  .product-card__name { font-size: 1.5rem; }
  .product-card__price-current { font-size: 1.5rem; }
  .product-card__price-original { font-size: 1.2rem; }
  .product-card__price-discount { font-size: 1rem; padding: 0.1rem 0.4rem; }
  
  /* Touch visibility for card buttons on mobile */
  .product-card__quick-add {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    position: relative !important;
    width: 100% !important;
    border-radius: 0 0 0.8rem 0.8rem;
    background: var(--color-deep-green) !important;
    color: white !important;
    padding: 1rem 1.2rem !important;
    font-size: 1.1rem !important;
    letter-spacing: 0.1em !important;
    text-align: center !important;
    font-weight: 500 !important;
    box-shadow: none !important;
  }

  .testimonials__grid { grid-template-columns: 1fr; gap: 2rem; }
  .testimonial-card { padding: 2.5rem 2rem; }
  
  .newsletter__form { flex-direction: column; gap: 1rem; max-width: 100%; }
  .newsletter__title { font-size: 2.8rem; }
  .newsletter__subtitle { font-size: 1.3rem; }
  .newsletter__input { padding: 1.4rem 2rem; }
  .newsletter__btn { padding: 1.4rem 2rem; width: 100%; }
  
  .features-bar__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .feature-item { padding: 1.5rem 1rem; }
  
  .footer { padding: 5rem 0 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 3rem; padding-bottom: 3rem; }
  .footer__bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer__social { justify-content: center; }
  
  .section__title { font-size: 2.8rem; }
  .section__header { margin-bottom: 3rem; }
  
  .story__features { grid-template-columns: 1fr; gap: 1.5rem; }
  .promo-banner__title { font-size: 2.8rem; }
  .promo-banner__content { padding: 3.5rem 2rem; }
}

@media (max-width: 480px) {
  .announcement-bar__inner span:nth-child(5),
  .announcement-bar__inner span:nth-child(4) { display: none; }
  
  .hero { min-height: 480px; }
  .hero__title { font-size: 2.8rem; }
  .hero__tagline { font-size: 1.3rem; letter-spacing: 0.1em; }
  .hero__content { bottom: 10%; width: 92%; }
  
  .categories__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .category-card__name { font-size: 1.6rem; }
  
  .featured__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .product-card__info { padding: 1rem; }
  .product-card__name { font-size: 1.4rem; }
  .product-card__price-current { font-size: 1.4rem; }
  
  .features-bar__grid { grid-template-columns: 1fr; }
  
  .section__title { font-size: 2.4rem; }
  .header__brand-name { font-size: 1.6rem; letter-spacing: 0.05em; }
  .header__container { height: 60px; }
}

/* ===== GLOBAL PREMIUM KEYFRAMES ===== */
@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  25% { transform: translateY(-8px) translateX(3px); }
  50% { transform: translateY(-4px) translateX(-2px); }
  75% { transform: translateY(-10px) translateX(5px); }
}

@keyframes twinkle {
  0% { transform: scale(1); opacity: 1; }
  25% { transform: scale(1.4); opacity: 0.6; filter: brightness(1.5); }
  50% { transform: scale(0.8); opacity: 1; }
  75% { transform: scale(1.3); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes border-draw {
  0% { width: 0; height: 0; opacity: 0; }
  50% { width: 40px; height: 0; opacity: 1; }
  100% { width: 40px; height: 40px; opacity: 1; }
}

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

@keyframes shine-sweep {
  0% { left: -100%; }
  100% { left: 200%; }
}

@keyframes sparkle-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
  50% { transform: translateY(-15px) scale(1.3); opacity: 1; }
}

/* ===== CATEGORY CARD SHIMMER SWEEP ===== */
.category-card__overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(194, 147, 65, 0.08),
    rgba(255, 255, 255, 0.12),
    rgba(194, 147, 65, 0.08),
    transparent
  );
  transition: none;
  z-index: 3;
}

.category-card:hover .category-card__overlay::after {
  animation: shine-sweep 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* ===== PRODUCT CARD IMAGE SHINE ===== */
.product-card__image-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  z-index: 3;
  pointer-events: none;
}

.product-card:hover .product-card__image-wrap::after {
  animation: shine-sweep 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* ===== PROMO BANNER CINEMATIC ===== */
.promo-banner__content::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -30px;
  width: 1px;
  height: 60%;
  background: linear-gradient(180deg, transparent, var(--color-gold), transparent);
  opacity: 0.3;
  transform: rotate(15deg);
}

.promo-banner__content::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(2px 2px at 85% 25%, rgba(194, 147, 65, 0.6) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 75% 70%, rgba(194, 147, 65, 0.4) 50%, transparent 50%),
    radial-gradient(2px 2px at 90% 55%, rgba(194, 147, 65, 0.5) 50%, transparent 50%),
    radial-gradient(1px 1px at 80% 40%, rgba(194, 147, 65, 0.3) 50%, transparent 50%);
  animation: sparkle-float 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.promo-banner__content > * {
  position: relative;
  z-index: 2;
}

/* ===== CUSTOM CURSOR GLOW ===== */
.category-card,
.product-card {
  cursor: pointer;
}

.product-card__image-wrap,
.category-card {
  position: relative;
}

@media (hover: hover) and (pointer: fine) {
  .product-card::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(194, 147, 65, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 4;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    will-change: opacity;
  }

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

/* ===== REDUCED MOTION ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


.hero__scroll-indicator {
  position: absolute;
  bottom: 5%;
  right: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 5;
}

.hero__scroll-indicator span {
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--color-gold-light), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { top: -100%; }
  100% { top: 100%; }
}


/* ===== S-TIER: STORY BADGE ===== */
.story__badge {
  position: absolute;
  top: 3rem;
  right: -2rem;
  width: 80px;
  height: 80px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 3;
  box-shadow: 0 8px 30px rgba(194, 147, 65, 0.4);
  animation: float 4s ease-in-out infinite;
}

.story__badge span {
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1;
  opacity: 0.85;
}

.story__badge strong {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}

/* ===== S-TIER: NEWSLETTER TRUST ===== */
.newsletter__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.newsletter__trust span {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.newsletter__trust span:hover {
  color: var(--color-gold-light);
}

/* ===== S-TIER: FOOTER GOLD LINE ===== */
.footer__gold-line {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold-dark), var(--color-gold-light), var(--color-gold), var(--color-gold-light), var(--color-gold-dark), transparent);
  position: relative;
  overflow: hidden;
}

.footer__gold-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

/* ===== S-TIER: PROMO BANNER DECOR ===== */
.promo-banner__decor {
  width: 40px;
  height: 2px;
  background: var(--color-gold);
  margin-bottom: 2rem;
  position: relative;
}

.promo-banner__decor::after {
  content: '';
  position: absolute;
  left: 0;
  top: -4px;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--color-gold);
  border-radius: 50%;
  background: transparent;
}

.promo-banner__sparkles {
  position: absolute;
  top: 2rem;
  right: 3rem;
  z-index: 1;
}

.promo-banner__sparkles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0.6;
  animation: sparkle-float 3s ease-in-out infinite;
}

.promo-banner__sparkles span:nth-child(1) {
  top: 0;
  right: 0;
  animation-delay: 0s;
}

.promo-banner__sparkles span:nth-child(2) {
  top: 30px;
  right: 40px;
  animation-delay: 1s;
  width: 3px;
  height: 3px;
}

.promo-banner__sparkles span:nth-child(3) {
  top: 15px;
  right: 80px;
  animation-delay: 2s;
  width: 5px;
  height: 5px;
}

/* ===== S-TIER: FEATURE ITEM ENHANCED HOVER ===== */
.feature-item {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 1.2rem;
  border: 1px solid transparent;
  position: relative;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(25, 63, 60, 0.1);
  border-color: var(--color-border);
  background: white;
}

.feature-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-gold-shimmer);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 2px;
}

.feature-item:hover::after {
  width: 60%;
}

.feature-item:hover .feature-item__icon {
  transform: scale(1.15);
  box-shadow: 0 0 0 8px rgba(194, 147, 65, 0.1), 0 0 20px rgba(194, 147, 65, 0.15);
}

.feature-item__icon {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 768px) {
  .hero__scroll-indicator { display: none; }
  .story__badge { width: 65px; height: 65px; right: -1rem; top: 2rem; }
  .story__badge strong { font-size: 1.8rem; }
  .newsletter__trust { gap: 1.5rem; }
  .newsletter__trust span { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .story__badge { display: none; }
  .newsletter__trust { flex-direction: column; gap: 0.8rem; }
}

/* ===== TOAST NOTIFICATIONS ===== */
.os-toast {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem 2rem;
  background: rgba(15, 42, 40, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25), 0 0 0 1px rgba(194,147,65,0.2);
  color: white;
  font-size: 1.4rem;
  z-index: 10000;
  transform: translateY(120%) scale(0.95);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 420px;
}
.os-toast--visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.os-toast__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.os-toast__icon svg {
  width: 100%;
  height: 100%;
}
.os-toast--cart .os-toast__icon { color: var(--color-gold); }
.os-toast--wishlist .os-toast__icon { color: #e74c6f; }
.os-toast--remove .os-toast__icon { color: #aaa; }
.os-toast__message {
  flex: 1;
  line-height: 1.4;
  font-weight: 400;
}
.os-toast__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.4rem;
  transition: color 0.2s;
  flex-shrink: 0;
}
.os-toast__close:hover { color: white; }
.os-toast--cart { border-left: 3px solid var(--color-gold); }
.os-toast--wishlist { border-left: 3px solid #e74c6f; }
.os-toast--remove { border-left: 3px solid #888; }

/* ===== CART ICON ANIMATION ===== */
@keyframes cartBounce {
  0% { transform: scale(1); }
  30% { transform: scale(1.3); }
  50% { transform: scale(0.9); }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.cart-bounce {
  animation: cartBounce 0.6s ease !important;
}
.header__cart-count.has-items {
  background: var(--color-gold);
  color: white;
  font-weight: 600;
  animation: badge-pop 0.4s ease;
}
@keyframes badge-pop {
  0% { transform: scale(0); }
  60% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* ===== WISHLIST BUTTON STATES ===== */
.product-card__action-btn.wishlisted {
  background: #e74c6f !important;
  color: white !important;
  box-shadow: 0 2px 15px rgba(231,76,111,0.3);
}
@keyframes heartPulse {
  0% { transform: scale(1); }
  25% { transform: scale(1.35); }
  50% { transform: scale(0.9); }
  75% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.heart-pulse {
  animation: heartPulse 0.6s ease !important;
}

/* ===== FULL CART PAGE (with items) ===== */
.cart-filled {
  margin-top: 176px;
  padding: 4rem 2rem;
  min-height: 60vh;
}
.cart-filled .container {
  max-width: 1100px;
  margin: 0 auto;
}
.cart-filled__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}
.cart-filled__title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--color-deep-green);
}
.cart-filled__count {
  font-size: 1.4rem;
  color: var(--color-text-muted);
}
.cart-filled__clear {
  font-size: 1.3rem;
  color: var(--color-text-muted);
  background: none;
  border: 1px solid var(--color-border);
  padding: 0.8rem 2rem;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
}
.cart-filled__clear:hover {
  color: #c4301c;
  border-color: #c4301c;
}
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-border);
  transition: background 0.3s;
}
.cart-item:hover {
  background: rgba(194,147,65,0.03);
}
.cart-item__image {
  width: 100px;
  height: 130px;
  border-radius: 0.8rem;
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item__details {
  min-width: 0;
}
.cart-item__category {
  font-size: 1.1rem;
  color: var(--color-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.cart-item__name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-deep-green);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.cart-item__price-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.cart-item__price {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-deep-green);
}
.cart-item__original-price {
  font-size: 1.3rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}
.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  overflow: hidden;
}
.cart-item__qty button {
  width: 36px;
  height: 36px;
  background: white;
  border: none;
  font-size: 1.6rem;
  color: var(--color-deep-green);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}
.cart-item__qty button:hover {
  background: var(--color-gold);
  color: white;
}
.cart-item__qty span {
  width: 40px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-deep-green);
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  padding: 0.6rem 0;
}
.cart-item__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}
.cart-item__subtotal {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-deep-green);
}
.cart-item__remove {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s;
  text-decoration: underline;
  font-family: var(--font-body);
}
.cart-item__remove:hover {
  color: #c4301c;
}
.cart-summary {
  margin-top: 3rem;
  background: var(--color-cream);
  border-radius: 1.2rem;
  padding: 3rem;
}
.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  font-size: 1.5rem;
  color: var(--color-text-body);
}
.cart-summary__row.total {
  border-top: 2px solid var(--color-border);
  margin-top: 1rem;
  padding-top: 1.5rem;
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-deep-green);
}
.cart-summary__row.savings {
  color: #22c55e;
  font-weight: 500;
}
.cart-summary__checkout {
  display: block;
  width: 100%;
  padding: 1.6rem;
  background: var(--color-gold);
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.4s;
  margin-top: 2rem;
  text-align: center;
  font-family: var(--font-body);
}
.cart-summary__checkout:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(194,147,65,0.3);
}
.cart-summary__continue {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  color: var(--color-text-muted);
  font-size: 1.3rem;
  transition: color 0.3s;
}
.cart-summary__continue:hover {
  color: var(--color-gold);
}

/* ===== FULL WISHLIST PAGE (with items) ===== */
.wishlist-filled {
  margin-top: 176px;
  padding: 5rem 2rem 6rem;
  min-height: 60vh;
  background: linear-gradient(180deg, var(--color-off-white) 0%, #fff 50%, var(--color-off-white) 100%);
}
.wishlist-filled .container {
  max-width: 1200px;
  margin: 0 auto;
}
.wishlist-filled__header {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}
.wishlist-filled__header::after {
  content: '♥';
  position: absolute;
  bottom: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-off-white);
  padding: 0 1.5rem;
  color: var(--color-gold);
  font-size: 1.6rem;
}
.wishlist-filled__title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--color-deep-green);
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}
.wishlist-filled__count {
  font-size: 1.4rem;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
}
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

/* ── Wishlist Card ── */
.wishlist-card {
  background: white;
  border-radius: 1.2rem;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 12px rgba(25, 63, 60, 0.06);
  animation: wishlistCardIn 0.5s ease both;
}
.wishlist-card:nth-child(1) { animation-delay: 0.05s; }
.wishlist-card:nth-child(2) { animation-delay: 0.1s; }
.wishlist-card:nth-child(3) { animation-delay: 0.15s; }
.wishlist-card:nth-child(4) { animation-delay: 0.2s; }
.wishlist-card:nth-child(5) { animation-delay: 0.25s; }
.wishlist-card:nth-child(6) { animation-delay: 0.3s; }
.wishlist-card:nth-child(7) { animation-delay: 0.35s; }
.wishlist-card:nth-child(8) { animation-delay: 0.4s; }

@keyframes wishlistCardIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.wishlist-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 3;
  border-radius: 1.2rem 1.2rem 0 0;
}

.wishlist-card:hover {
  box-shadow: 0 12px 40px rgba(25, 63, 60, 0.14), 0 0 0 1px rgba(194, 147, 65, 0.15);
  transform: translateY(-6px);
  border-color: transparent;
}
.wishlist-card:hover::before {
  transform: scaleX(1);
}

/* ── Image wrap ── */
.wishlist-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--color-off-white);
}
.wishlist-card__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(25, 63, 60, 0.06) 100%);
  pointer-events: none;
  transition: opacity 0.4s;
}
.wishlist-card:hover .wishlist-card__image-wrap::after {
  opacity: 0;
}
.wishlist-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.wishlist-card:hover .wishlist-card__image-wrap img {
  transform: scale(1.06);
}

/* ── Remove button ── */
.wishlist-card__remove {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  cursor: pointer;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
  z-index: 4;
  font-size: 1.6rem;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.wishlist-card__remove:hover {
  background: #c4301c;
  color: white;
  border-color: #c4301c;
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 4px 15px rgba(196, 48, 28, 0.35);
}

/* ── Move to Cart button ── */
.wishlist-card__add-cart {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.3rem 1.5rem;
  background: rgba(25, 63, 60, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: white;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transform: translateY(100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-family: var(--font-body);
  border-top: 1px solid rgba(194, 147, 65, 0.35);
  z-index: 3;
}
.wishlist-card:hover .wishlist-card__add-cart {
  transform: translateY(0);
}
.wishlist-card__add-cart:hover {
  background: var(--color-gold);
  letter-spacing: 0.18em;
}

/* ── Card Info ── */
.wishlist-card__info {
  padding: 1.6rem 2rem 2rem;
}
.wishlist-card__category {
  display: inline-block;
  font-size: 1rem;
  color: var(--color-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-family: var(--font-body);
}
.wishlist-card__name {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--color-deep-green);
  font-weight: 500;
  margin: 0.3rem 0 0.8rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s;
}
.wishlist-card:hover .wishlist-card__name {
  color: var(--color-gold-dark);
}
.wishlist-card__price {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.wishlist-card__price-current {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-deep-green);
  font-family: var(--font-body);
}
.wishlist-card__price-original {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
  font-family: var(--font-body);
}
.wishlist-card__price-discount {
  font-size: 1.1rem;
  color: #c4301c;
  font-weight: 600;
  background: rgba(196, 48, 28, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 0.3rem;
  font-family: var(--font-body);
}

/* ===== Cart & Wishlist Page Responsive ===== */
@media (max-width: 1200px) {
  .wishlist-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}

@media (max-width: 992px) {
  .cart-filled, .cart-page { margin-top: 130px; }
  .wishlist-filled, .wishlist-page { margin-top: 130px; }
  .page-hero { margin-top: 130px; }
  .wishlist-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .cart-item { grid-template-columns: 80px 1fr auto; }
  .cart-item__actions { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (max-width: 768px) {
  .cart-filled, .cart-page { margin-top: 105px; padding: 2rem 1.2rem; }
  .wishlist-filled, .wishlist-page { margin-top: 105px; padding: 2rem 1.2rem; }
  .page-hero { margin-top: 105px; height: 200px; }
  .page-hero__title { font-size: 3.2rem; }
  .page-hero__subtitle { font-size: 1.2rem; }
  
  .wishlist-filled__header::after { background: #fff; }
  .cart-filled__header { flex-direction: column; gap: 1rem; text-align: center; }
  .cart-filled__title { font-size: 2.6rem; }
  .wishlist-filled__title { font-size: 2.6rem; }
  
  .wishlist-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1.2rem !important; }
  .wishlist-card__info { padding: 1rem 1.2rem 1.4rem !important; }
  .wishlist-card__name { font-size: 1.4rem !important; }
  .wishlist-card__price-current { font-size: 1.4rem !important; }
  
  /* Touch screen visible Move to Cart button */
  .wishlist-card__add-cart {
    transform: translateY(0) !important;
    position: relative !important;
    width: 100% !important;
    background: var(--color-deep-green) !important;
    color: white !important;
    padding: 0.9rem 1rem !important;
    font-size: 1.1rem !important;
    letter-spacing: 0.12em !important;
    border-top: none !important;
  }
  
  .cart-filled__item, .cart-item {
    grid-template-columns: 75px 1fr !important;
    gap: 1.2rem !important;
    padding: 1.5rem 0 !important;
    position: relative !important;
  }
  .cart-filled__item-details, .cart-item__details {
    padding-right: 2.5rem !important;
  }
  .cart-filled__item-remove, .cart-item__remove {
    position: absolute !important;
    top: 1.2rem !important;
    right: 0 !important;
  }
  .cart-filled__item-qty, .cart-item__qty {
    grid-column: 1 / -1 !important;
    justify-self: flex-start !important;
    margin-top: 0.4rem !important;
  }
  .cart-filled__item-subtotal, .cart-item__subtotal {
    grid-column: 1 / -1 !important;
    text-align: right !important;
    margin-top: -3.5rem !important;
    font-size: 1.6rem !important;
  }
  
  .os-toast {
    left: 15px !important;
    right: 15px !important;
    bottom: 20px !important;
    width: calc(100% - 30px) !important;
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  .cart-filled, .cart-page { margin-top: 95px; }
  .wishlist-filled, .wishlist-page { margin-top: 95px; }
  .page-hero { margin-top: 95px; height: 180px; }
  .page-hero__title { font-size: 2.5rem; }
  
  .wishlist-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem !important; }
  .wishlist-filled__title, .cart-filled__title { font-size: 2.2rem !important; }
}

/* ===== WEBSITE BANNER SYSTEM ===== */

/* 1. TOP BANNER BAR */
.banner-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1050;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  animation: bannerSlideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--font-body);
}
.banner-top__content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 500;
}
.banner-top__title {
  font-weight: 700;
  letter-spacing: 0.05em;
}
.banner-top__subtitle {
  opacity: 0.9;
}
.banner-top__btn {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.banner-top__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
}
.banner-top__close {
  background: none;
  border: none;
  color: currentColor;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  padding: 4px;
  transition: opacity 0.2s;
  margin-left: 10px;
}
.banner-top__close:hover { opacity: 1; }

@keyframes bannerSlideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* 2. POPUP BANNER */
.banner-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: bannerFadeIn 0.3s ease;
}
.banner-popup {
  position: relative;
  width: 520px;
  max-width: 95vw;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: bannerPopIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
}
.banner-popup__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.banner-popup__body {
  padding: 28px;
  text-align: center;
}
.banner-popup__title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.25;
}
.banner-popup__subtitle {
  font-size: 1.4rem;
  opacity: 0.85;
  margin-bottom: 20px;
  line-height: 1.5;
}
.banner-popup__btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.banner-popup__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}
.banner-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}
.banner-popup__close:hover {
  background: rgba(239,68,68,0.8);
  transform: scale(1.1);
}

@keyframes bannerPopIn {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* 3. OVERLAY BANNER */
.banner-overlay-wrap {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 18, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: bannerFadeIn 0.3s ease;
}
.banner-overlay-card {
  position: relative;
  width: 700px;
  max-width: 95vw;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 25px 70px rgba(0,0,0,0.6);
  animation: bannerZoomIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.banner-overlay-card__img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.banner-overlay-card__body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner-overlay-card__title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.2;
}
.banner-overlay-card__subtitle {
  font-size: 1.4rem;
  opacity: 0.85;
  margin-bottom: 24px;
  line-height: 1.6;
}

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

/* 4. SIDE SQUARE BOX BANNER */
.banner-side {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 320px;
  max-width: calc(100vw - 32px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  z-index: 9999;
  animation: bannerSlideInRight 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.banner-side__img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.banner-side__body {
  padding: 18px 20px;
  position: relative;
}
.banner-side__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}
.banner-side__subtitle {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-bottom: 14px;
  line-height: 1.4;
}
.banner-side__btn {
  display: inline-block;
  width: 100%;
  padding: 10px;
  text-align: center;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.2s;
}
.banner-side__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.banner-side__close:hover {
  background: rgba(239,68,68,0.8);
}

@keyframes bannerSlideInRight {
  from { opacity: 0; transform: translateX(100px) translateY(20px); }
  to { opacity: 1; transform: translateX(0) translateY(0); }
}

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

/* BANNER THEME STYLES */
.banner-theme-gold {
  background: linear-gradient(135deg, #1d1810, #2b2214);
  border: 1px solid #c29341;
  color: #fceecb;
}
.banner-theme-gold .banner-btn-style {
  background: #c29341;
  color: #fff;
}
.banner-theme-gold .banner-btn-style:hover {
  background: #d4ae6a;
}

.banner-theme-dark {
  background: #141722;
  border: 1px solid #2e3245;
  color: #f1f5f9;
}
.banner-theme-dark .banner-btn-style {
  background: #fff;
  color: #0f1117;
}
.banner-theme-dark .banner-btn-style:hover {
  background: #e2e8f0;
}

.banner-theme-red {
  background: linear-gradient(135deg, #2a0b0b, #3d1010);
  border: 1px solid #ef4444;
  color: #fef2f2;
}
.banner-theme-red .banner-btn-style {
  background: #ef4444;
  color: #fff;
}
.banner-theme-red .banner-btn-style:hover {
  background: #f87171;
}

.banner-theme-blue {
  background: linear-gradient(135deg, #0b1a30, #102547);
  border: 1px solid #3b82f6;
  color: #eff6ff;
}
.banner-theme-blue .banner-btn-style {
  background: #3b82f6;
  color: #fff;
}
.banner-theme-blue .banner-btn-style:hover {
  background: #60a5fa;
}

.banner-theme-green {
  background: linear-gradient(135deg, #092013, #0f331e);
  border: 1px solid #22c55e;
  color: #f0fdf4;
}
.banner-theme-green .banner-btn-style {
  background: #22c55e;
  color: #fff;
}
.banner-theme-green .banner-btn-style:hover {
  background: #4ade80;
}

@media (max-width: 600px) {
  .banner-overlay-card { grid-template-columns: 1fr; }
  .banner-overlay-card__img { height: 180px; min-height: 180px; }
  .banner-overlay-card__body { padding: 24px; }
  .banner-side { right: 16px; bottom: 16px; width: 290px; }
}

