/* ============================================
   UNCONQUERED — styles.css
   Brand: Streetwear + Sportswear
   Dark Mode, High-Energy Industrial Aesthetic
   ============================================ */

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg-base:      #0b0b0c;
  --bg-surface:   #121212;
  --bg-card:      #181818;
  --bg-overlay:   #1e1e1e;
  --text-primary: #f5f5f5;
  --text-muted:   #888888;
  --text-faint:   #444444;
  --accent-blue:  #1d6aff;
  --accent-blue-glow: rgba(29, 106, 255, 0.35);
  --accent-crimson: #dc2626;
  --accent-orange: #f97316;
  --accent-orange-glow: rgba(249, 115, 22, 0.3);
  --border-subtle: rgba(255,255,255,0.07);
  --border-glow:   rgba(29,106,255,0.4);
  --nav-height:   72px;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow-blue: 0 0 30px rgba(29, 106, 255, 0.25);
  --shadow-glow-orange: 0 0 30px rgba(249, 115, 22, 0.2);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.6);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: 'Barlow', 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ---------- Typography ---------- */
.font-condensed { font-family: 'Barlow Condensed', sans-serif; }

h1, h2, h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.92;
}

/* ---------- Utility Classes ---------- */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 64px 0; }

.tag-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: rgba(29,106,255,0.12);
  border: 1px solid rgba(29,106,255,0.3);
  padding: 5px 12px;
  border-radius: 4px;
}

.tag-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent-blue);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
}

.badge-blue { background: var(--accent-blue); color: #fff; }
.badge-orange { background: var(--accent-orange); color: #fff; }
.badge-crimson { background: var(--accent-crimson); color: #fff; }
.badge-white { background: #fff; color: #000; }
.badge-outline { background: transparent; border: 1px solid rgba(255,255,255,0.25); color: var(--text-muted); }

.text-glow-blue { text-shadow: 0 0 30px rgba(29,106,255,0.6); }
.text-glow-orange { text-shadow: 0 0 30px rgba(249,115,22,0.5); }
.text-accent-blue { color: var(--accent-blue); }
.text-accent-orange { color: var(--accent-orange); }
.text-muted { color: var(--text-muted); }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-blue); }

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(11, 11, 12, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-subtle);
}

.nav-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  
  
}

.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent-blue);
  transition: width 0.25s ease;
}

.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}

.cart-btn:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow-blue);
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: var(--accent-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border-radius: 50%;
  animation: cart-pop 0.3s ease;
}

@keyframes cart-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger-btn span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(11,11,12,0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: color 0.2s;
}

.mobile-nav-link:hover { color: #fff; }

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-bottom: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.4) saturate(0.8);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11,11,12,0.1) 0%,
    rgba(11,11,12,0.3) 40%,
    rgba(11,11,12,0.85) 80%,
    rgba(11,11,12,1) 100%
  );
  z-index: 1;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(29,106,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,106,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-divider {
  width: 40px; height: 1px;
  background: var(--accent-blue);
}

.hero-headline {
  font-family: 'Victory Striker Sans', 'Victory Striker', 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(64px, 10vw, 140px);
  text-transform: uppercase;
  line-height: 0.88;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-headline .line-accent {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.35);
}

.hero-headline .line-glow {
  color: var(--accent-blue);
  text-shadow: 0 0 60px rgba(29,106,255,0.4);
}

.hero-sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.6;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--accent-blue);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid var(--accent-blue);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  background: #3a7fff;
  border-color: #3a7fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29,106,255,0.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.hero-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  background: var(--accent-orange);
  border-radius: 50%;
  margin-left: 8px;
}

.hero-badge span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}

.hero-badge strong {
  font-size: 15px;
  font-weight: 900;
  color: #fff;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: var(--text-faint);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
  animation: scroll-drop 2s ease-in-out infinite;
}

@keyframes scroll-drop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   TICKER / MARQUEE
   ============================================ */
.ticker-wrap {
  background: var(--accent-blue);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}

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

.ticker-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  white-space: nowrap;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.ticker-dot {
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   DROPS SECTION
   ============================================ */
#drops {
  background: var(--bg-base);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}

.section-title {
  font-size: clamp(44px, 6vw, 80px);
  color: #fff;
  line-height: 0.9;
}

.section-sub {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.6;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab:hover { color: #fff; border-color: rgba(255,255,255,0.25); }
.filter-tab.active {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #fff;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}

.product-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.product-card.sold-out {
  opacity: 0.6;
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #111;
}

.product-img-front,
.product-img-back {
  position: absolute;
  inset: 0;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.product-img-back {
  opacity: 0;
  transform: scale(1.04);
}

.product-card:hover .product-img-front {
  opacity: 0;
  transform: scale(1.04);
}

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

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

.product-badge-wrap {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
}

.product-hover-actions {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  display: flex;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.product-card:hover .product-hover-actions {
  opacity: 1;
  transform: translateY(0);
}

.btn-add-cart {
  flex: 1;
  padding: 11px 14px;
  background: var(--accent-blue);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.btn-add-cart:hover {
  background: #3a7fff;
  transform: scale(1.02);
}

.btn-quick-view {
  padding: 11px 14px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.btn-quick-view:hover { background: rgba(255,255,255,0.15); }

.product-info {
  padding: 18px 18px 20px;
  border-top: 1px solid var(--border-subtle);
}

.product-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 4px;
}

.product-category {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
}

.product-sizes {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.size-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.hover-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.hover-hint svg { opacity: 0.4; }

/* ============================================
   CULTURE / LOOKBOOK SECTION
   ============================================ */
#culture {
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.culture-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(100px, 18vw, 260px);
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255,255,255,0.02);
  letter-spacing: -0.04em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.culture-inner {
  position: relative;
  z-index: 1;
}

.culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 16px;
  margin-top: 56px;
}

.culture-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.culture-card:first-child {
  grid-row: span 2;
}

.culture-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.culture-card:first-child .culture-card-img {
  aspect-ratio: unset;
  height: 100%;
  min-height: 500px;
}

.culture-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: saturate(0.7);
}

.culture-card:hover img {
  transform: scale(1.04);
  filter: saturate(1);
}

.culture-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}

.culture-card-label {
  position: absolute;
  bottom: 20px; left: 20px;
}

.culture-card-label h3 {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.culture-card-label p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.culture-cta {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}

.culture-cta-text h2 {
  font-size: clamp(36px, 5vw, 64px);
  color: #fff;
  margin-bottom: 8px;
}

.culture-cta-text p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 380px;
  line-height: 1.7;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 39, 67, 0.4);
}

/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-subtle);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.cart-header h2 {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.06em;
}

.cart-close-btn {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
}

.cart-close-btn:hover { background: rgba(255,255,255,0.12); }

.cart-items-wrap {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px;
  text-align: center;
}

.cart-empty svg { opacity: 0.2; }

.cart-empty p {
  font-size: 15px;
  color: var(--text-muted);
}

.cart-empty-sub {
  font-size: 13px !important;
  color: var(--text-faint) !important;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  position: relative;
}

.cart-item-img {
  width: 72px;
  height: 88px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: #111;
}

.cart-item-details { flex: 1; }

.cart-item-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.cart-item-size {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cart-qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-btn {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
}

.qty-btn:hover { background: rgba(255,255,255,0.1); }

.qty-val {
  min-width: 32px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  border-left: 1px solid var(--border-subtle);
  border-right: 1px solid var(--border-subtle);
  line-height: 30px;
}

.cart-item-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: #fff;
}

.cart-item-remove {
  position: absolute;
  top: 12px; right: 12px;
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s;
  border: none;
  background: none;
}

.cart-item-remove:hover { color: var(--accent-crimson); }

.cart-footer {
  padding: 20px 24px 28px;
  border-top: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.cart-summary {
  margin-bottom: 20px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.cart-summary-row:not(:last-child) {
  border-bottom: 1px solid var(--border-subtle);
}

.cart-summary-label { font-size: 13px; color: var(--text-muted); }
.cart-summary-value { font-size: 13px; color: #fff; font-weight: 600; }

.cart-total-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
}

.cart-total-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--accent-blue);
}

.payment-methods {
  margin-bottom: 16px;
}

.payment-methods-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.payment-options {
  display: flex;
  gap: 8px;
}

.payment-opt {
  flex: 1;
  padding: 10px 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}

.payment-opt.active {
  background: rgba(29,106,255,0.12);
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

.payment-opt:hover { border-color: rgba(255,255,255,0.2); color: #fff; }

.btn-checkout {
  width: 100%;
  padding: 16px;
  background: var(--accent-blue);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.btn-checkout:hover {
  background: #3a7fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(29,106,255,0.4);
}

.btn-checkout:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.cart-note {
  text-align: center;
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.06em;
}

/* ============================================
   QUICK VIEW MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: scale(0.96) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0);
}

.modal-img-side {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #111;
}

.modal-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-img-toggle {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.img-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}

.img-dot.active { background: #fff; }

.modal-info-side {
  padding: 36px 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-close-btn {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.modal-close-btn:hover { background: rgba(255,255,255,0.16); }

.modal-product-name {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.modal-product-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--accent-blue);
}

.modal-colorway {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: -12px;
}

.modal-description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

.size-select-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: block;
}

.size-selector {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.size-option {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.size-option:hover { border-color: rgba(255,255,255,0.3); color: #fff; }

.size-option.selected {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #fff;
}

.modal-add-btn {
  width: 100%;
  padding: 16px;
  background: var(--accent-blue);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  margin-top: auto;
}

.modal-add-btn:hover {
  background: #3a7fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(29,106,255,0.4);
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast-wrap {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--bg-overlay);
  border: 1px solid rgba(29,106,255,0.4);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  animation: toast-in 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
}

.toast.hide { animation: toast-out 0.3s ease forwards; }

@keyframes toast-in {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes toast-out {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to { opacity: 0; transform: translateY(8px) scale(0.96); }
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: var(--bg-base);
  border-top: 1px solid var(--border-subtle);
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-brand-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand-mission {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 320px;
  margin-bottom: 28px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 16px;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.06em;
}

.footer-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-top > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }
  
  .nav-links { display: none; }
  .hamburger-btn { display: flex; }
  
  .hero-headline { font-size: clamp(48px, 13vw, 80px); }
  
  .section-header { flex-direction: column; align-items: flex-start; }
  .section-sub { max-width: 100%; }
  
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  
  .culture-grid { grid-template-columns: 1fr; }
  .culture-card:first-child { grid-row: span 1; }
  .culture-card:first-child .culture-card-img { min-height: 320px; }
  
  .culture-cta { padding: 28px 24px; flex-direction: column; }
  
  .modal-box { grid-template-columns: 1fr; max-height: 95vh; }
  .modal-img-side { max-height: 260px; }
  
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  
  .cart-sidebar { max-width: 100%; }

  /* About section responsive */
  .about-grid { grid-template-columns: 1fr !important; gap: 48px !important; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-name { font-size: 14px; }
  .product-price { font-size: 18px; }
  .product-info { padding: 12px 12px 14px; }
  
  .section-pad { padding: 72px 0; }
  .container { padding: 0 16px; }
}

/* ---------- Fade-in-up Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ══════════════════════════════════════════
   CHECKOUT MODAL STYLES
══════════════════════════════════════════ */
.checkout-modal-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  width: 100%;
  max-width: 920px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85);
}

.checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
}

.checkout-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
}

@media (max-width: 860px) {
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.checkout-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--accent-blue);
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ─── Form Grid System & Dark Inputs ─── */
.checkout-section .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.checkout-section .form-group.full-width {
  grid-column: 1 / -1;
}

.checkout-section .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

@media (max-width: 540px) {
  .checkout-section .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.checkout-section label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Softened Dark-Themed Input Fields */
.contact-input,
.checkout-modal-box input[type="text"],
.checkout-modal-box input[type="email"],
.checkout-modal-box input[type="tel"],
.checkout-modal-box textarea {
  width: 100%;
  padding: 13px 16px;
  background: #141416;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: 'Barlow', 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  outline: none;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
}

.contact-input::placeholder,
.checkout-modal-box input::placeholder,
.checkout-modal-box textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}

.contact-input:hover,
.checkout-modal-box input:hover,
.checkout-modal-box textarea:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: #17171a;
}

/* Glowing Blue Focus Ring for Active States */
.contact-input:focus,
.checkout-modal-box input:focus,
.checkout-modal-box textarea:focus {
  background: #18191d;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(29, 106, 255, 0.28), 0 0 16px rgba(29, 106, 255, 0.25);
}

/* ─── Payment & Summary Section ─── */
.checkout-summary-section {
  background: var(--bg-card);
  padding: 24px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.payment-method-selector {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

/* Interactive Payment UI Cards */
.checkout-pay-opt {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-sm);
  cursor: pointer;
  user-select: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.checkout-pay-opt input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  outline: none;
  margin: 0;
  flex-shrink: 0;
  display: grid;
  place-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.checkout-pay-opt input[type="radio"]::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  transform: scale(0);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.checkout-pay-opt input[type="radio"]:checked {
  border-color: var(--accent-blue);
  background: var(--accent-blue);
}

.checkout-pay-opt input[type="radio"]:checked::before {
  transform: scale(1);
}

.checkout-pay-opt:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.checkout-pay-opt.active {
  background: linear-gradient(135deg, rgba(29, 106, 255, 0.15) 0%, rgba(29, 106, 255, 0.05) 100%);
  border-color: var(--accent-blue);
  box-shadow: 0 0 24px rgba(29, 106, 255, 0.25), inset 0 0 0 1px rgba(29, 106, 255, 0.3);
}

/* Prominent COD Card Highlight */
.checkout-pay-opt[data-pay="cod"] {
  border-color: rgba(29, 106, 255, 0.25);
}

.checkout-pay-opt[data-pay="cod"].active {
  background: linear-gradient(135deg, rgba(29, 106, 255, 0.22) 0%, rgba(29, 106, 255, 0.08) 100%);
  border-color: var(--accent-blue);
  box-shadow: 0 0 30px rgba(29, 106, 255, 0.35), inset 0 0 0 1px rgba(29, 106, 255, 0.5);
}

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

.pay-info strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.pay-info span {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 1px;
}

.pay-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.cod-badge {
  background: var(--accent-blue);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(29, 106, 255, 0.4);
}

.checkout-order-items {
  max-height: 180px;
  overflow-y: auto;
  margin-bottom: 20px;
  padding-right: 4px;
  border-bottom: 1px solid var(--border-subtle);
}

.checkout-item-mini {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px dashed var(--border-subtle);
}

.checkout-item-mini:last-child {
  border-bottom: none;
}

.checkout-totals {
  margin-bottom: 20px;
}

.shipping-fee-text {
  color: var(--accent-crimson);
  font-weight: 700;
}

/* Shipping DM Reminder Notice */
.shipping-dm-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: hsl(43 90% 12% / 0.7);
  border: 1px solid hsl(43 80% 45%);
  border-radius: var(--radius-sm, 6px);
  padding: 12px 14px;
  margin-top: 10px;
  color: hsl(43 90% 72%);
  font-size: 13px;
  line-height: 1.5;
}

.shipping-dm-notice svg {
  flex-shrink: 0;
  margin-top: 1px;
  stroke: hsl(43 90% 72%);
}

.shipping-dm-notice a {
  color: hsl(43 90% 82%);
  text-decoration: underline;
}

/* High-Contrast Blue CTA Button with Drop Shadow */
.checkout-submit-btn {
  width: 100%;
  padding: 16px 24px;
  background: var(--accent-blue);
  color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(29, 106, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.checkout-submit-btn:hover {
  background: #3377ff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(29, 106, 255, 0.55);
}

.checkout-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(29, 106, 255, 0.35);
}

.checkout-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Receipt Modal */
/* ── Receipt modal — VIEWPORT FIX ───────────────────────────────── */
.receipt-modal-box {
  background: var(--bg-card);
  border: 1px solid hsla(225, 100%, 60%, 0.35);
  box-shadow: 0 0 0 1px hsla(225, 100%, 60%, 0.1), 0 24px 64px rgba(0,0,0,0.6);
  width: 100%;
  max-width: 520px;
  padding: 0;                    /* padding moved inside sections */
  text-align: center;
  position: relative;
  border-radius: 14px;
  /* ▼ THE FIX: constrain to viewport and scroll internally */
  max-height: 90vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: hsl(220 18% 28%) transparent;
}
.receipt-modal-box::-webkit-scrollbar { width: 4px; }
.receipt-modal-box::-webkit-scrollbar-track { background: transparent; }
.receipt-modal-box::-webkit-scrollbar-thumb {
  background: hsl(220 18% 28%);
  border-radius: 4px;
}

/* Header — sticky at top so title is always visible while scrolling */
.receipt-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg-card);
  padding: 28px 32px 16px;
  border-bottom: 1px solid hsl(220 18% 16%);
  text-align: center;
}

/* All scrollable content below header */
.receipt-modal-box > *:not(.receipt-header) {
  padding-left: 32px;
  padding-right: 32px;
}
.receipt-modal-box > .order-num-block  { margin-top: 24px; }
.receipt-modal-box > .receipt-steps    { margin-top: 16px; }
.receipt-modal-box > .receipt-payment-details { margin-top: 20px; }
.receipt-modal-box > .receipt-warning  { margin-top: 16px; }
.receipt-modal-box > .receipt-details  { margin-top: 16px; }
.receipt-modal-box > .receipt-dm-section { margin-top: 20px; padding-bottom: 28px; }

/* ── Receipt header elements ─────────────────────────────────────── */
.receipt-icon {
  font-size: 36px;
  margin-bottom: 8px;
}

.receipt-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.receipt-subtitle {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 0;
}
.receipt-subtitle strong { color: var(--accent-blue); }

/* ── Order summary block ─────────────────────────────────────────── */
.receipt-details {
  background: hsl(220 18% 10%);
  border: 1px solid hsl(220 18% 20%);
  padding: 18px;
  text-align: left;
  border-radius: 8px;
  margin-bottom: 0;
  font-size: 13px;
}

/* Row labels — bumped from muted grey to readable secondary */
.receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
  color: hsl(220 12% 68%);   /* was var(--text-muted) — bumped for legibility */
  font-size: 13px;
  line-height: 1.5;
}
.receipt-row:last-child { margin-bottom: 0; }

.receipt-row strong {
  color: var(--text-primary);
  font-weight: 600;
  text-align: right;
}

.receipt-items-list {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed hsl(220 18% 22%);
  font-size: 13px;
}

/* ── DM actions ──────────────────────────────────────────────────── */
.receipt-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   PRODUCT IMAGE CAROUSEL
══════════════════════════════════════════ */

.modal-carousel {
  flex: 1;
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;       /* Firefox */
}

.modal-carousel::-webkit-scrollbar { display: none; }

.carousel-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scroll-snap-align: start;
  pointer-events: none;
  user-select: none;
  display: block;
}

/* Prev / Next arrow buttons */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, opacity 0.2s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.carousel-arrow:hover { background: rgba(29,106,255,0.55); }
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }

/* Dot indicators */
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 10px 0 8px;
  background: #111;
  flex-shrink: 0;
  min-height: 30px;
}

.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot.active {
  background: var(--accent-blue);
  transform: scale(1.5);
}

/* ══════════════════════════════════════════
   SIZE ROW & GUIDE BUTTON
══════════════════════════════════════════ */

.size-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

/* Override the default block margin on .size-select-label inside .size-row */
.size-row .size-select-label { margin-bottom: 0; }

.size-guide-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  color: var(--accent-blue);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.size-guide-btn:hover {
  background: rgba(29,106,255,0.1);
  border-color: var(--accent-blue);
}

/* ══════════════════════════════════════════
   SIZE GUIDE NESTED OVERLAY
══════════════════════════════════════════ */

.size-guide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  border-radius: var(--radius-lg);
}

.size-guide-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.size-guide-box {
  position: relative;
  background: var(--bg-overlay);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 48px 20px 20px;
  max-width: 88%;
  max-height: 88%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.size-guide-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.size-guide-close:hover { background: rgba(255,255,255,0.14); }

.size-guide-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

.size-guide-box img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  display: block;
}

/* ══════════════════════════════════════════
   MINIMALIST IMAGE GALLERY LIGHTBOX
══════════════════════════════════════════ */

.gallery-modal-overlay {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.gallery-modal-box {
  position: relative;
  width: 90vw;
  max-width: 760px;
  height: 84vh;
  max-height: 820px;
  background: #0d0d0e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.85);
}

.gallery-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 30;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-close-btn:hover {
  background: rgba(220, 38, 38, 0.8);
  border-color: var(--accent-crimson);
}

.gallery-carousel-wrap {
  position: relative;
  flex: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.gallery-carousel {
  width: 100%;
  height: 100%;
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-carousel::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  scroll-snap-align: start;
  pointer-events: none;
  user-select: none;
  background: #080809;
  padding: 12px;
}

.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }

.gallery-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 20px 14px;
  background: #0d0d0e;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.gallery-hint {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  opacity: 0.85;
}


/* ---------- Manual Transfer Details ---------- */
.manual-transfer-details { margin-top: 20px; padding: 20px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 8px; text-align: center; }
.transfer-info { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 20px; }
.qr-code-placeholder { width: 150px; height: 150px; object-fit: contain; background: #111; border-radius: 8px; margin-bottom: 12px; }
.receipt-upload-group { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 20px; padding-top: 20px; border-top: 1px dashed rgba(255,255,255,0.1); }
.receipt-upload-group label { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); }
.receipt-upload-group input[type='file'] { font-size: 16px; color: var(--text-muted); padding-top: 5px; min-height: 44px; }

/* Validation Errors */
.field-error {
  color: var(--accent-crimson);
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

/* Honeypot */
.visually-hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  left: -9999px;
}

/* Social Commerce Receipt Additions */

/* ── Payment cards grid ──────────────────────────────────────────── */
.receipt-payment-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.payment-card {
  background: hsl(220 18% 11%);
  border: 1px solid hsl(220 18% 22%);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* ── QR images / placeholder ─────────────────────────────────────── */
.qr-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
}

.qr-img {
  width: 100%;
  max-width: 108px;
  border-radius: 8px;
  object-fit: contain;
}

/* Shown when real QR file is missing (Option B) */
.qr-placeholder {
  display: none;          /* JS sets display:'flex' on img error */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  border: 2px dashed hsl(220 18% 30%);
  border-radius: 8px;
  background: hsl(220 18% 8%);
  color: hsl(220 12% 55%);
  font-size: 11px;
  text-align: center;
  gap: 4px;
  padding: 8px;
  line-height: 1.4;
}
.qr-placeholder strong { color: hsl(220 12% 72%); }
.qr-placeholder-icon { font-size: 24px; line-height: 1; }

/* ── Payment card text ───────────────────────────────────────────── */
.payment-card-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}
.payment-card-title.gcash { color: var(--accent-blue); }
.payment-card-title.maya  { color: #22c55e; }

.payment-card-name {
  font-size: 11px;
  color: hsl(220 12% 55%);
  margin: 0;
}

.payment-card-num {
  font-size: 13px;
  color: var(--text-primary);
  margin: 0 0 2px;
}
.payment-card-num strong {
  letter-spacing: 0.5px;
}

/* ── Copy button — upgraded to proper tap target ─────────────────── */
.btn-copy {
  width: 100%;
  min-height: 44px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: hsl(220 18% 18%);
  border: 1px solid hsl(220 18% 30%);
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.1s;
  margin-top: auto;    /* push to bottom of card */
}
.btn-copy:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #fff;
  transform: translateY(-1px);
}
.btn-copy:active { transform: scale(0.97); }

/* ── Urgency warning — kept orange, not crimson ──────────────────── */
.receipt-warning {
  font-size: 12px;
  color: hsl(38 95% 60%);     /* amber — distinct from Total Due (now blue) */
  background: hsl(38 80% 10%);
  border: 1px solid hsl(38 70% 22%);
  border-radius: 6px;
  padding: 10px 14px;
  text-align: center;
  font-style: normal;
  margin-bottom: 0;
}

/* ── DM action buttons ───────────────────────────────────────────── */
.receipt-dm-section {
  margin-top: 20px;
  padding-bottom: 28px;
}

/* (receipt-actions already defined above — column flex, gap 10px) */

.btn-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border: none;
}
.btn-ig:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-fb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  background: #1877F2;
  border: none;
}
.btn-fb:hover {
  background: #166fe5;
  transform: translateY(-2px);
}

.btn-close-minimal {
  background: transparent;
  border: none;
  color: var(--text-muted);
  text-decoration: underline;
  padding: 10px;
  margin-top: 8px;
}
.btn-close-minimal:hover {
  color: var(--text-primary);
  background: transparent;
  border: none;
}

/* ─── Order Number Block ─────────────────────────── */
.order-num-block {
  background: hsla(225, 100%, 60%, 0.04);
  border: 1px solid hsla(225, 100%, 60%, 0.25);
  box-shadow: inset 0 0 20px hsla(225, 100%, 60%, 0.05);
  border-radius: 12px;
  padding: 24px 20px;
  margin: 20px 0 16px;
  text-align: center;
}

.order-num-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--accent-blue);
  opacity: 0.8;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 600;
}

.order-num-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.order-num-value {
  font-family: 'Barlow Condensed', 'Courier New', monospace;
  font-size: clamp(24px, 6vw, 36px);
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
  text-shadow: 0 0 10px hsla(225, 100%, 60%, 0.3);
  user-select: all;
}

.btn-copy-ordernum {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  background: var(--accent-blue, #1d6aff);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}
.btn-copy-ordernum:hover { background: hsl(225 100% 55%); }
.btn-copy-ordernum:active { transform: scale(0.96); }
.btn-copy-ordernum.copied {
  background: #22c55e;
}

.order-num-hint {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
  margin-bottom: 0;
}

/* ─── Receipt Numbered Steps ─────────────────────── */
.receipt-steps {
  list-style: decimal;
  padding-left: 20px;
  margin: 12px 0 4px;
  text-align: left;
  font-size: 13px;
  color: var(--text-secondary, #ccc);
  line-height: 1.6;
}
.receipt-steps li { margin-bottom: 6px; }
.receipt-steps strong { color: var(--text-primary, #fff); }

/* ─── DM Section ─────────────────────────────────── */
.receipt-dm-section {
  margin-top: 20px;
}
.receipt-dm-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
  text-align: center;
}
.btn-ig svg, .btn-fb svg {
  vertical-align: middle;
  margin-right: 6px;
  flex-shrink: 0;
}
.btn-ig, .btn-fb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ─── Last Order Banner ───────────────────────────── */
.last-order-banner {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px 8px 0 0;
  border-left: 1px solid hsl(220 18% 22%);
  border-right: 1px solid hsl(220 18% 22%);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: hsl(220 18% 12%);
  border-top: 1px solid hsl(220 18% 22%);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: 13px;
  color: var(--text-primary, #fff);
  animation: slideUpBanner 0.3s ease;
}

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

.last-order-text { flex: 1; }

.last-order-btn {
  background: var(--accent-blue, #1d6aff);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.last-order-btn:hover { background: hsl(225 100% 55%); }

.last-order-dismiss {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
}
.last-order-dismiss:hover { color: var(--text-primary); }

/* Admin payment verified badge */
.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.payment-badge:hover { opacity: 0.8; }
.payment-badge.unpaid {
  background: hsl(0 60% 15%);
  color: hsl(0 80% 65%);
  border: 1px solid hsl(0 60% 28%);
}
.payment-badge.verified {
  background: hsl(142 50% 12%);
  color: hsl(142 70% 55%);
  border: 1px solid hsl(142 50% 25%);
}

/* Desktop specific sizing for QR codes */
@media (min-width: 768px) {
  .receipt-payment-details {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .qr-img, .qr-placeholder {
    max-width: 220px !important;
    width: 220px !important;
    height: auto;
  }
  .payment-card {
    padding: 24px;
  }
  .payment-card-title {
    font-size: 18px;
  }
  .payment-card-num {
    font-size: 16px;
  }
  .btn-copy {
    font-size: 13px;
    padding: 10px;
  }
}
