/* ---------------------------------------
   THEME VARIABLES
--------------------------------------- */

:root {
    --bg: #050509;
    --text-main: #f9fafb;
    --text-muted: #9ca3af;
    --accent: #e11d48;
    --accent-soft: #7f1d32;
    --radius-lg: 14px;
    --radius-md: 10px;
    --radius-pill: 999px;
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.55);
  }
  
  /* ---------------------------------------
     BASE
  --------------------------------------- */
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    background-color: #07080f; /* your dark base */
    margin: 0;
    padding: 0;
  }

  body {
    font-family: "Inter", system-ui, sans-serif;
    background: radial-gradient(circle at top, #111322 0, #050509 60%);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    overscroll-behavior: none;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
  }
  
  .page {
    max-width: 1120px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem 3rem;
  }
  
  /* ---------------------------------------
     ANIMATIONS
  --------------------------------------- */
  
  .fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
  }
  
  .slide-up {
    opacity: 0;
    transform: translateY(18px);
    animation: slideUp 0.6s ease-out forwards;
  }
  
  .hover-lift {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  
  .hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }
  
  @keyframes slideUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* ---------------------------------------
     HEADER
  --------------------------------------- */
  
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 12, 24, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.8rem 1rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(14px);
    position: sticky;
    top: 1rem;
    z-index: 50;
  }
  
  .logo-mark {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  
  .logo-icon-fallback {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(248, 250, 252, 0.5);
    background: radial-gradient(circle at 40% 20%, #ff304f, #24040d);
    box-shadow: 0 0 14px rgba(225, 29, 72, 0.6);
  }
  
  
  .logo-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(248, 250, 252, 0.5);
    box-shadow: 0 0 14px rgba(225, 29, 72, 0.6);
    object-fit: cover;
    display: block;
  }
.logo-text-main {
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.18em;
    font-size: 1.1rem;
    text-transform: uppercase;
  }
  
  .logo-text-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }
  
  .header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  /* Cart */
  
  .cart-pill {
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(15, 15, 25, 0.8);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
  }
  
  .cart-pill .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
  }
  
  /* ---------------------------------------
     HERO
  --------------------------------------- */

  
  .hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.8rem;
    color: var(--accent);
  }
  
  .hero-title {
    font-family: "Oswald", sans-serif;
    font-size: clamp(2.4rem, 3vw + 1rem, 3.4rem);
    text-transform: uppercase;
    margin: 0.7rem 0 1.2rem;
  }
  
  .hero-title .accent {
    color: var(--accent);
  }
  
  .hero-subtitle {
    color: var(--text-muted);
    max-width: 34rem;
    margin-bottom: 1.6rem;
    line-height: 1.6;
  }
  
  .hero-cta-row {
    display: flex;
    gap: 1rem;
    margin-top: 1.4rem;
  
    justify-content: center; /* 🔥 */
    align-items: center;
  }
  .btn-primary {
    background: radial-gradient(circle at top, #ff5777, #b11233);
    padding: 0.75rem 1.6rem;
    border-radius: var(--radius-pill);
    color: white;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
  }
  
  .btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.2rem;
    border-radius: var(--radius-pill);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
  }
  
  .btn-ghost .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-soft);
  }
  
  .hero-meta {
    display: flex;
    gap: 1.2rem;
    color: var(--text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
  }
  
  .hero-art {
    background: rgba(12, 14, 24, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.4rem;
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: var(--shadow-soft);
  }
  
  .hero-art-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.35rem 0.7rem;
    border-radius: var(--radius-pill);
    background: rgba(10, 10, 20, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
  }
  
  .hero-art-tag .spark {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
  }
  
  .hero-art-main {
    border: 1px dashed rgba(255, 255, 255, 0.25);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin-top: 1.7rem;
  }
  
  .hero-hoodie-preview img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.32);
  }
  
  /* ---------------------------------------
     PRODUCT GRID
  --------------------------------------- */
  
 /* PRODUCT GRID – DESKTOP */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
  

  
  .product-card {
    background: rgba(12, 14, 22, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.1rem;
    border-radius: var(--radius-lg);
  }
  
  .product-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    display: inline-block;
  }
  
  .product-image img {
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 0.8rem;
  }
  
  .product-name {
    font-size: 0.96rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
  }
  
  .product-meta {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
    margin-top: 0.3rem;
  }
  
  .product-footer {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .price span {
    color: var(--text-muted);
    font-size: 0.75rem;
  }
  
  .btn-add {
    background: var(--accent);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-pill);
    color: white;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }
  
  /* ---------------------------------------
     PRODUCT PAGE
  --------------------------------------- */
  
  .product-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
    gap: 2rem;
    padding-top: 2rem;
  }
  .product-page-media {
    max-width: 520px;
    margin: 0 auto;
  }

  .product-page-media img {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: var(--shadow-soft);
  }
  
  .product-page-thumbs {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.8rem;
  }
  
  .product-page-thumbs img {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0.7;
    cursor: pointer;
    transition: 0.2s;
  }
  
  .product-page-thumbs img.active,
  .product-page-thumbs img:hover {
    opacity: 1;
    border-color: var(--accent);
  }
  
  .product-page-title {
    font-family: "Oswald", sans-serif;
    font-size: 2.3rem;
    text-transform: uppercase;
  }
  
  .product-page-price {
    font-size: 1.4rem;
    margin: 0.8rem 0 1.2rem;
  }
  
  .product-page-description {
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  
  .product-page-meta {
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 1.6rem;
    font-size: 0.85rem;
  }
  
  .size-label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  
  .product-page-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .product-page-actions select {
    padding: 0.4rem 0.6rem;
    border-radius: var(--radius-md);
    background: rgba(30, 30, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-main);
  }
  /* =========================
   HOODIE PREVIEW – REDESIGN
   ========================= */

   .product-page-media .hoodie-preview-card {
    background: radial-gradient(
      circle at top,
      rgba(30,30,45,0.95),
      rgba(10,10,20,0.95)
    );
    border-radius: 22px;
    padding: 1.2rem;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 25px 60px rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
  }

.product-page-media .hoodie-preview-card img {
  max-width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Home page product grid image safety */
.product-card img {
  max-height: 240px;
  width: 100%;
  object-fit: cover;
}
.preview-label {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(0,0,0,0.45);
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-pill);
}

/* Prevent hoodie image from becoming huge */
.product-page-media .hoodie-preview-card img {
  max-height: 520px;   /* desktop */
  width: auto;
}

/* subtle hover lift (desktop only) */
@media (hover: hover) {
  .hoodie-preview-card:hover img {
    transform: scale(1.03);
    box-shadow: 0 18px 40px rgba(0,0,0,0.65);
  }
  .product-page-media .hoodie-preview-card img {
    max-height: 360px; /* mobile */
  }
}
  
  /* ---------------------------------------
     CHECKOUT
  --------------------------------------- */
  
  .checkout-section {
    margin-top: 3rem;
  }
  
  .checkout-empty {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 2rem;
  }
  
  .hidden {
    display: none !important;
  }
  
  .checkout-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .checkout-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .checkout-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1rem;
    align-items: center;
    background: rgba(20, 20, 30, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem;
    border-radius: var(--radius-md);
  }
  
  .checkout-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-md);
  }
  
  .checkout-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }
  
  .checkout-item-name {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    flex-wrap: wrap;
  }
  
  .checkout-item-price {
    color: var(--text-muted);
    font-size: 0.85rem;
  }
  
  .checkout-remove {
    align-self: start;
    font-size: 1.1rem;
    color: var(--accent);
    cursor: pointer;
  }
  
  .checkout-summary {
    width: 290px;
    background: rgba(15, 15, 25, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.4rem;
    border-radius: var(--radius-lg);
  }
  
  .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.6rem;
    color: var(--text-muted);
  }
  
  .summary-total {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    font-size: 1.3rem;
  }
  
  .btn-full-width {
    width: 100%;
  }
  
  .checkout-note {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 1rem;
  }

  
  /* ---------------------------------------
     FOOTER
  --------------------------------------- */
  
  .footer {
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
  }
  
  .footer-pill {
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  

/* =========================
   VISIBILITY FIXES (SAFE)
   ========================= */
.header,
.header *,
.cart-pill,
.cart-pill * {
  color: var(--text-main);
}

.logo-img{
  background:#111;
  padding:3px;
  filter:brightness(1.4) contrast(1.1);
}

.cart-pill{
  background: rgba(20,20,30,0.85);
}

/* =========================
   CART PILL – FINAL (FORCED)
   ========================= */

   .cart-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(18, 18, 28, 0.95);
    border: 1px solid rgba(255,255,255,0.35);
    color: var(--text-main);
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    transition: all 0.2s ease;
  }
  
  .cart-pill:hover {
    border-color: var(--accent);
    box-shadow: 0 0 14px rgba(225,29,72,0.45);
  }
  
  .cart-pill .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
  }
  
  .cart-pill #cart-count {
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    padding: 0.15rem 0.45rem;
    font-size: 0.7rem;
  }
  .checkout-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .checkout-qty button {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: white;
    font-size: 0.9rem;
  }
  
  .checkout-qty span {
    font-size: 0.85rem;
  }

  @keyframes cartPulse {
    0%   { transform: scale(1); }
    30%  { transform: scale(1.15); }
    60%  { transform: scale(0.95); }
    100% { transform: scale(1); }
  }
  
  .cart-animate {
    animation: cartPulse 0.45s ease;
  }

  .checkout-size {
    margin-left: 0.4rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    border-radius: 6px;
    padding: 0.15rem 0.35rem;
    font-size: 0.75rem;
  }

  .checkout-item {
    position: relative; /* keeps absolutely-positioned children inside */
  }
  
  .checkout-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    line-height: 1;
    padding: 6px 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
  }

  /* =========================
   SKELETON LOADING
   ========================= */

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

.skeleton {
  pointer-events: none;
}

.skeleton-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.06) 25%,
    rgba(255,255,255,0.12) 37%,
    rgba(255,255,255,0.06) 63%
  );
  background-size: 400px 100%;
  animation: shimmer 1.2s infinite ease-in-out;
}

.skeleton-line {
  height: 10px;
  border-radius: 6px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.06) 25%,
    rgba(255,255,255,0.12) 37%,
    rgba(255,255,255,0.06) 63%
  );
  background-size: 400px 100%;
  animation: shimmer 1.2s infinite ease-in-out;
}

.skeleton-line + .skeleton-line {
  margin-top: 8px;
}

.w-60 { width: 60%; }
.w-40 { width: 40%; }
.w-30 { width: 30%; }

.skeleton-remove {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.page {
  animation: pageFade 0.25s ease;
}

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

.undo-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20,20,30,0.95);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  z-index: 100;
}

.undo-toast button {
  color: var(--accent);
  background: none;
  font-weight: 600;
}

.checkout-empty.animated {
  animation: emptyPop 0.4s ease;
}

@keyframes emptyPop {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.modal-card {
  background: rgba(15,15,25,0.95);
  padding: 1.5rem;
  border-radius: 16px;
  width: 320px;
}

/* =========================
   SIZE PICKER (PRODUCT PAGE)
   ========================= */

   .size-picker {
    margin: 1.2rem 0;
  }
  
  .size-label {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
  }
  
  .size-options {
    display: flex;
    gap: 0.5rem;
  }
  
  .size-options button {
    min-width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(15,15,25,0.8);
    color: var(--text-main);
    font-weight: 600;
    transition: all 0.15s ease;
  }
  
  .size-options button:hover {
    border-color: var(--accent);
    transform: translateY(-1px);
  }
  
  .size-options button.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    box-shadow: 0 0 16px rgba(225,29,72,0.45);
  }
  
  /* future-proof */
  .size-options button.disabled {
    opacity: 0.35;
    pointer-events: none;
  }

  .size-options {
    position: relative;
    z-index: 5;
  }
  
  .size-options button {
    pointer-events: auto;
  }


  /* =========================
   FREE SHIPPING POPUP
   ========================= */
   .free-ship-popup {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: rgba(15,15,25,0.97);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 0.9rem 1.25rem; /* ⬅ bigger */
    border-radius: 16px;     /* ⬅ softer */
    font-size: 0.9rem;       /* ⬅ bigger text */
    color: var(--text-main);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    animation: slideIn 0.35s ease;
    z-index: 120;
    max-width: 260px;
    line-height: 1.35;
  }
  
  .free-ship-popup strong {
    color: var(--accent);
  }

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

.free-ship-popup.first-show {
  animation: slideIn 0.35s ease, pulse 1.4s ease 0.4s;
}

/* =========================
   MOBILE RESPONSIVE
   ========================= */

   @media (max-width: 768px) {

    .page {
      padding: 1rem 0.9rem 2.5rem;
    }
  
    /* HEADER */
    .header {
      flex-wrap: wrap;
      gap: 0.6rem;
    }
  
    .logo-text-main {
      font-size: 0.95rem;
    }
  
    .logo-text-sub {
      font-size: 0.65rem;
    }
  
    .header-right {
      gap: 0.5rem;
    }
  
    .cart-pill,
    .auth-pill {
      font-size: 0.7rem;
      padding: 0.35rem 0.8rem;
    }

      /* PRODUCT PAGE */
  .product-page-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .product-page-media img {
    width: 100%;
  }

  .product-page-thumbs {
    justify-content: center;
  }

  .product-page-title {
    font-size: 1.8rem;
  }

  .product-page-price {
    font-size: 1.2rem;
  }
  .size-options {
    gap: 0.6rem;
  }

  .size-options button {
    min-width: 48px;
    height: 48px;
    font-size: 0.9rem;
  }

  #product-add-btn {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }
    /* CHECKOUT */
    .checkout-grid {
      flex-direction: column;
      gap: 1.5rem;
    }
  
    .checkout-summary {
      width: 100%;
      position: static;
    }
  
    .checkout-item {
      grid-template-columns: 64px 1fr;
      gap: 0.8rem;
    }
  
    .checkout-item img {
      width: 64px;
      height: 64px;
    }
  
    .checkout-remove {
      top: 8px;
      right: 8px;
    }

    .free-ship-popup {
      left: 50%;
      right: auto;
      bottom: 12px;
      transform: translateX(-50%);
      max-width: calc(100% - 2rem);
      font-size: 0.85rem;
    }
    /* PRODUCT GRID – MOBILE */
.product-grid {
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
  }
  
  @media (max-width: 768px) {
    .hoodie-preview-card {
      padding: 0.8rem;
      border-radius: 18px;
    }
  
    .hoodie-preview-card img {
      border-radius: 14px;
    }
  
    .product-page-thumbs {
      gap: 0.8rem;
      margin-top: 1rem;
    }
  
    .product-page-thumbs img {
      width: 72px;
      height: 72px;
    }
  }

  /* DROP TAG – MOBILE FRIENDLY */
.hero-art-tag {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

@media (max-width: 768px) {
  .hero-art-tag {
    font-size: 0.75rem;
    padding: 0.45rem 0.75rem;
  }
}

/* SECTION HEADER – MOBILE FRIENDLY */
.section-header {
  margin-bottom: 1.6rem;
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 1.2rem;
  }

  .section-title {
    font-size: 1.35rem;
    letter-spacing: 0.14em;
  }

  .section-subtitle {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}
@media (max-width: 768px) {
  .product-grid {
    gap: 1.4rem;
  }

  .product-card {
    padding: 1.1rem;
  }

  .product-name {
    font-size: 0.95rem;
  }

  .product-meta {
    font-size: 0.75rem;
  }
}

.size-guide-link {
  margin-left: 0.6rem;
  font-size: 0.7rem;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
}

.size-guide-card {
  width: 92%;
  max-width: 360px;
}

.size-guide-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.8rem;
}

.size-guide-table th,
.size-guide-table td {
  padding: 0.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  text-align: left;
}

.size-guide-note {
  margin-top: 0.8rem;
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* =========================
   SIZE HEADER (LABEL + GUIDE)
   ========================= */

   .size-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
  }
  
  .size-label-text {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  
  .size-guide-link {
    font-size: 0.7rem;
    color: var(--accent);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  @media (max-width: 768px) {
    .size-header {
      margin-bottom: 0.6rem;
    }
  
    .size-guide-link {
      font-size: 0.75rem;
    }
  }
  @media (max-width: 768px) {

    .hero {
      grid-template-columns: 1fr;
      gap: 1.6rem;
    }
  
    .hero-art {
      padding: 1rem;
    }
  
    .hero-art-card {
      padding: 1.1rem;
    }
  
    .hero-hoodie-preview img {
      max-height: 320px;
    }
  
    .hero-art-footer {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
  }

  /* =========================
   PRODUCT-FIRST INTRO
   ========================= */

.drop-intro {
    max-width: 1320px; /* wider than grid */
    margin: 2.5rem auto 2rem;
    padding: 0 1.5rem;
}

.drop-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.drop-title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
}

.drop-intro::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-top: 1rem;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .drop-intro {
    margin-top: 1.8rem;
    margin-bottom: 1.4rem;
  }

  .drop-title {
    font-size: 1.45rem;
  }
}

/* =========================
   INSTAGRAM REEL – RIGHT RAIL
   ========================= */

   .rail-reel {
    padding: 0.9rem;
  }
  
  .rail-reel .instagram-media {
    margin: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
  }
  
  .rail-reel iframe {
    width: 100% !important;
    border-radius: 12px;
  }
  @media (max-width: 1024px) {
    .rail-reel {
      display: none;
    }
  }
  /* =========================
   HERO + REEL LAYOUT
   ========================= */

.home-layout {
  max-width: 1320px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1.6fr 360px;
  gap: 2.5rem;
  align-items: start;
  padding: 0 1rem;
}
/* =========================
   INSTAGRAM REEL – CONTROLLED SIZE
   ========================= */

   .drop-rail {
    max-width: 360px;
  }
  
  .rail-reel {
    padding: 0.6rem;
  }
  
  .rail-reel .instagram-media {
    margin: 0 !important;
    max-width: 100% !important;
  }
  
  .rail-reel iframe {
    width: 100% !important;
    height: 520px !important; /* 👈 KEY LINE */
    border-radius: 14px;
  }
  @media (max-width: 1024px) {
    .drop-rail {
      display: none;
    }
  }
  /* =========================
   TIKTOK AUTOPLAY CARD
   ========================= */

.rail-tiktok {
  padding: 0.6rem;
}

.rail-tiktok iframe {
  width: 100% !important;
  height: 520px !important;
  border-radius: 14px;
}

.rail-tiktok blockquote {
  margin: 0 !important;
}

@media (max-width: 1024px) {
  .rail-tiktok {
    display: none;
  }
}

/* =========================
   HERO WITH BACKGROUND VIDEO (FIXED)
   ========================= */

   .hero-video {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0; /* ⬅ behind everything */
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(5,5,10,0.65),
      rgba(5,5,10,0.85)
    );
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 0 1rem;
  
    display: flex;                 /* 🔥 */
    flex-direction: column;        /* 🔥 */
    align-items: center;           /* 🔥 horizontal centering */
    justify-content: center;       /* 🔥 vertical centering */
    text-align: center;            /* 🔥 text centering */
  }
  
  /* HERO CONTENT */
  .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 720px;
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 2.6rem;
    line-height: 1.1;
    margin-top: 1rem;
  }
  
  .hero-subtitle {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-muted);
  }
  @media (max-width: 768px) {

    .hero-video {
      position: relative;
      min-height: 75vh;
    
      display: flex;                 /* 🔥 */
      align-items: center;           /* 🔥 */
      justify-content: center;       /* 🔥 */
    
      overflow: hidden;
    }
  
    .hero-title {
      font-size: 1.8rem;
    }
  
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-bg-video {
      display: none;
    }
  
    .hero-video {
      background: radial-gradient(
        circle at top,
        #121420,
        #07080f
      );
    }
  }
  @media (max-width: 768px) {
    .hero-video {
      min-height: 65vh;
    }
  
    .hero-title {
      font-size: 1.8rem;
    }
  }