/* =============================================
   Lingerie By GK — Modern White E-Commerce
   ============================================= */

:root {
  --crimson: #9B0E22;
  --crimson-dark: #7A0B1B;
  --crimson-light: #FDF2F4;
  --gold: #B8943F;
  --gold-light: #D4AF6A;
  --black: #111111;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;
  --text-light: #999999;
  --white: #FFFFFF;
  --bg: #FFFFFF;
  --bg-soft: #F8F8F8;
  --bg-muted: #F2F2F2;
  --border: #EBEBEB;
  --border-dark: #DDDDDD;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.08);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.35s var(--ease);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --header-h: 68px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.loading {
  overflow: hidden;
}

::selection {
  background: var(--crimson-light);
  color: var(--crimson);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Preloader ---- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 1s cubic-bezier(0.4,0,0.2,1), visibility 1s;
}

/* Full-bleed background photo */
.preloader-bg {
  position: absolute;
  inset: 0;
  background: url('../images/loading jpg.png') center 25% / cover no-repeat;
  transform: scale(1.06);
  animation: preloaderZoom 5s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}

@keyframes preloaderZoom {
  from { transform: scale(1.10); filter: blur(4px); }
  to   { transform: scale(1.00); filter: blur(0); }
}

/* Multi-layer dark overlay */
.preloader-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(80,5,25,0.25) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.75) 100%);
}

/* Floating particles */
.preloader-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.preloader-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0%   { transform: translateY(110vh) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-10vh) translateX(20px); opacity: 0; }
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Centred card */
.preloader-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 48px 40px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
  animation: preloaderCardIn 0.9s cubic-bezier(0.34,1.56,0.64,1) both;
  min-width: 260px;
}

@keyframes preloaderCardIn {
  from { opacity: 0; transform: translateY(30px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Logo circle with rotating ring */
.preloader-logo-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-logo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: rgba(212,175,85,0.9);
  border-right-color: rgba(212,175,85,0.4);
  animation: ringRotate 2s linear infinite;
}
.preloader-logo-ring::after {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
}

@keyframes ringRotate {
  to { transform: rotate(360deg); }
}

/* Logo image — transparent PNG, show as-is */
.preloader-logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.25));
}

/* Text */
.preloader-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: preloaderFadeUp 0.8s 0.3s cubic-bezier(0.4,0,0.2,1) both;
}

.preloader-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
}

.preloader-tagline {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Progress bar */
.preloader-bar {
  width: 180px;
  height: 2px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  overflow: hidden;
  animation: preloaderFadeUp 1s 0.4s cubic-bezier(0.4,0,0.2,1) both;
}

.preloader-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(212,175,85,0.6), #d4af55, rgba(255,255,255,0.9));
  border-radius: 2px;
  transition: width 0.2s ease;
  box-shadow: 0 0 8px rgba(212,175,85,0.6);
}

/* Percentage counter */
.preloader-percent {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  animation: preloaderFadeUp 1s 0.5s cubic-bezier(0.4,0,0.2,1) both;
}

@keyframes preloaderFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.site {
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.site.visible {
  opacity: 1;
}

/* ---- Logo ---- */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-logo--preloader {
  width: 90px;
  height: 90px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.15);
}

.brand-logo--header {
  width: 52px;
  height: 52px;
}

.brand-logo--footer {
  width: 44px;
  height: 44px;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.logo-tag {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}

.logo--footer .logo-name {
  font-size: 1rem;
}

/* ---- Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Announcement ---- */
.announcement-bar {
  background: var(--black);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
}

/* ---- Header ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--crimson);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--text);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: var(--transition);
}

.cart-btn:hover {
  background: var(--bg-soft);
  color: var(--crimson);
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--crimson);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 600;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: var(--transition);
}

.cart-count.visible {
  opacity: 1;
  transform: scale(1);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}

.nav-close,
.nav-logo,
.nav-backdrop,
.nav-drawer {
  display: none;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-primary:hover {
  background: var(--crimson);
  border-color: var(--crimson);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-dark);
}

.btn-ghost:hover {
  border-color: var(--text);
  background: var(--bg-soft);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-dark);
}

.btn-outline:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 720px;
  animation: heroFadeIn 1s var(--ease) forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  line-height: 1.7;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.btn-hero:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Pulsing glow ring around the Shop Now button */
.btn-pulse::before,
.btn-pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.6);
  animation: btnPulse 2s ease-out infinite;
  pointer-events: none;
}
.btn-pulse::after {
  animation-delay: 0.9s;
}

@keyframes btnPulse {
  0%   { transform: scale(1);    opacity: 0.7; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* Hero logo */
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  animation: heroLogoFade 1.2s ease both;
}

.hero-logo {
  display: block;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.5));
}

@keyframes heroLogoFade {
  from { opacity: 0; transform: translateY(-16px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.hero-scroll:hover {
  color: var(--white);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
  animation: scrollPulse 2.5s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.section-desc {
  max-width: 480px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ---- Collection ---- */
.collection {
  padding: 100px 0;
  background: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-muted);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.6s var(--ease);
}

.product-image-wrap img.secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-card:hover .product-image-wrap img.primary {
  opacity: 0;
  transform: scale(1.04);
}

.product-card:hover .product-image-wrap img.secondary {
  opacity: 1;
}

.product-card:hover .product-image-wrap img:only-child {
  opacity: 1;
  transform: scale(1.04);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  transition: var(--transition);
  z-index: 3;
  cursor: pointer;
}

.product-card:hover .product-card-overlay {
  background: rgba(255, 255, 255, 0.1);
}

.view-btn {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.product-card:hover .view-btn {
  opacity: 1;
  transform: translateY(0);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--white);
  color: var(--text);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.product-badge:empty,
.product-info .product-badge {
  display: none;
}

.product-info {
  padding: 18px 16px 20px;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.product-color {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.product-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

/* Product card action buttons */
.product-actions {
  display: flex;
  gap: 8px;
}

.btn-buy-now {
  flex: 1;
  padding: 11px 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--crimson);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.btn-buy-now:hover {
  background: #a8001a;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(190,0,30,0.3);
}

.btn-view-details {
  flex: 1;
  padding: 11px 16px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.btn-view-details:hover {
  border-color: var(--black);
  color: var(--text);
}

/* ---- Card Swiper ---- */
.card-swiper {
  position: absolute;
  inset: 0;
}

.card-swiper-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.card-swiper-slide.active {
  opacity: 1;
}

.card-swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-swiper-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 3;
}

.card-swiper-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.card-swiper-dot.active {
  background: var(--white);
  width: 16px;
  border-radius: 3px;
}

/* ---- Client Insights Video ---- */
.insights {
  padding: 80px 0;
  background: var(--white);
}

.insights-video-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  background: #000;
  aspect-ratio: 9 / 16;
}

@media (min-width: 600px) {
  .insights-video-wrap { aspect-ratio: 16 / 9; }
}

.insights-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.insights-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.insights-overlay.playing {
  background: transparent;
}

.insights-overlay.playing .insights-play-btn,
.insights-overlay.playing .insights-play-label {
  opacity: 0;
  pointer-events: none;
}

.insights-overlay:hover:not(.playing) {
  background: rgba(0,0,0,0.45);
}

.insights-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
  animation: playPulse 2.5s ease-in-out infinite;
}

.insights-play-btn:hover {
  background: rgba(255,255,255,0.25);
  transform: scale(1.1);
}

@keyframes playPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
  50%       { box-shadow: 0 0 0 16px rgba(255,255,255,0); }
}

.insights-play-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: opacity 0.3s;
}

/* ---- Features ---- */
.features {
  padding: 80px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature {
  text-align: center;
  padding: 32px 24px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--crimson);
}

.feature h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}

.feature p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- About ---- */
.about {
  padding: 100px 0;
  background: var(--crimson);
  color: var(--white);
}

.about-wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about .section-label {
  color: rgba(255,255,255,0.7);
}

.about-content .section-title {
  margin-bottom: 16px;
  color: var(--white);
}

.about-quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: #fff;
  margin-bottom: 22px;
}

.about-content p {
  color: rgba(255,255,255,0.86);
  margin-bottom: 16px;
  font-size: 0.98rem;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 36px 0 24px;
}

.about-stat {
  padding: 22px 12px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
}

.about-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.about-stat span {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.about-shipping {
  margin: 0 0 28px;
  padding: 20px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.18);
}

.about-shipping strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.about .shipping-tags span {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}

.about .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}

.about .btn-outline:hover {
  background: var(--white);
  color: var(--crimson);
  border-color: var(--white);
}

.about-ig {
  margin-top: 4px;
}

.shipping-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.shipping-tags span {
  font-size: 0.82rem;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
}

/* ---- Instagram Live Feed ---- */
.ig-feed {
  padding: 80px 0 20px;
  background: var(--bg, #fafafa);
}

.ig-card {
  max-width: 720px;
  margin: 0 auto;
  background: #111;
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.18);
}

.ig-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 22px 12px;
}

.ig-avatar-ring {
  flex-shrink: 0;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
}

.ig-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #111;
  background: #3a0610;
}

.ig-user-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.05rem;
}

.ig-verified {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #3897f0;
  color: #fff;
  font-size: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.ig-stats {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}

.ig-stats b {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.ig-bio {
  padding: 4px 22px 16px;
  font-size: 0.86rem;
  line-height: 1.5;
}

.ig-name { font-weight: 600; }
.ig-cat { color: rgba(255,255,255,0.5); font-size: 0.78rem; margin-bottom: 6px; }

.ig-follow-btn {
  display: block;
  margin: 0 22px 18px;
  text-align: center;
  background: #3897f0;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  transition: background 0.2s;
}

.ig-follow-btn:hover { background: #2d7fd0; color: #fff; }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.ig-cell {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #1a1a1a;
}

.ig-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ig-cell:hover img { transform: scale(1.06); }

.ig-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
  font-size: 12px;
}

.ig-icon-pin { font-size: 13px; }

@media (max-width: 600px) {
  .ig-header { gap: 14px; padding: 20px 16px 10px; }
  .ig-avatar-ring { width: 72px; height: 72px; }
  .ig-stats { gap: 12px; }
  .ig-bio, .ig-follow-btn { margin-left: 16px; margin-right: 16px; }
  .ig-bio { padding-left: 16px; padding-right: 16px; }
}

/* ---- Contact ---- */
.contact {
  padding: 100px 0;
  background: var(--bg-soft);
}

.contact-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.contact-form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: var(--transition);
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-light);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04);
}

/* ---- Footer ---- */
.footer {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-light);
}

.footer-powered {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: -16px;
}

.footer-powered a {
  color: var(--crimson);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.footer-powered a:hover {
  color: var(--black);
}

/* ---- Modal ---- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 920px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  transform: scale(0.96) translateY(12px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.modal.open .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.modal-close:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.modal-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-gallery {
  background: var(--bg-muted);
}

.product-swiper {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.swiper-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}

.swiper-slide.active {
  opacity: 1;
  z-index: 1;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  opacity: 0;
}

.product-swiper:hover .swiper-nav {
  opacity: 1;
}

.swiper-nav:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.swiper-prev { left: 12px; }
.swiper-next { right: 12px; }

.swiper-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

.swiper-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: var(--transition);
}

.swiper-dot.active {
  background: var(--white);
  width: 24px;
  border-radius: 4px;
}

.swiper-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(0, 0, 0, 0.06);
  z-index: 5;
}

.swiper-progress-bar {
  height: 100%;
  background: var(--crimson);
  width: 0%;
  transition: width 0.1s linear;
}

.swiper-counter {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text);
  background: var(--white);
  padding: 5px 12px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  padding: 12px;
  background: var(--bg-soft);
}

.gallery-thumb {
  flex: 1;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.5;
  transition: var(--transition);
}

.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: var(--black);
  opacity: 1;
}

.modal-details {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  max-height: 90vh;
}

.modal-details h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text);
}

.modal-details .product-color {
  margin-bottom: 16px;
}

.modal-price {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.size-selector {
  margin-bottom: 28px;
}

.size-selector label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--text);
}

.size-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.size-option {
  min-width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
}

.size-option:hover,
.size-option.selected {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

/* Modal action buttons */
.modal-details .btn-full + .btn-full {
  margin-top: 10px;
}

.btn-share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

/* ---- Cart ---- */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  visibility: hidden;
}

.cart-drawer.open {
  visibility: visible;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: var(--transition);
}

.cart-drawer.open .cart-backdrop {
  opacity: 1;
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100%;
  height: 100%;
  background: var(--white);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.cart-drawer.open .cart-panel {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}

.cart-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cart-close:hover {
  background: var(--bg-soft);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item img {
  width: 72px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--bg-muted);
}

.cart-item-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 2px;
}

.cart-item-meta {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-bottom: 6px;
}

.cart-item-price {
  font-size: 0.9rem;
  font-weight: 600;
}

.cart-item-remove {
  font-size: 0.68rem;
  color: var(--text-light);
  margin-top: 6px;
  display: inline-block;
  transition: var(--transition);
}

.cart-item-remove:hover {
  color: var(--crimson);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.qty-btn:hover {
  border-color: var(--black);
  background: var(--bg-soft);
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.cart-total span:last-child {
  font-size: 1.2rem;
  font-weight: 600;
}

#continueShopBtn {
  margin-bottom: 10px;
}

/* ---- Toast ---- */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--black);
  color: var(--white);
  padding: 14px 28px;
  font-size: 0.82rem;
  font-weight: 500;
  z-index: 400;
  opacity: 0;
  transition: var(--transition);
  border-radius: 100px;
  box-shadow: var(--shadow-lg);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .brand-logo--header {
    width: 44px;
    height: 44px;
  }

  .logo-tag {
    display: none;
  }

  .nav-desktop {
    display: none;
  }

  .nav-drawer {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(82vw, 320px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    padding: 88px 28px 32px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 220;
    box-shadow: -12px 0 40px rgba(0,0,0,0.12);
  }

  .nav-drawer.open {
    transform: translateX(0);
  }

  .nav-drawer .nav-link {
    font-size: 1.05rem;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav-drawer .nav-link::after {
    display: none;
  }

  .nav-close,
  .nav-logo {
    display: block;
  }

  .nav-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 20px;
  }

  .nav-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--text);
    cursor: pointer;
  }

  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 210;
  }

  .nav-backdrop.open {
    display: block;
  }

  .menu-toggle {
    display: flex;
    z-index: 230;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .modal-product {
    grid-template-columns: 1fr;
  }

  .modal {
    align-items: flex-start;
    padding: 12px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .modal-content {
    max-height: none;
    margin: 32px 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .modal-gallery {
    position: sticky;
    top: 0;
    z-index: 1;
  }

  .modal-details {
    padding: 28px 24px;
    max-height: none;
    overflow: visible;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .cart-panel {
    width: 100%;
  }

  .swiper-nav {
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 2.4rem;
  }
}

/* ---- Language Switch ---- */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 6px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
  background: var(--white);
}

.lang-switch:hover {
  border-color: var(--black);
  color: var(--text);
}

.lang-active {
  color: var(--text);
  font-weight: 700;
}

.lang-sep {
  color: var(--border-dark);
  font-weight: 300;
}

.lang-other {
  color: var(--text-light);
}

/* ---- 3 Product Grid ---- */
.product-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.product-subtitle {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

/* ---- Cart COD ---- */
.cart-cod-note {
  font-size: 0.78rem;
  color: var(--crimson);
  background: var(--crimson-light);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  line-height: 1.5;
}

/* ---- Mobile Checkout Bar ---- */
.mobile-checkout-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
}

.mobile-checkout-bar.visible {
  display: flex;
}

.mobile-checkout-bar span {
  display: block;
  font-size: 0.68rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mobile-checkout-bar strong {
  font-size: 1.05rem;
}

body.has-mobile-bar {
  padding-bottom: 84px;
}

/* ---- Checkout Page ---- */
.checkout-page {
  padding: 32px 0 100px;
  background: var(--bg-soft);
  min-height: calc(100vh - 120px);
}

.checkout-wrap {
  max-width: 960px;
}

.checkout-back {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.checkout-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}

.checkout-note {
  margin-bottom: 24px;
  color: var(--text-muted);
}

.checkout-note strong {
  color: var(--crimson);
}

.checkout-shipping-warning {
  margin: 0 0 24px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff7f8;
  border: 1px solid rgba(190, 0, 30, 0.14);
  color: var(--text);
}

.checkout-shipping-warning strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--crimson);
}

.checkout-shipping-warning p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.checkout-errors {
  background: #fff4f4;
  border: 1px solid #f3c2c2;
  color: #9b1c1c;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.checkout-empty {
  text-align: center;
  padding: 48px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 20px;
  align-items: start;
}

.checkout-summary,
.checkout-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.checkout-summary h2,
.checkout-form h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.checkout-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checkout-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.checkout-item img {
  width: 64px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--bg-muted);
}

.checkout-item strong {
  display: block;
  font-size: 0.92rem;
}

.checkout-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.checkout-item em {
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  font-size: 1rem;
}

.checkout-total-row strong {
  font-size: 1.25rem;
}

.checkout-continue {
  margin-top: 16px;
}

.checkout-more {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  text-align: left;
}

.checkout-more h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.checkout-more p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.checkout-more-list {
  display: grid;
  gap: 10px;
}

.checkout-more-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: inherit;
}

.checkout-more-item img {
  width: 52px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.checkout-more-item strong {
  display: block;
  font-size: 0.88rem;
}

.checkout-more-item span {
  font-size: 0.8rem;
  color: var(--crimson);
}

.checkout-form {
  order: -1;
}

.checkout-form label {
  display: block;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
}

.checkout-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 12px;
}

.checkout-country {
  margin-bottom: 16px;
  font-size: 0.82rem;
  font-weight: 500;
}

.checkout-country > span {
  display: block;
  margin-bottom: 8px;
}

.country-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.country-pick {
  padding: 6px 12px;
  border: none;
  border-radius: 100px;
  background: var(--bg-soft);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-muted);
  cursor: pointer;
}

.country-pick.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.checkout-note-toggle {
  display: block;
  width: 100%;
  margin: 4px 0 14px;
  padding: 0;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-align: left;
  cursor: pointer;
}

.checkout-notes { display: none; }
.checkout-notes.open { display: block; }

.checkout-cod-line {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 4px 0 14px;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 14px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 1rem;
  background: var(--white);
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04);
}

.checkout-cod {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin: 8px 0 18px;
}

.checkout-cod strong {
  display: block;
  margin-bottom: 2px;
}

.checkout-cod p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.checkout-submit {
  min-height: 52px;
  font-size: 0.9rem;
}

.success-page {
  padding: 60px 0;
  background: var(--bg-soft);
  min-height: calc(100vh - 120px);
}

.success-wrap {
  max-width: 560px;
}

.success-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #ecfdf3;
  color: #15803d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.success-card h1 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 10px;
}

.success-total,
.success-note {
  color: var(--text-muted);
  margin: 10px 0;
}

.success-card .btn {
  margin-top: 18px;
}

.success-card .btn-outline {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .product-grid--three {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .checkout-row {
    grid-template-columns: 1fr;
  }

  .checkout-body.has-mobile-bar {
    padding-bottom: 24px;
  }

  body.has-mobile-bar {
    padding-bottom: 92px;
  }
}

@media (min-width: 769px) {
  .mobile-checkout-bar {
    display: none !important;
  }
}
