

:root {
  --teal: #240046;
  --teal-light: #3d0a6e;
  --teal-dark: #1a0033;
  --magenta: #FFC107;
  --magenta-light: #ffcd38;
  --magenta-pale: #fff8e1;
  --off-white: #F8F5F2;
  --dark: #1a0033;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--dark);
  overflow-x: hidden;
  cursor: default;
  word-wrap: break-word;
  overflow-wrap: break-word;
}


a, button, .product-card, .filter-tab, .nav-cart, .modal-close,
[onclick], .hero-mini-card { cursor: pointer; }


nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 4rem;
  background: rgba(248,245,242,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: none;
  box-shadow: 0 1px 0 rgba(36,0,70,0.06);
  transition: all 0.3s ease;
}


nav.scrolled {
  box-shadow: 0 4px 20px rgba(36,0,70,0.08);
  padding: 0.75rem 4rem;
}


.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; letter-spacing: .08em;
  color: var(--teal); text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.02);
}

.nav-logo::after {
  content: '✦';
  font-size: 0.6rem;
  color: var(--magenta);
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.nav-logo:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.nav-logo-wrap {
  display: inline-flex;
  align-items: center;
  overflow: visible;
  max-width: min(260px, 50vw);
  max-height: 2.5rem;
}

.nav-logo-img {
  display: block;
  height: 2rem;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  transition: transform 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
}

.nav-logo-fallback {
  display: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; letter-spacing: .08em;
  color: var(--teal);
}

.nav-logo-fallback span {
  color: var(--magenta); font-style: italic;
}


.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--teal));
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-links a:hover::before {
  width: 100%;
}


.nav-links a.active {
  color: var(--magenta);
  font-weight: 600;
}

.nav-links a.active::before {
  width: 100%;
  background: var(--magenta);
}


.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}


.nav-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--teal);
  border: none;
  padding: 0.6rem 1rem;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid rgba(36,0,70,0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.nav-cart:hover::before {
  left: 100%;
}

.nav-cart:hover {
  border-color: var(--magenta);
  background: rgba(255,193,7,0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(36,0,70,0.1);
}

.nav-cart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 1rem;
  color: var(--teal);
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav-cart:hover .nav-cart-icon {
  transform: scale(1.2);
  color: var(--magenta);
}

.nav-cart-label {
  display: inline-flex;
  align-items: center;
}

.cart-count {
  background: var(--teal);
  color: var(--magenta);
  min-width: 22px;
  height: 22px;
  padding: 0 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-left: 0.3rem;
  transition: all 0.3s ease;
}

.nav-cart:hover .cart-count {
  background: var(--magenta);
  color: var(--teal);
  transform: scale(1.1);
}

.nav-cart .cart-count.bump {
  animation: cart-count-bump 0.4s ease;
}

@keyframes cart-count-bump {
  0% { transform: scale(1); }
  40% { transform: scale(1.3); }
  100% { transform: scale(1); }
}


.nav-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(36,0,70,0.03);
  border: 2px solid rgba(36,0,70,0.1);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.nav-menu-btn:hover {
  background: rgba(255,193,7,0.15);
  border-color: var(--magenta);
}

.nav-menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}

body.nav-open .nav-menu-btn {
  background: rgba(255,193,7,0.2);
  border-color: var(--magenta);
}

body.nav-open .nav-menu-btn span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-menu-btn span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.nav-open .nav-menu-btn span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


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

@keyframes fadeInScale {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes floatReverse {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(20px) rotate(-5deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

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


nav {
  animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.nav-logo {
  animation: fadeInScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s backwards;
}

.nav-links li {
  animation: fadeInScale 0.5s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.nav-links li:nth-child(1) { animation-delay: 0.3s; }
.nav-links li:nth-child(2) { animation-delay: 0.4s; }
.nav-links li:nth-child(3) { animation-delay: 0.5s; }
.nav-links li:nth-child(4) { animation-delay: 0.6s; }
.nav-links li:nth-child(5) { animation-delay: 0.7s; }
.nav-links li:nth-child(6) { animation-delay: 0.8s; }

.nav-cart {
  animation: fadeInScale 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.9s backwards;
}


.hero {
  min-height: 100vh;
  padding-top: 80px;
  display: grid;
  grid-template-rows: 1fr;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal) 0%, #3d0a6e 50%, var(--teal) 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}


.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255,0,153,0.20) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(255,193,7,0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.04) 0%, transparent 35%),
    radial-gradient(circle at 10% 80%, rgba(255,102,0,0.10) 0%, transparent 30%);
  animation: rotateSlow 80s linear infinite;
  pointer-events: none;
}


.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
}


.hero-decoration {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero-decoration-1 {
  top: 15%;
  left: 5%;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255,0,153,0.25);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero-decoration-2 {
  top: 60%;
  left: 8%;
  width: 40px;
  height: 40px;
  background: rgba(255,0,153,0.08);
  border-radius: 50%;
  animation: floatReverse 5s ease-in-out infinite 1s;
}

.hero-decoration-3 {
  top: 25%;
  right: 45%;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255,255,255,0.2);
  transform: rotate(45deg);
  animation: float 8s ease-in-out infinite 0.5s;
}

.hero-decoration-4 {
  bottom: 20%;
  right: 10%;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(255,0,153,0.18);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: floatReverse 7s ease-in-out infinite;
}


.hero-sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--magenta);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px var(--magenta), 0 0 20px var(--magenta);
}

.hero-sparkle-1 { top: 20%; left: 15%; animation-delay: 0s; }
.hero-sparkle-2 { top: 40%; left: 25%; animation-delay: 0.5s; }
.hero-sparkle-3 { top: 70%; left: 10%; animation-delay: 1s; }
.hero-sparkle-4 { top: 30%; right: 40%; animation-delay: 1.5s; }
.hero-sparkle-5 { top: 60%; right: 15%; animation-delay: 0.3s; }
.hero-sparkle-6 { top: 80%; left: 30%; animation-delay: 0.8s; }

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal) 0%, #3d0a6e 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: 4rem 5rem;
  gap: 3rem;
}

.hero-left {
  padding-right: 3rem;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}

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

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  background: linear-gradient(135deg, rgba(255,193,7,.2), rgba(255,193,7,.1));
  border: 1.5px solid rgba(255,193,7,.5);
  padding: .6rem 1.5rem;
  margin-bottom: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--magenta);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s backwards;
  box-shadow: 
    0 4px 20px rgba(255,193,7,0.2),
    inset 0 1px 0 rgba(255,255,255,0.3);
  font-weight: 600;
}


.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s backwards;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--magenta);
  line-height: 1;
  text-shadow: 0 0 20px rgba(255,193,7,0.4);
}

.hero-stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  color: rgba(248,245,242,0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--magenta);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 10px var(--magenta);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--off-white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  text-shadow: 0 0 60px rgba(255,193,7,0.15);
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s backwards;
}

.hero-title .line1,
.hero-title .line2 {
  display: block;
}
.hero-title .line2 {
  background: linear-gradient(90deg, var(--magenta), #fff8e1, var(--magenta));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
  font-style: italic;
  padding-bottom: 0.15em;
  text-shadow: 0 0 40px rgba(255,193,7,0.3);
}

.hero-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(248,245,242,.8);
  font-weight: 400;
  max-width: min(560px, 100%);
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s backwards;
}

.hero-btns {
  display: flex;
  gap: 1.2rem;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1s backwards;
}

.btn-mag {
  background: var(--magenta);
  color: var(--teal);
  padding: 1rem 2.5rem;
  border: 2px solid var(--magenta);
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
}

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

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

.btn-mag:hover {
  background: var(--off-white);
  border-color: var(--off-white);
  color: var(--teal);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255,193,7,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--off-white);
  padding: 1rem 2.5rem;
  border: 2px solid rgba(248,245,242,0.4);
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--off-white);
  color: var(--off-white);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-right {
  position: relative;
  padding-left: 2rem;
  align-self: center;
  min-height: auto;
  animation: fadeInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s backwards;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 700px;
  border-radius: 24px;
  overflow: visible;
  box-shadow: 
    0 40px 100px rgba(0,0,0,0.35),
    0 20px 60px rgba(36,0,70,0.2);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 50px 120px rgba(0,0,0,0.4),
    0 30px 80px rgba(255,193,7,0.15);
}

.hero-image {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(248,245,242,0.18) 0%, rgba(248,245,242,0.06) 100%);
  border: 2px solid rgba(248,245,242,0.35);
  backdrop-filter: blur(16px);
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg, 
    rgba(36,0,70,0.15) 0%, 
    transparent 40%,
    transparent 60%,
    rgba(255,193,7,0.1) 100%
  );
  z-index: 2;
  pointer-events: none;
  border-radius: 20px;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  aspect-ratio: 1050 / 419;
}

.hero-image:hover img {
  transform: scale(1.05);
}


.hero-image::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, var(--magenta) 0%, transparent 30%, transparent 70%, var(--teal) 100%);
  border-radius: 27px;
  z-index: -1;
  opacity: 0.7;
}


.hero-float-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--off-white), #fff);
  padding: 0.75rem 1.25rem;
  border-radius: 16px;
  box-shadow: 
    0 20px 50px rgba(0,0,0,0.25),
    0 0 0 3px rgba(255,193,7,0.2);
  z-index: 10;
  animation: float 4s ease-in-out infinite;
  border: 2px solid var(--magenta);
}

.hero-float-badge::before {
  content: '★';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 28px;
  height: 28px;
  background: var(--magenta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--teal);
  box-shadow: 0 4px 15px rgba(255,193,7,0.4);
}

.hero-float-badge-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}


.hero-image-ring {
  position: absolute;
  top: -20px;
  right: -20px;
  width: clamp(70px, 10vw, 120px);
  height: clamp(70px, 10vw, 120px);
  border: 3px solid var(--magenta);
  border-radius: 50%;
  opacity: 0.5;
  animation: rotateSlow 20s linear infinite, pulse 3s ease-in-out infinite;
  box-shadow: 0 0 25px rgba(255,193,7,0.3);
  z-index: -1;
}


.hero-image-ring::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 2px dashed rgba(255,193,7,0.4);
  border-radius: 50%;
  animation: rotateSlow 15s linear infinite reverse;
}

.hero-cards-row { display: flex; gap: 1.2rem; }
.hero-mini-card {
  flex: 1; background: rgba(248,245,242,.1); border: 1px solid rgba(248,245,242,.15);
  padding: 1.8rem; text-align: center;
  backdrop-filter: blur(8px); cursor: pointer;
  transition: all .4s;
}
.hero-mini-card:hover {
  background: rgba(255,193,7,.2); border-color: rgba(255,193,7,.4);
  transform: translateY(-6px);
}
.mini-emoji { font-size: 2.2rem; margin-bottom: .8rem; display: block; }
.mini-name {
  font-family: 'Playfair Display', serif; font-size: 1rem;
  color: var(--off-white); margin-bottom: .3rem;
}
.mini-price { font-size: .8rem; color: var(--magenta-pale); font-weight: 300; }
.hero-stat-row {
  display: flex; gap: 0; border: 1px solid rgba(248,245,242,.15);
}
.hero-stat {
  flex: 1; padding: 1.2rem; text-align: center;
  border-right: 1px solid rgba(248,245,242,.12);
}
.hero-stat:last-child { border-right: none; }
.stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--magenta-pale); font-weight: 700;
}
.stat-l { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(248,245,242,.5); }


.marquee-wrap {
  background: var(--teal); overflow: hidden;
  padding: .9rem 0; border-top: none;
  width: 100%;
}
.marquee-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: marquee 18s linear infinite;
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-item {
  padding: 0 3rem; font-size: .72rem; letter-spacing: .28em;
  text-transform: uppercase; color: white; font-weight: 400;
  display: flex; align-items: center; gap: .8rem; flex-shrink: 0;
  word-spacing: 0.5em;
}
.marquee-dot { width: 4px; height: 4px; background: rgba(255,255,255,.5); border-radius: 50%; }
.marquee-star { margin-left: .25rem; opacity: .9; }


#products { padding: 4rem 4rem 2rem; }
.products-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.products-title-group { min-width: 0; }
.products-eyebrow {
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: #000; font-weight: 400; margin-bottom: .6rem;
}
.products-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); color: var(--teal); font-weight: 700; line-height: 1.1; }
.products-title .title-amp { font-style: normal; font-family: 'DM Sans', sans-serif; }
.products-title em { font-style: italic; color: var(--magenta); }
.filter-tabs {
  display: flex; gap: .5rem;
  flex-wrap: wrap;
}
.filter-tab {
  background: none; border: 1.5px solid var(--teal); cursor: pointer;
  padding: .5rem 1.6rem; font-family: 'DM Sans';
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal); transition: all .3s;
}
.filter-tab.active, .filter-tab:hover {
  background: var(--teal); color: white;
}

.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  width: 100%; min-width: 0;
}
.product-card {
  position: relative; cursor: pointer; transition: all .4s;
  min-width: 0;
}
.product-card:hover { transform: translateY(-8px); }
.product-image {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(14,31,31,.08);
}
.product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 1;
  padding: 0.3rem;
  box-sizing: border-box;
  transition: transform .35s ease;
}
.product-image:hover img { transform: scale(1.06); }
@media (hover: none) {
  .product-image:hover img { transform: none; }
  .product-card .product-quick { opacity: 1; }
}
.product-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,31,31,.8) 0%, transparent 55%);
  opacity: 0; transition: opacity .4s; z-index: 2;
  pointer-events: none;
}
.product-card:hover .product-image::after { opacity: 1; }
.product-emoji { font-size: 3.8rem; position: relative; z-index: 3; transition: transform .4s; }
.product-fallback { display: none; }
.product-fallback.show { display: block; }
.product-card:hover .product-emoji { transform: scale(1.12) rotate(-3deg); }
.product-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--magenta); color: var(--teal);
  font-size: .62rem; letter-spacing: .15em; text-transform: uppercase;
  padding: .3rem .8rem; z-index: 5;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 100%, 6px 100%);
}
.product-quick {
  position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%);
  background: var(--magenta); color: var(--teal); border: none; cursor: pointer;
  padding: .65rem 1.8rem; font-family: 'DM Sans'; font-size: .7rem;
  letter-spacing: .15em; text-transform: uppercase; white-space: nowrap;
  z-index: 10; opacity: 0; transition: opacity .3s;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
}
.product-card:hover .product-quick { opacity: 1; }
.product-info { padding: 0.75rem 0; }
.product-cat {
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: #000; margin-bottom: .25rem;
}


.products-view-all {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn-view-bracelets {
  background: var(--teal);
  color: white;
  border: 2px solid var(--teal);
}

.btn-view-bracelets:hover {
  background: transparent;
  color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(36,0,70,0.15);
}

.btn-view-posters {
  background: var(--magenta);
  color: var(--teal);
  border: 2px solid var(--magenta);
}

.btn-view-posters:hover {
  background: transparent;
  color: var(--magenta);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,193,7,0.2);
}

.btn-view-all::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;
}

.btn-view-all:hover::before {
  left: 100%;
}
.product-name {
  font-family: 'Playfair Display', serif; font-size: 1rem;
  color: var(--teal); margin-bottom: .3rem; font-weight: 700;
  word-wrap: break-word; overflow-wrap: break-word;
  line-height: 1.2;
}
.product-price { font-size: .8rem; color: #000; font-weight: 300; }
.product-price b { color: #000; font-weight: 600; }


.about-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #F8F5F2 0%, #EDE8E3 100%);
  text-align: center;
}
.about-content {
  max-width: 700px;
  margin: 0 auto;
}
.about-eyebrow {
  display: block;
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #C9A86C;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.about-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #5D6D7E;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.tag {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background: #fff;
  border: 1px solid rgba(201,168,108,0.3);
  border-radius: 50px;
  font-size: .85rem;
  color: #2C3E50;
  transition: all 0.3s ease;
}
.tag:hover {
  background: #C9A86C;
  color: #fff;
  border-color: #C9A86C;
  transform: translateY(-2px);
}


.split-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 2.5rem 0;
}
.split-left {
  background: var(--teal);
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.split-left::before {
  content: 'G';
  font-family: 'Playfair Display', serif;
  font-size: clamp(8rem, 22vw, 22rem);
  color: rgba(255,255,255,.04);
  position: absolute;
  top: -3rem;
  right: -2rem;
  line-height: 1;
  pointer-events: none;
  font-style: italic;
}
.split-tag {
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(248,245,242,.5);
  margin-bottom: 1.2rem;
}
.split-right .split-tag { color: rgba(255,255,255,.85); }
.split-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--off-white);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.split-title em { font-style: italic; color: var(--magenta-pale); }
.split-right .split-title { color: #fff; }
.split-right .split-title em { color: rgba(255,255,255,.9); }
.split-desc {
  font-size: .87rem;
  line-height: 1.8;
  color: rgba(248,245,242,.7);
  margin-bottom: 2.5rem;
  font-weight: 300;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.split-right .split-desc { color: rgba(255,255,255,.88); }
.split-right {
  background: var(--magenta);
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.split-right::before {
  content: 'P';
  font-family: 'Playfair Display', serif;
  font-size: clamp(8rem, 22vw, 22rem);
  color: rgba(255,255,255,.06);
  position: absolute;
  top: -3rem;
  right: -2rem;
  line-height: 1;
  pointer-events: none;
  font-style: italic;
}
.btn-white {
  background: white; color: var(--teal);
  padding: .85rem 2.2rem; border: 2px solid transparent;
  cursor: pointer;
  font-family: 'DM Sans'; font-size: .75rem; letter-spacing: .18em; text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
  transition: all .3s; display: inline-block; text-decoration: none; width: fit-content;
}
.split-left .btn-white:hover {
  background: var(--magenta);
  color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}
.split-right .btn-white:hover {
  background: var(--teal);
  color: var(--magenta);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.2); }
.btn-white-mag { color: var(--teal); }


.testimonials { padding: 5rem; }
.test-header { text-align: center; margin-bottom: 3rem; }
.test-eyebrow {
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: #000; margin-bottom: .6rem;
}
.test-title {
  font-family: 'Playfair Display', serif; font-size: 2.5rem;
  color: var(--teal); font-weight: 700;
}
.test-title em { font-style: italic; color: var(--magenta); }
.test-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  max-width: 1100px; margin: 0 auto;
}
.test-card {
  border: 1.5px solid rgba(32,94,95,.15); padding: 2.2rem;
  position: relative; transition: all .3s;
}
.test-card:hover {
  border-color: var(--magenta); transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(255,193,7,.12);
}
.test-quote-mark {
  font-family: 'Playfair Display', serif; font-size: 5rem;
  color: var(--magenta); line-height: .5; margin-bottom: 1rem;
  font-style: italic; opacity: .3;
}
.test-text {
  font-size: .9rem; line-height: 1.8; color: var(--dark); margin-bottom: 1.5rem; font-weight: 300;
}
.test-divider { width: 30px; height: 2px; background: var(--magenta); margin-bottom: 1rem; }
.test-author { font-size: .73rem; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); font-weight: 500; }
.test-location { font-size: .72rem; color: rgba(14,31,31,.45); margin-top: .2rem; }
.test-stars { color: var(--magenta); font-size: .9rem; margin-bottom: .8rem; }


.custom-order {
  padding: 5rem 5rem 4rem;
  background: var(--off-white);
  border-top: 1px solid rgba(32,94,95,.08);
}
.custom-inner {
  max-width: 620px;
  margin: 0 auto;
}
.custom-eyebrow {
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: #000; margin-bottom: .6rem;
}
.custom-title {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--teal); font-weight: 700; line-height: 1.15; margin-bottom: 1rem;
}
.custom-title em { font-style: italic; color: var(--magenta); }
.custom-desc {
  font-size: .9rem; line-height: 1.75; color: rgba(14,31,31,.7);
  margin-bottom: 2.2rem; font-weight: 300;
}
.custom-phone {
  text-align: center; padding: 3rem 2rem;
  background: linear-gradient(145deg, #fff 0%, #fcfaf8 100%);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(32,94,95,.08), 0 1px 3px rgba(32,94,95,.04);
  position: relative; overflow: hidden;
}
.custom-phone::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--magenta), var(--teal));
}
.custom-phone-icon {
  width: 48px; height: 48px; margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, var(--teal), #2d7a7b);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(32,94,95,.2);
}
.custom-phone-icon svg { width: 22px; height: 22px; stroke: #fff; }
.custom-phone-label {
  font-size: .7rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--teal); font-weight: 500; margin-bottom: 1.2rem;
}
.custom-phone-number-wrap {
  display: flex; align-items: center; justify-content: center; gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.custom-phone-ornament {
  display: block; width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--magenta), transparent);
  opacity: .4;
}
.custom-phone-link {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700;
  color: var(--magenta); text-decoration: none; letter-spacing: .03em;
  transition: color .3s; white-space: nowrap;
}
.custom-phone-link:hover { color: var(--teal); }
.custom-phone-info {
  font-size: .85rem; line-height: 1.6; color: rgba(14,31,31,.55);
  max-width: 340px; margin: 0 auto;
}


footer { background: #3a1460; padding: 4rem 5rem 2.5rem; }
footer .footer-grid { width: 100%; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; margin-bottom: 2rem; align-items: start;
  width: 100%;
}
footer .footer-grid .footer-socials-wrap { justify-self: end; grid-column: 1 / -1; }
.footer-brand { min-width: 0; }
.footer-info-contact {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
}
.footer-info-contact > div { min-width: 0; }
.footer-socials-wrap {
  display: flex; gap: .75rem; justify-content: flex-end; align-items: center;
  padding-bottom: 1rem; margin-bottom: 0;
}
.footer-social {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,193,7,.35);
  display: flex; align-items: center; justify-content: center;
  color: rgba(248,245,242,.75); text-decoration: none;
  transition: color .25s, background .25s, border-color .25s;
}
.footer-social:hover { background: var(--magenta); border-color: var(--magenta); color: var(--teal); }
.footer-social-icon { width: 20px; height: 20px; display: block; }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--off-white); margin-bottom: 1rem; font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-left: -0.35rem;
}
.footer-logo-wrap {
  display: inline-block;
  overflow: visible;
  width: auto;
  max-width: 260px;
  max-height: 2.5rem;
}
.footer-logo-img {
  display: block;
  height: 2.25rem;
  width: auto;
  max-width: none;
  margin-bottom: 1rem;
  object-fit: contain;
  object-position: left center;
}
.footer-logo-fallback { display: none; }
.footer-logo-fallback span { color: var(--magenta); font-style: italic; }
.footer-logo span { color: var(--magenta); font-style: italic; }
.footer-bio { font-size: .82rem; color: rgba(248,245,242,.5); line-height: 1.8; margin-bottom: 0; font-weight: 300; }
.footer-heading {
  font-size: .68rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--magenta); margin-bottom: 1.2rem; font-weight: 500;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a {
  font-size: .8rem; color: rgba(248,245,242,.5); text-decoration: none; transition: color .3s; font-weight: 300;
}
.footer-links a:hover { color: var(--off-white); }
.footer-bottom {
  border-top: 1px solid rgba(248,245,242,.12); padding-top: 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .72rem; color: rgba(248,245,242,.4); font-weight: 300;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom span { word-break: break-word; }
.footer-bottom a {
  color: rgba(248,245,242,.55); text-decoration: none; transition: color .25s;
}
.footer-bottom a:hover { color: var(--magenta); }


.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(14,31,31,.8);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
  backdrop-filter: blur(10px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--off-white); max-width: 980px; width: 92%;
  max-height: 88vh; overflow-y: auto;
  display: grid; grid-template-columns: 1fr 1.15fr;
  transform: scale(.94) translateY(20px); transition: transform .35s;
  position: relative;
  min-height: 0;
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-left {
  display: flex; align-items: center; justify-content: center;
  min-height: 360px; position: relative;
  background: #f4efe9 !important;
  overflow: hidden;
}
.modal-left::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
}
.modal-product-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; z-index: 1;
  padding: 0.5rem;
  box-sizing: border-box;
  transition: transform .35s ease;
}
.modal-left:hover .modal-product-img { transform: scale(1.03); }
@media (hover: none) {
  .modal-left:hover .modal-product-img { transform: none; }
}

.modal-img-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(36,0,70,.25);
  background: rgba(248,245,242,.88);
  backdrop-filter: blur(10px);
  color: var(--teal);
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .2s, border-color .2s;
}
.modal-img-prev { left: 12px; }
.modal-img-next { right: 12px; }
.modal-img-nav:hover { background: #fff; border-color: rgba(36,0,70,.4); transform: translateY(-50%) scale(1.05); }
.modal-emoji { font-size: 5rem; position: relative; z-index: 1; }


.modal-img-counter {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  z-index: 7; background: rgba(0,0,0,0.5); color: #fff;
  font-size: 0.75rem; font-weight: 500; padding: 3px 11px;
  border-radius: 999px; backdrop-filter: blur(6px);
  pointer-events: none;
}


.modal-thumb-strip {
  position: absolute; bottom: 10px; right: 10px;
  display: flex; gap: 5px; z-index: 7; padding: 6px 8px;
  background: rgba(0,0,0,0.3); border-radius: 10px;
  backdrop-filter: blur(6px); max-width: 80%; overflow-x: auto;
}
.modal-thumb {
  width: 44px; height: 44px; border-radius: 6px; overflow: hidden;
  cursor: pointer; flex-shrink: 0; border: 2px solid transparent;
  transition: border-color .2s, opacity .2s; opacity: 0.6;
}
.modal-thumb:hover { opacity: 1; }
.modal-thumb.thumb-active { border-color: #fff; opacity: 1; }
.modal-thumb img { width: 100%; height: 100%; object-fit: cover; }

.modal-right { padding: 2.8rem 2.5rem; }
.modal-cat { font-size: .63rem; letter-spacing: .25em; text-transform: uppercase; color: #000; margin-bottom: .5rem; }
.modal-title { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--teal); font-weight: 700; margin-bottom: .6rem; }
.modal-price { font-size: 1.7rem; color: #000; font-weight: 650; letter-spacing: 0.01em; }
.modal-desc { font-size: .86rem; line-height: 1.75; color: rgba(14,31,31,.65); margin-bottom: 1.25rem; font-weight: 300; }

.modal-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  display: grid;
  gap: 0.6rem;
}
.modal-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(14,31,31,.75);
}
.modal-bullet-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-top: 0.35rem;
  flex: 0 0 auto;
}
.modal-bullet-dot.dot-0 { background: var(--magenta); }
.modal-bullet-dot.dot-1 { background: var(--magenta); }
.modal-bullet-dot.dot-2 { background: var(--magenta); }

.modal-buy {
  display: grid;
  gap: 1rem;
  margin-top: 0.25rem;
}
.modal-qty-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.modal-qty-label {
  font-size: 0.78rem;
  color: rgba(14,31,31,.65);
}
.modal-qty-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(14,31,31,.18);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.modal-qty-btn {
  width: 40px;
  height: 38px;
  border: none;
  background: transparent;
  color: var(--teal);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}
.modal-qty-btn:hover { background: rgba(14,31,31,.04); }
.modal-qty-input {
  width: 56px;
  height: 38px;
  border: none;
  border-left: 1px solid rgba(14,31,31,.12);
  border-right: 1px solid rgba(14,31,31,.12);
  text-align: center;
  font-family: 'DM Sans';
  font-size: 0.9rem;
  color: #000;
  outline: none;
}
.modal-perks {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(14,31,31,.08);
}
.modal-perk {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(14,31,31,.55);
}
.modal-btn {
  width: 100%; background: var(--teal); color: white; border: none; cursor: pointer;
  padding: 1rem; font-family: 'DM Sans'; font-size: .76rem;
  letter-spacing: .2em; text-transform: uppercase; transition: background .3s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}
.modal-btn:hover { background: var(--teal-light); }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; color: rgba(14,31,31,.4); font-size: 1.2rem;
  cursor: pointer; z-index: 10; transition: color .3s;
}
.modal-close:hover { color: var(--magenta); }


.modal-variant {
  margin: 1rem 0 0.25rem;
}
.modal-variant-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(14,31,31,.5);
  margin-bottom: 0.6rem;
}
.modal-variant-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.modal-variant-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.6rem 1rem;
  border: 1.5px solid rgba(36,0,70,0.15);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.25s ease;
  min-width: 72px;
  text-align: center;
}
.modal-variant-btn:hover {
  border-color: var(--teal);
  background: rgba(36,0,70,0.03);
}
.modal-variant-btn.active {
  border-color: var(--teal);
  background: rgba(36,0,70,0.06);
  box-shadow: 0 0 0 2px rgba(36,0,70,0.12);
}
.modal-variant-btn .variant-size {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
}
.modal-variant-btn .variant-desc {
  font-size: 0.6rem;
  color: rgba(14,31,31,.45);
  letter-spacing: 0.02em;
}
.modal-variant-btn .variant-price {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
}
.modal-variant-btn .variant-format-icon {
  width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.modal-variant-btn .variant-format-icon svg {
  width: 20px; height: 20px; display: block; stroke: currentColor;
}
.modal-variant-btn .variant-format-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--teal);
}
.modal-variant-btn .variant-format-desc {
  font-size: 0.6rem;
  color: rgba(14,31,31,.45);
}


.modal-price {
  font-size: 1.7rem;
  color: #000;
  font-weight: 650;
  letter-spacing: 0.01em;
}


.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--teal); color: white;
  padding: .9rem 2rem; font-size: .8rem; letter-spacing: .08em;
  opacity: 0; transition: all .4s; z-index: 2000;
  border-left: 3px solid var(--magenta); min-width: 260px; max-width: calc(100vw - 2rem); text-align: center;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }


@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
.fu { animation: fadeUp .65s ease forwards; }
.fu2 { animation: fadeUp .65s .12s ease forwards; opacity:0; }
.fu3 { animation: fadeUp .65s .24s ease forwards; opacity:0; }
.fu4 { animation: fadeUp .65s .36s ease forwards; opacity:0; }


@media (min-width: 1400px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1200px) {
  nav { padding: 1.2rem 2.5rem; }
  .hero-content { padding: 3rem 2.5rem; }
  .hero-left { padding-right: 2rem; }
  #products { padding: 3.5rem 2.5rem 2rem; }
  footer { padding: 3.5rem 2.5rem 2rem; }
}
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-socials-wrap { justify-content: flex-end; }
}
@media (max-width: 768px) {
  nav { padding: 1.1rem 1.5rem; }
  .hero-content { padding: 2.5rem 1.5rem; }
  #products { padding: 3rem 1.5rem 1.5rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .split-left, .split-right { padding: 3.5rem 1.5rem; }
  .testimonials { padding: 3.5rem 1.5rem; }
  .custom-order { padding: 3.5rem 1.5rem 3rem; }
  footer { padding: 3rem 1.5rem 1.5rem; }
  .about-section { padding: 4rem 1.5rem; }
  .about-title { font-size: 1.6rem; }
  .about-text { font-size: 1rem; }
  .tag { padding: 0.5rem 1.2rem; font-size: .8rem; }
  .cart-page { padding: 2.5rem 1.5rem 3rem; }
  .cart-layout { gap: 1.5rem; }
}
@media (max-width: 900px) {
  nav {
    padding: 0.9rem 1.25rem;
    flex-wrap: nowrap;
    gap: 0.75rem;
  }
  nav.scrolled {
    padding: 0.75rem 1.25rem;
  }
  .nav-logo {
    flex-shrink: 0;
    min-width: 0;
    font-size: 1.5rem;
  }
  .nav-logo-img {
    height: 1.75rem;
  }
  .nav-right {
    flex-shrink: 0;
    gap: 0.75rem;
  }
  .nav-cart {
    padding: 0.5rem 0.75rem;
    font-size: 0;
  }
  .nav-cart-label {
    display: none;
  }
  .nav-cart-icon {
    width: 20px;
    height: 20px;
    font-size: 1.1rem;
  }
  .nav-cart {
    padding: 0.4rem 0.6rem;
    border-width: 2px;
    gap: 0.3rem;
  }
  .cart-count {
    min-width: 32px;
    height: 28px;
    font-size: 0.8rem;
    padding: 0 0.6rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    position: static;
  }
  .nav-menu-btn {
    display: flex;
    width: 40px;
    height: 40px;
  }
  .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    background: rgba(248,245,242,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 0;
    gap: 0;
    border-bottom: 1px solid rgba(36,0,70,0.1);
    box-shadow: 0 20px 40px rgba(36,0,70,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
  }
  body.nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 500px;
    padding: 1rem 0;
  }
  .nav-links li {
    border-bottom: 1px solid rgba(36,0,70,0.06);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
  }
  body.nav-open .nav-links li {
    opacity: 1;
    transform: translateX(0);
  }
  body.nav-open .nav-links li:nth-child(1) { transition-delay: 0.05s; }
  body.nav-open .nav-links li:nth-child(2) { transition-delay: 0.1s; }
  body.nav-open .nav-links li:nth-child(3) { transition-delay: 0.15s; }
  body.nav-open .nav-links li:nth-child(4) { transition-delay: 0.2s; }
  body.nav-open .nav-links li:nth-child(5) { transition-delay: 0.25s; }
  body.nav-open .nav-links li:nth-child(6) { transition-delay: 0.3s; }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
  }
  .nav-links a::before {
    display: none;
  }
  .nav-links a:hover {
    background: rgba(255,193,7,0.08);
    color: var(--teal);
  }
  .hero { padding-top: 70px; }
  .hero-bg { clip-path: none; }
  .hero-decoration { display: none; }
  .hero-sparkle { width: 3px; height: 3px; }
  .hero-content { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2rem; text-align: center; }
  .hero-left { padding-right: 0; }
  .hero-eyebrow { margin-bottom: 1.5rem; font-size: 0.65rem; }
  .hero-eyebrow {
    font-size: 0.65rem;
    padding: 0.5rem 1rem;
  }
  .hero-stats {
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
  }
  .hero-stat {
    align-items: center;
  }
  .hero-stat-number { font-size: 1.5rem; }
  .hero-stat-label { font-size: 0.6rem; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); margin-bottom: 1rem; }
  .hero-btns { justify-content: center; flex-wrap: wrap; gap: 1rem; }
  .btn-mag, .btn-ghost { padding: 0.9rem 1.8rem; font-size: 0.75rem; }
  .hero-right { display: none; }
  #products { padding: 4rem 1.25rem 2rem; }
  .products-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .filter-tabs { flex-wrap: wrap; }
  .about-section { padding: 2.5rem 1.25rem; }
  .about-intro-strip { margin-bottom: 2.5rem; padding: 0 1.25rem; }
  .about-outro-strip { margin-top: 2.5rem; margin-bottom: 1.25rem; }
  .about-frame { padding: 2.5rem 1.5rem; }
  .about-title { margin-bottom: 1.25rem; }
  .about-lead { font-size: 1.05rem; }
  .about-divider { margin-bottom: 1.5rem; }
  .split-promo { grid-template-columns: 1fr; }
  .split-left, .split-right { padding: 3rem 1.5rem; text-align: center; }
  .split-left .btn-white, .split-right .btn-white { margin: 0 auto; }
  .testimonials { padding: 3rem 1.25rem; }
  .test-grid { grid-template-columns: 1fr; max-width: 100%; }
  .custom-order { padding: 4rem 1.25rem 3rem; }
  .custom-row { grid-template-columns: 1fr; }
  footer { padding: 3rem 1.25rem 1.5rem; }
  .footer-info-contact { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .footer-info-contact { flex-wrap: wrap; justify-content: flex-start; }
    .modal { grid-template-columns: 1fr; max-height: 90vh; overflow-y: auto; }
  .modal-left { min-height: 240px; }
  .modal-right { padding: 2rem 1.5rem; }
}
@media (max-width: 600px) {
  nav { padding: .9rem 1rem; }
  .nav-logo { font-size: 1.6rem; }
  .hero { min-height: auto; padding-top: 70px; padding-bottom: 2rem; }
  .hero-bg { clip-path: none; }
  .hero-content { min-height: auto; padding: 1.5rem 1rem; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); margin-bottom: 1.2rem; }
  .hero-desc { font-size: .85rem; margin-bottom: 1.8rem; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn-mag, .hero-btns .btn-ghost { width: 100%; text-align: center; }
  .marquee-item { padding: 0 1.5rem; font-size: .65rem; }
  #products { padding: 2.5rem 1rem 1.5rem; }
  .products-title { font-size: 1.5rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .product-info { padding: 0.5rem 0; }
  .product-name { font-size: 0.9rem; }
  .split-promo { margin: 2rem 0; }
  .split-left, .split-right { padding: 2rem 1rem; }
  .about-section { padding: 3rem 1rem; }
  .about-title { font-size: 1.4rem; }
  .about-text { font-size: 0.95rem; margin-bottom: 2rem; }
  .about-tags { gap: 0.75rem; }
  .tag { padding: 0.45rem 1rem; font-size: 0.75rem; }
  .split-title { font-size: 1.75rem; }
  .testimonials { padding: 2rem 1rem; }
  .test-header { margin-bottom: 2rem; }
  .test-title { font-size: 1.9rem; }
  .test-card { padding: 1.5rem; }
  .custom-order { padding: 2.5rem 1rem 2rem; }
  .custom-title { font-size: 1.6rem; }
  footer { padding: 2rem 1rem 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .footer-socials-wrap { justify-content: center; }
  .footer-bottom { font-size: .7rem; }
  .modal { width: 95%; max-width: 100%; max-height: 90vh; overflow-y: auto; }
  .modal-left { min-height: 200px; }
  .modal-right { padding: 1.25rem 1rem; }
  .modal-close { top: 0.75rem; right: 0.75rem; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
  .modal-emoji { font-size: 3.5rem; }
  .modal-title { font-size: 1.5rem; }
  .toast { min-width: 90%; width: 90%; max-width: calc(100vw - 2rem); left: 50%; transform: translateX(-50%) translateY(80px); bottom: 1rem; }
  .toast.show { transform: translateX(-50%) translateY(0); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; min-width: 0; }
  .gallery-page { padding: 2rem 1rem 3rem; }
  .cart-page { padding: 2rem 1rem 3rem; }
  .cart-section { padding: 1rem; }
  .cart-item { flex-direction: column; align-items: flex-start; }
  .cart-item-right { width: 100%; justify-content: space-between; }
  .checkout-input, .custom-form input, .custom-form textarea, .custom-select, .poster-order-form input, .poster-order-form select, .poster-order-form textarea { font-size: 16px; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; gap: 1rem; }
}
@media (max-width: 380px) {
  .nav-cart-label { padding: .45rem .65rem; font-size: .65rem; }
  .cart-count { min-width: 36px; height: 30px; font-size: .8rem; padding: 0 .65rem; }
  .nav-cart-icon { width: 40px; height: 40px; font-size: 1.3rem; }
  .hero-title { font-size: 2rem; }
  .products-title { font-size: 1.5rem; }
  .filter-tab { padding: .4rem 1rem; font-size: .65rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .split-left, .split-right { padding: 1.5rem 0.75rem; }
  .test-quote-mark { font-size: 3.5rem; }
}


.page-cart { padding-top: 80px; min-height: 100vh; background: var(--off-white); }
.cart-page { max-width: 1100px; margin: 0 auto; padding: 3rem 2rem 4rem; width: 100%; min-width: 0; }
.cart-header { text-align: center; margin-bottom: 2.5rem; }
.cart-title {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--teal); font-weight: 700; margin-bottom: .5rem;
}
.cart-desc { font-size: .95rem; color: var(--teal-dark); font-weight: 300; }
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; align-items: start; width: 100%; min-width: 0; }
.cart-section { background: #fff; border-radius: 12px; padding: 1.5rem; box-shadow: 0 4px 20px rgba(0,0,0,.06); border: 1px solid rgba(36,0,70,.08); }
.cart-empty {
  text-align: center; padding: 3rem 2rem;
  font-size: 1rem; color: var(--teal-dark);
}
.btn-cart-back {
  display: inline-block; margin-top: 1rem;
  background: var(--teal); color: #fff; padding: .65rem 1.5rem;
  border-radius: 6px; text-decoration: none; font-size: .8rem; font-weight: 500;
  transition: background .25s;
}
.btn-cart-back:hover { background: var(--teal-light); }
.cart-list { list-style: none; }
.cart-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0; border-bottom: 1px solid rgba(36,0,70,.08);
  gap: 1rem; flex-wrap: wrap;
  cursor: pointer;
}
.cart-item-link {
  display: flex; align-items: center; gap: 1rem; flex: 1; min-width: 0;
  color: inherit; text-decoration: none;
  cursor: pointer;
}
.cart-item-link:hover { color: inherit; }
.cart-item-right { cursor: default; }
.cart-item-remove { cursor: pointer; }
.cart-item-thumb {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 6px; overflow: hidden;
  background: var(--magenta-pale);
  display: flex; align-items: center; justify-content: center;
}
.cart-item-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.cart-item-thumb .cart-item-no-img {
  font-size: 1.5rem; color: rgba(36,0,70,.25);
  align-items: center; justify-content: center;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-info { display: flex; flex-direction: column; gap: .2rem; min-width: 0; flex: 1; }
.cart-item-type { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: #000; font-weight: 500; }
.cart-item-name { font-weight: 600; color: var(--teal); font-size: 1rem; }
.cart-item-qty { font-size: .8rem; color: rgba(26,0,51,.6); }
.cart-item-variant { display: inline-block; font-size: .7rem; color: var(--magenta); margin-left: .3rem; font-weight: 500; }
.cart-item-right { display: flex; align-items: center; gap: .75rem; }
.cart-item-price { font-weight: 700; color: var(--teal); font-size: 1rem; }
.cart-item-remove {
  width: 44px; height: 44px; border: 1px solid rgba(36,0,70,.2);
  background: none; color: var(--teal); font-size: 1.4rem; line-height: 1;
  cursor: pointer; border-radius: 6px; display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.cart-item-remove:hover { background: var(--teal); color: #fff; }
.checkout-aside { position: sticky; top: 100px; }
.checkout-form {
  background: #fff; border-radius: 12px; padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.06); border: 1px solid rgba(36,0,70,.08);
}
.checkout-title {
  font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--teal);
  font-weight: 700; margin-bottom: 1.25rem;
}
.checkout-label { display: block; font-size: .72rem; font-weight: 500; color: var(--teal); margin-bottom: .35rem; }
.checkout-input {
  width: 100%; padding: .65rem .85rem; margin-bottom: 1rem;
  min-width: 0;
  border: 1.5px solid rgba(36,0,70,.2); border-radius: 6px;
  font-family: 'DM Sans'; font-size: .9rem; color: var(--teal-dark);
  transition: border-color .2s;
}
.checkout-input:focus { outline: none; border-color: var(--teal); }
.checkout-textarea { resize: vertical; min-height: 60px; }
.checkout-total-wrap {
  display: flex; justify-content: space-between; align-items: center;
  margin: 1.25rem 0; padding-top: 1rem; border-top: 2px solid rgba(36,0,70,.12);
  font-size: 1.1rem;
}
.checkout-total-label { font-weight: 500; color: var(--teal); }
.checkout-total { font-weight: 700; font-size: 1.35rem; color: var(--teal); }
.checkout-btn {
  width: 100%; padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--magenta), var(--magenta-light));
  color: var(--teal); border: none; position: relative; overflow: hidden;
  font-family: 'DM Sans'; font-size: .85rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; border-radius: 12px; transition: transform .25s, box-shadow .25s;
  box-shadow: 0 4px 16px rgba(255,193,7,.35);
}
.checkout-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--magenta-light), var(--magenta));
  opacity: 0; transition: opacity .3s; border-radius: 12px;
}
.checkout-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,193,7,.5); }
.checkout-btn:hover:not(:disabled)::before { opacity: 1; }
.checkout-btn:active:not(:disabled) { transform: translateY(0); }
.checkout-btn:disabled { opacity: .5; cursor: not-allowed; filter: grayscale(.6); }
.checkout-btn span { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; gap: .5rem; }


.cart-continue {
  display: flex; margin-top: 2rem; padding: 1.75rem 1.5rem;
  border-top: 1px solid rgba(36,0,70,.08);
  border-bottom: 1px solid rgba(36,0,70,.08);
  flex-direction: column; align-items: center; gap: .85rem;
}
.cart-continue-label {
  font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(36,0,70,.45); font-weight: 600;
}
.cart-continue-links { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; }
.cart-continue-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .6rem 1.4rem;
  background: #fff; border: 1.5px solid var(--teal); border-radius: 8px;
  color: var(--teal); font-size: .78rem; font-weight: 600; text-decoration: none;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 1px 3px rgba(36,0,70,.06);
}
.cart-continue-btn:hover {
  background: var(--teal); color: #fff; border-color: var(--teal);
  box-shadow: 0 4px 12px rgba(36,0,70,.15); transform: translateY(-1px);
}


.cart-featured {
  margin-top: 1.5rem; padding: 1.5rem 0;
}
.cart-featured-title {
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  color: var(--teal); font-weight: 700; margin-bottom: 1.1rem;
  letter-spacing: -.01em;
}
.cart-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(170px,100%),1fr));
  gap: .85rem;
}
.cart-featured-item {
  display: flex; flex-direction: column;
  background: #fff; border-radius: 10px; overflow: hidden;
  text-decoration: none; color: inherit;
  border: 1px solid rgba(36,0,70,.07);
  transition: all .3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 1px 4px rgba(36,0,70,.04);
}
.cart-featured-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(36,0,70,.1), 0 2px 6px rgba(36,0,70,.06);
  border-color: rgba(36,0,70,.12);
}
.cart-featured-img {
  width: 100%; aspect-ratio: 1; overflow: hidden;
  background: var(--magenta-pale);
  display: flex; align-items: center; justify-content: center;
}
.cart-featured-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.cart-featured-item:hover .cart-featured-img img { transform: scale(1.06); }
.cart-featured-info {
  padding: .6rem .7rem .7rem;
  display: flex; flex-direction: column; gap: .2rem;
}
.cart-featured-type {
  font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(36,0,70,.4); font-weight: 500;
}
.cart-featured-name {
  font-size: .78rem; font-weight: 600; color: var(--teal);
  line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.cart-featured-price {
  font-size: .82rem; font-weight: 700; color: var(--teal-dark);
  margin-top: .1rem;
}


.cart-info-box {
  margin-top: 1rem; background: var(--magenta-pale);
  border-radius: 10px; padding: 1.1rem 1.25rem;
  border: 1px solid rgba(36,0,70,.05);
}
.cart-info-title {
  display: flex; align-items: center; gap: .45rem;
  font-family: 'Playfair Display', serif; font-size: .95rem;
  color: var(--teal); font-weight: 700; margin-bottom: .65rem;
}
.cart-info-title svg { color: var(--magenta); flex-shrink: 0; }
.cart-info-list { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.cart-info-list li {
  display: flex; align-items: flex-start; gap: .4rem;
  font-size: .73rem; color: var(--teal-dark); line-height: 1.45;
}
.cart-info-list li svg { color: var(--magenta); flex-shrink: 0; margin-top: .15rem; }
.cart-info-list a { color: var(--magenta); text-decoration: underline; }

@media (max-width: 900px) {
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-aside { position: static; }
}


.page-gallery { padding-top: 80px; min-height: 100vh; }
.gallery-page { padding: 3rem 2rem 4rem; max-width: 1400px; margin: 0 auto; }
.gallery-header { text-align: center; margin-bottom: 3rem; }
.gallery-eyebrow {
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: #000; margin-bottom: .5rem;
}
.gallery-title {
  font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--teal); font-weight: 700; margin-bottom: .6rem;
}
.gallery-desc { font-size: .95rem; color: var(--teal-dark); font-weight: 300; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
  gap: 1.25rem;
  width: 100%;
  min-width: 0;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--magenta-pale);
  aspect-ratio: 1;
  box-shadow: 0 4px 20px rgba(32,94,95,.08);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.placeholder { background: var(--teal); }
.gallery-item.placeholder::after {
  content: '★';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,.3);
}
.nav-active { color: var(--magenta) !important; font-weight: 500; }


.page-inner { padding-top: 80px; min-height: 100vh; background: var(--off-white); }
.inner-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  width: 100%;
  min-width: 0;
}
.inner-page-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.inner-page-eyebrow {
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: .5rem;
}
.inner-page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--teal);
  font-weight: 700;
  margin-bottom: .5rem;
}
.inner-page-desc {
  font-size: .95rem;
  color: rgba(26,0,51,.7);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
}
.inner-page-content {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  border: 1px solid rgba(36,0,70,.06);
}
.inner-page-block {
  margin-bottom: 2rem;
}
.inner-page-block:last-child { margin-bottom: 0; }
.inner-page-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 1rem;
}
.inner-page-block p,
.inner-page-block li {
  font-size: .95rem;
  line-height: 1.8;
  color: rgba(26,0,51,.8);
  margin-bottom: .85rem;
  font-weight: 300;
}
.inner-page-block ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: .85rem;
}
.inner-page-block li { margin-bottom: .4rem; }
.inner-page-block a {
  color: var(--teal);
  text-decoration: underline;
}
.inner-page-block a:hover { color: var(--magenta); }


.review-form { display: flex; flex-direction: column; gap: 1.25rem; }
.review-row { display: flex; flex-direction: column; gap: .35rem; }
.review-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
}
.review-input,
.review-textarea {
  width: 100%;
  min-width: 0;
  padding: .85rem 1.1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  border: 1.5px solid rgba(36,0,70,.2);
  background: #fff;
  color: var(--dark);
  border-radius: 4px;
  transition: border-color .25s;
}
.review-input:focus,
.review-textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.review-textarea { resize: vertical; min-height: 120px; }
.review-stars {
  display: flex;
  gap: .25rem;
  font-size: 1.75rem;
  color: rgba(36,0,70,.2);
}
.review-star {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color .2s;
}
.review-star:hover,
.review-star.active { color: var(--magenta); }
.review-btn {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
  margin-top: .5rem;
}
.review-btn:hover { background: var(--teal-light); }

@media (max-width: 600px) {
  .inner-page { padding: 2rem 1rem 3rem; }
  .inner-page-content { padding: 1.5rem 1.25rem; }
}


.size-guide {
  background: linear-gradient(135deg, var(--off-white) 0%, #fff 50%, var(--magenta-pale) 100%);
  padding: 4rem 5rem;
  border-top: 1px solid rgba(36,0,70,0.08);
}
.size-guide-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.size-guide-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.size-guide-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 1rem;
  font-weight: 700;
}
.size-guide-intro {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(26,0,51,0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-weight: 400;
}
.size-guide-table-wrap {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(36,0,70,0.08);
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(36,0,70,0.06);
}
.size-guide-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}
.size-guide-table thead {
  background: var(--teal);
}
.size-guide-table th {
  color: #fff;
  font-weight: 600;
  padding: 1.1rem 1rem;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.size-guide-table td {
  padding: 1rem;
  text-align: center;
  color: var(--dark);
  border-bottom: 1px solid rgba(36,0,70,0.06);
  font-weight: 400;
}
.size-guide-table tbody tr:last-child td {
  border-bottom: none;
}
.size-guide-table tbody tr:nth-child(even) {
  background: rgba(255,193,7,0.04);
}
.size-guide-table tbody tr:hover {
  background: rgba(36,0,70,0.03);
}
.size-guide-note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(255,193,7,0.12);
  border-left: 3px solid var(--magenta);
  padding: 1.25rem 1.5rem;
  border-radius: 0 8px 8px 0;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}
.size-guide-icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.size-guide-icon svg {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 1px 2px rgba(201, 168, 108, 0.3));
}
.size-guide-note-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark);
  margin: 0;
}
.size-guide-note-text strong {
  color: var(--teal);
}


.footer-sizing-notice {
  background: linear-gradient(135deg, rgba(36,0,70,0.03) 0%, rgba(255,193,7,0.06) 100%);
  border-top: 1px solid rgba(36,0,70,0.08);
  border-bottom: 1px solid rgba(36,0,70,0.08);
  padding: 1.5rem 5rem;
  margin: 0 -5rem;
}
.footer-sizing-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--teal);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 500;
}

@media (max-width: 768px) {
  .size-guide {
    padding: 2.5rem 1.5rem;
  }
  .size-guide-title {
    font-size: 1.5rem;
  }
  .size-guide-table th,
  .size-guide-table td {
    padding: 0.75rem 0.5rem;
    font-size: 12px;
  }
  .size-guide-note {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  .size-guide-icon {
    margin: 0 auto;
  }
  .footer-sizing-notice {
    padding: 1.25rem 1.5rem;
    margin: 0 -1.5rem;
  }
  .footer-sizing-text {
    font-size: 13px;
  }
}


.product-card.out-of-stock {
  cursor: not-allowed;
}
.product-card.out-of-stock .product-image {
  position: relative;
}
.product-card.out-of-stock .product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(36,0,70,0.15);
  pointer-events: none;
}
.out-of-stock-badge {
  background: #9e9e9e !important;
  color: #fff !important;
}
.out-of-stock-btn {
  background: rgba(158,158,158,0.9) !important;
  color: #fff !important;
  cursor: not-allowed !important;
  pointer-events: none;
}
.out-of-stock-name {
  color: #757575 !important;
}


.poster-order {
  background: linear-gradient(135deg, var(--off-white) 0%, #fff 50%, rgba(36,0,70,0.03) 100%);
  padding: 4rem 5rem;
  border-top: 1px solid rgba(36,0,70,0.08);
}
.poster-order-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.poster-order-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.poster-order-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.poster-order-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(26,0,51,0.8);
  margin-bottom: 2rem;
}
.poster-order-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(36,0,70,0.06);
}
.poster-order-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 600px) {
  .poster-order-row {
    grid-template-columns: 1fr;
  }
}
.poster-order-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.poster-order-field.full-width {
  grid-column: 1 / -1;
}
.poster-order-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.poster-order-input,
.poster-order-select,
.poster-order-textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(36,0,70,0.15);
  border-radius: 8px;
  background: #fff;
  color: var(--dark);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.poster-order-input:focus,
.poster-order-select:focus,
.poster-order-textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(36,0,70,0.06);
}
.poster-order-textarea {
  resize: vertical;
  min-height: 100px;
}
.poster-order-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23240046'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.poster-order-submit {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 1.1rem 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.25s, transform 0.2s;
  margin-top: 0.5rem;
}
.poster-order-submit:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
}
.poster-order-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: rgba(26,0,51,0.7);
  text-align: center;
  margin-top: 1rem;
}
.poster-order-note strong {
  color: var(--teal);
}

@media (max-width: 768px) {
  .poster-order {
    padding: 2.5rem 1.5rem;
  }
  .poster-order-form {
    padding: 1.5rem;
  }
  .poster-order-title {
    font-size: 1.5rem;
  }
}


.faq {
  background: var(--off-white);
  padding: 4rem 5rem;
  border-top: 1px solid rgba(36,0,70,0.08);
}
.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}
.faq-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7a5a00;
  margin-bottom: 0.75rem;
  font-weight: 600;
  text-align: center;
}
.faq-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 2.5rem;
  font-weight: 700;
  text-align: center;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px rgba(36,0,70,0.04);
  overflow: hidden;
  border: 1px solid rgba(36,0,70,0.06);
}
.faq-question {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--teal);
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.25s;
}
.faq-question:hover {
  background: rgba(36,0,70,0.02);
}
.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--magenta);
  font-weight: 400;
  transition: transform 0.3s;
}
.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(26,0,51,0.8);
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

@media (max-width: 768px) {
  .faq {
    padding: 2.5rem 1.5rem;
  }
  .faq-title {
    font-size: 1.5rem;
  }
}

:root {
  --footer-bg: linear-gradient(145deg, #1a0a2e 0%, #240046 30%, #1a3a3e 70%, #0d3b4a 100%);
  --footer-glow: rgba(201, 168, 108, 0.15);
  --footer-accent: #c9a86c;
  --footer-text: rgba(255, 255, 255, 0.85);
  --footer-text-muted: rgba(255, 255, 255, 0.6);
}


.footer-wave {
  position: relative;
  width: 100%;
  height: 80px;
  overflow: hidden;
  background: var(--off-white);
}

.footer-wave svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80px;
  fill: #1a0a2e;
}

.footer-wave path {
  animation: waveMove 8s ease-in-out infinite;
}

@keyframes waveMove {
  0%, 100% { d: path("M0,40 C150,80 350,0 500,40 C650,80 850,0 1000,40 L1000,100 L0,100 Z"); }
  50% { d: path("M0,40 C150,0 350,80 500,40 C650,0 850,80 1000,40 L1000,100 L0,100 Z"); }
}


#contact {
  background: var(--footer-bg);
  position: relative;
  overflow: hidden;
  padding: 0;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--footer-accent), transparent);
  animation: shimmerPulse 4s ease-in-out infinite;
}

@keyframes shimmerPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}


#contact::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(201, 168, 108, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(158, 0, 142, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(0, 128, 128, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 5rem 2rem;
  position: relative;
  z-index: 1;
}


.footer-grid-new {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}


.footer-brand-new {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo-new {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer-logo-new:hover {
  transform: scale(1.02);
}


.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
}

.footer-logo-new:hover .footer-logo-img {
  filter: drop-shadow(0 4px 15px rgba(201, 168, 108, 0.4));
  transform: scale(1.05);
}

.footer-logo-fallback {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
  display: none;
}

.footer-logo-fallback span {
  background: linear-gradient(135deg, var(--footer-accent), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.footer-logo-img[style*="display: none"] + .footer-logo-fallback,
.footer-logo-img:not([src]) + .footer-logo-fallback {
  display: block;
}

.footer-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--footer-text);
  max-width: 280px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--footer-text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact-item:hover {
  color: var(--footer-accent);
  transform: translateX(5px);
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(201, 168, 108, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
  background: var(--footer-accent);
  transform: rotate(5deg) scale(1.1);
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--footer-accent);
  transition: fill 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon svg {
  fill: white;
}


.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-column-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--footer-accent);
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-column-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--footer-accent), transparent);
  transition: width 0.3s ease;
}

.footer-column:hover .footer-column-title::after {
  width: 50px;
}

.footer-links-new {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-new a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--footer-text-muted);
  text-decoration: none;
  position: relative;
  padding-left: 0;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links-new a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--footer-accent);
}

.footer-links-new a:hover {
  color: white;
  padding-left: 20px;
}

.footer-links-new a:hover::before {
  left: 0;
  opacity: 1;
}


.footer-newsletter {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 108, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.footer-newsletter-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: white;
  margin-bottom: 0.5rem;
}

.footer-newsletter-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: var(--footer-text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.footer-newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 108, 0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: white;
  outline: none;
  transition: all 0.3s ease;
}

.footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter-input:focus {
  border-color: var(--footer-accent);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(201, 168, 108, 0.1);
}

.footer-newsletter-btn {
  background: linear-gradient(135deg, var(--magenta), var(--teal));
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-newsletter-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(158, 0, 142, 0.4);
}

.footer-newsletter-btn svg {
  width: 18px;
  height: 18px;
  fill: white;
}


.footer-social-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.footer-social-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: white;
}

.footer-social-title span {
  color: var(--footer-accent);
}

.footer-social-icons {
  display: flex;
  gap: 1rem;
}

.footer-social-new {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.footer-social-new::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--magenta), var(--teal));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-social-new:hover {
  transform: translateY(-5px) scale(1.1);
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(158, 0, 142, 0.3);
}

.footer-social-new:hover::before {
  opacity: 1;
}

.footer-social-new svg {
  width: 20px;
  height: 20px;
  fill: white;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.footer-social-new:hover svg {
  transform: scale(1.2);
}


.footer-bottom-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--footer-text-muted);
}

.footer-copyright strong {
  color: var(--footer-accent);
  font-weight: 600;
}

.footer-made-with {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--footer-text-muted);
}

.footer-heart {
  display: inline-block;
  animation: heartbeat 1.5s ease-in-out infinite;
  color: var(--magenta);
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.1); }
  50% { transform: scale(1); }
  75% { transform: scale(1.15); }
}

.footer-made-with a {
  color: var(--footer-accent);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.footer-made-with a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--footer-accent);
  transition: width 0.3s ease;
}

.footer-made-with a:hover {
  color: white;
}

.footer-made-with a:hover::after {
  width: 100%;
}


@media (max-width: 1024px) {
  .footer-grid-new {
  grid-template-columns: 1fr 1.8fr;
    gap: 2rem;
  }
  
  .footer-brand-new {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 3rem 1.5rem 2rem;
  }
  
  .footer-grid-new {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-social-section {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-bottom-new {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-newsletter-form {
    flex-direction: column;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}


.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.stagger-children.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children.revealed > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-children.revealed > *:nth-child(8) { transition-delay: 0.4s; }
.stagger-children.revealed > * { opacity: 1; transform: translateY(0); }


.counter-visible .hero-stat-number,
.counter-visible .stat-number {
  animation: countPop 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes countPop {
  0% { transform: scale(0.6); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}


.premium-link {
  position: relative;
  text-decoration: none;
}
.premium-link::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: currentColor;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.premium-link:hover::after { width: 100%; }


.img-reveal {
  position: relative;
  overflow: hidden;
}
.img-reveal::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--teal);
  z-index: 2;
  transform: translateX(0);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.img-reveal.revealed::before {
  transform: translateX(100%);
}


.glow-card {
  position: relative;
  isolation: isolate;
}
.glow-card::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--magenta), var(--teal-light), var(--magenta));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.glow-card:hover::before { opacity: 1; }


@keyframes heroFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.02); }
}
.hero-image-wrapper {
  animation: heroFloat 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}


.section-accent {
  position: relative;
}
.section-accent::after {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--magenta), var(--teal-light));
  border-radius: 2px;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}
.section-accent.revealed::after { width: 80px; }


@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale,
  .stagger-children > * {
    opacity: 1; transform: none;
    transition: none;
  }
  .hero-image-wrapper { animation: none; }
  .img-reveal::before { display: none; }
  .glow-card::before { display: none; }
  .section-accent::after { display: none; }
}


.gdpr-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(14,31,31,.95); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0; transform: translateY(100%); transition: transform .4s cubic-bezier(.22,1,.36,1);
  border-top: 2px solid rgba(255,255,255,.06);
}
.gdpr-banner.gdpr-visible { transform: translateY(0); }
.gdpr-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
  padding: 1.25rem 2rem;
}
.gdpr-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--magenta), #c0848a);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.gdpr-icon svg { width: 18px; height: 18px; stroke: #fff; }
.gdpr-text { flex: 1; min-width: 0; }
.gdpr-text p {
  font-size: .8rem; line-height: 1.5; color: rgba(255,255,255,.75);
  margin: 0;
}
.gdpr-text a { color: var(--magenta); text-decoration: underline; text-underline-offset: 2px; }
.gdpr-btn {
  flex-shrink: 0;
  background: #fff; color: var(--dark); border: none;
  padding: 0.7rem 1.75rem; border-radius: 8px;
  font-family: 'Montserrat', sans-serif; font-size: .8rem; font-weight: 600;
  cursor: pointer; transition: all .25s; white-space: nowrap;
}
.gdpr-btn:hover { background: var(--magenta); color: #fff; }


.order-popup { display: none; position: fixed; inset: 0; z-index: 999; align-items: center; justify-content: center; }
.order-popup.order-popup-open { display: flex; }
.order-popup-overlay { position: absolute; inset: 0; background: rgba(10,0,30,.65); backdrop-filter: blur(8px); }
.order-popup-content {
  position: relative; background: linear-gradient(160deg, #1a0533 0%, #2d0a4f 30%, #1a0a30 60%, #0d0420 100%);
  border-radius: 24px; padding: 3rem 2.5rem 2.5rem; max-width: 420px;
  width: calc(100% - 2rem); text-align: center;
  box-shadow:
    0 0 40px rgba(200,140,255,.15),
    0 0 80px rgba(255,193,7,.08),
    0 25px 60px rgba(0,0,0,.5);
  animation: orderPopupIn .6s cubic-bezier(.16,1,.3,1) forwards;
  border: 1px solid rgba(200,140,255,.15);
  overflow: hidden;
}
.order-popup-content::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,193,7,.06) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(200,140,255,.08) 0%, transparent 50%);
  pointer-events: none;
}
@keyframes orderPopupIn {
  from { opacity: 0; transform: translateY(40px) scale(.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
/* animated sparkles */
.order-popup-sparkle { position: absolute; width: 6px; height: 6px; border-radius: 50%; pointer-events: none; opacity: 0; }
.order-popup-sparkle::after { content: ''; position: absolute; inset: -8px; background: radial-gradient(circle, currentColor 0%, transparent 70%); }
.s1 { top: 12%; left: 15%; background: var(--magenta); box-shadow: 0 0 8px var(--magenta); animation: sparkleFloat 3s ease-in-out 0s infinite; }
.s2 { top: 25%; right: 12%; background: #c88cff; box-shadow: 0 0 10px #c88cff; animation: sparkleFloat 3.5s ease-in-out .5s infinite; }
.s3 { bottom: 30%; left: 10%; background: var(--magenta-light); box-shadow: 0 0 8px var(--magenta-light); animation: sparkleFloat 4s ease-in-out 1s infinite; }
.s4 { bottom: 15%; right: 18%; background: #ff80bf; box-shadow: 0 0 6px #ff80bf; animation: sparkleFloat 2.8s ease-in-out .8s infinite; }
.s5 { top: 50%; left: 50%; width: 10px; height: 10px; background: #fff; box-shadow: 0 0 20px rgba(255,255,255,.4); animation: sparklePulse 2s ease-in-out .3s infinite; }
@keyframes sparkleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(.5); }
  25% { opacity: .8; }
  50% { opacity: .6; transform: translateY(-12px) scale(1); }
  75% { opacity: .3; }
}
@keyframes sparklePulse {
  0%, 100% { opacity: 0; transform: scale(.3); }
  30% { opacity: .9; transform: scale(1.2); }
  60% { opacity: .4; transform: scale(.7); }
}
/* icon with animated ring */
.order-popup-icon-wrap { position: relative; width: 80px; height: 80px; margin: 0 auto 1.5rem; }
.order-popup-icon-ring {
  position: absolute; inset: -8px; border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--magenta), #c88cff, #ff80bf, var(--magenta)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: ringSpin 3s linear infinite;
}
@keyframes ringSpin { to { transform: rotate(360deg); } }
.order-popup-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta), #c88cff);
  display: flex; align-items: center; justify-content: center;
  color: #fff; position: relative; z-index: 1;
  box-shadow: 0 0 30px rgba(255,193,7,.25), inset 0 0 20px rgba(255,255,255,.1);
}
.order-popup-icon svg { width: 36px; height: 36px; filter: drop-shadow(0 2px 4px rgba(0,0,0,.2)); }
/* title */
.order-popup-title {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--magenta-light) 40%, #fff 70%, var(--magenta) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 3s ease-in-out infinite;
  margin-bottom: .75rem; letter-spacing: .02em;
}
@keyframes shimmerText { 0%,100% { background-position: 0% center; } 50% { background-position: 100% center; } }
.order-popup-text {
  font-size: .95rem; color: rgba(255,255,255,.65); line-height: 1.6;
  margin-bottom: 1.25rem; font-weight: 300; max-width: 320px; margin-left: auto; margin-right: auto;
}
/* glowing divider */
.order-popup-divider {
  width: 60px; height: 2px; margin: 0 auto 1.5rem;
  background: linear-gradient(90deg, transparent, var(--magenta), #c88cff, transparent);
  border-radius: 2px; box-shadow: 0 0 12px rgba(255,193,7,.3);
}
/* buttons */
.order-popup-btns { display: flex; flex-direction: column; gap: .7rem; }
.order-popup-btn {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.5rem; border-radius: 12px; font-size: .85rem; font-weight: 600;
  text-decoration: none; text-align: center; cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.order-popup-btn-primary {
  background: linear-gradient(135deg, var(--magenta), var(--magenta-light));
  color: var(--teal); box-shadow: 0 4px 16px rgba(255,193,7,.25);
  border: 1px solid rgba(255,255,255,.1);
}
.order-popup-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,193,7,.4); }
.order-popup-btn-outline {
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.1);
}
.order-popup-btn-outline:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.2); }

@media (max-width: 640px) {
  .gdpr-inner { flex-direction: column; gap: 1rem; padding: 1rem 1.25rem; text-align: center; }
  .gdpr-icon { display: none; }
  .gdpr-btn { width: 100%; }
}
