/* ==========================================================================
   Trump Haters STFU – Premium Patriotic eCommerce
   Nike-Inspired Design System + Red/White/Blue/Gold Palette
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  --black: #111111;
  --white: #FFFFFF;
  --grey-50: #FAFAFA;
  --grey-100: #F5F5F5;
  --grey-200: #E5E5E5;
  --grey-300: #CACACB;
  --grey-500: #707072;
  --grey-700: #39393B;
  --grey-800: #28282A;
  --grey-900: #1F1F21;

  --red: #B22234;
  --red-hover: #9A1D2D;
  --red-light: #D63447;
  --blue: #3C3B6E;
  --blue-dark: #2A2954;
  --navy: #0A1628;
  --gold: #FFD700;
  --gold-dark: #D4AF37;

  --error: #D30005;
  --success: #007D48;
  --link: #1151FF;
  --focus: rgba(39, 93, 197, 1);

  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-7: 32px; --sp-8: 48px;
  --sp-9: 64px; --sp-10: 80px;

  --max-w: 1920px;
  --content-w: 1440px;
  --nav-h: 60px;
  --pill: 30px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 var(--sp-8);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
h1 { font-family: var(--font-display); font-size: 32px; font-weight: 600; line-height: 1.2; text-transform: uppercase; }
h2 { font-family: var(--font-display); font-size: 24px; font-weight: 600; line-height: 1.2; text-transform: uppercase; }
h3 { font-family: var(--font-body); font-size: 16px; font-weight: 500; line-height: 1.5; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--pill);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  transition: background 200ms ease, transform 100ms ease;
  text-align: center;
  white-space: nowrap;
}
.btn:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--focus); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-hover); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--grey-700); }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--grey-200); }
.btn-outline { background: transparent; color: var(--black); border: 1.5px solid var(--grey-300); }
.btn-outline:hover { border-color: var(--grey-500); background: var(--grey-200); }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-lg { padding: 16px 36px; font-size: 18px; }

/* ---------- Promo Banner ---------- */
.promo-banner {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 8px var(--sp-4);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  z-index: 1000;
}
.promo-banner a { text-decoration: underline; font-weight: 600; }
.promo-banner a:hover { color: var(--gold); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  height: var(--nav-h);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-8);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.nav-logo .red { color: var(--red); }
.nav-links {
  display: flex;
  gap: var(--sp-6);
  align-items: center;
}
.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  transition: color 200ms ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--grey-500); }
.nav-actions {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
}
.nav-actions button,
.nav-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background 200ms ease;
  position: relative;
}
.nav-actions button:hover,
.nav-actions a:hover { background: var(--grey-100); }
.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
  padding: 8px;
  box-sizing: content-box;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--black);
  transition: all 300ms ease;
}
.mobile-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  padding: var(--sp-8);
  transform: translateX(-100%);
  transition: transform 300ms ease;
}
.mobile-nav.active { transform: translateX(0); }
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-8);
}
.mobile-nav-close {
  font-size: 28px;
  color: var(--black);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--grey-200);
  display: block;
  color: var(--black);
}

/* ---------- Hero Carousel ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 500px;
  max-height: 900px;
  overflow: hidden;
  background: var(--black);
}
.hero-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 800ms ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-slide .mobile-img { display: none; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.25) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-9) var(--sp-8);
}
.hero-content { max-width: 700px; }
.hero-content .display {
  color: var(--white);
  margin-bottom: var(--sp-4);
}
.hero-content .display .gold { color: var(--gold); }
.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: var(--sp-6);
  max-width: 480px;
}
.hero-cta { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.hero-dots {
  position: absolute;
  bottom: var(--sp-6);
  right: var(--sp-8);
  display: flex;
  gap: var(--sp-2);
  z-index: 10;
}
.hero-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background 300ms ease;
  cursor: pointer;
  border: none;
}
.hero-dot.active { background: var(--white); }
.hero-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 var(--sp-4);
  z-index: 10;
  pointer-events: none;
}
.hero-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  pointer-events: all;
  transition: background 200ms ease;
  border: none;
  cursor: pointer;
}
.hero-arrow:hover { background: rgba(255,255,255,0.35); }

/* ---------- Sections ---------- */
.section { padding: var(--sp-10) 0; }
.section-dark { background: var(--grey-50); }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--sp-7);
}
.section-header h1 { margin: 0; }
.section-header a {
  font-weight: 500;
  color: var(--black);
  text-decoration: underline;
  transition: color 200ms;
}
.section-header a:hover { color: var(--grey-500); }

/* ---------- Product Grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.product-card { position: relative; cursor: pointer; }
.product-card-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--grey-100);
  display: block;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 200ms ease;
}
.product-card:hover .product-card-img img { opacity: 0.92; }
.product-card-info { padding: var(--sp-3) 0; display: block; color: inherit; text-decoration: none; }
.product-card-info h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: var(--sp-1);
}
.product-card-info .product-type {
  font-size: 16px;
  color: var(--grey-500);
  margin-bottom: var(--sp-1);
}
.product-card-info .product-price {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}
.product-card-info .product-price .original {
  text-decoration: line-through;
  color: var(--grey-500);
  margin-left: var(--sp-2);
}
.product-badge {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--pill);
}
.product-badge.gold { background: var(--gold); color: var(--black); }
.product-add-btn {
  position: absolute;
  bottom: 80px;
  right: var(--sp-3);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 200ms ease, transform 200ms ease;
  cursor: pointer;
  border: none;
  font-size: 18px;
}
.product-card:hover .product-add-btn { opacity: 1; transform: translateY(0); }

/* ---------- Category Cards ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.category-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.category-card:hover img { transform: scale(1.03); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-6);
}
.category-card-overlay h2 { color: var(--white); margin-bottom: var(--sp-3); }
.category-card-overlay .btn { align-self: flex-start; }

/* ---------- Featured Banner ---------- */
.featured-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--navy);
}
.featured-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.featured-banner-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-9) var(--sp-8);
  color: var(--white);
}
.featured-banner-text .display {
  color: var(--white);
  margin-bottom: var(--sp-4);
}
.featured-banner-text .display .gold { color: var(--gold); }
.featured-banner-text p {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  margin-bottom: var(--sp-7);
  max-width: 440px;
}
.featured-banner-img { overflow: hidden; }
.featured-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- About Section ---------- */
.about-section { background: var(--grey-50); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-9);
  align-items: center;
}
.about-text h1 { margin-bottom: var(--sp-4); }
.about-text p {
  color: var(--grey-500);
  margin-bottom: var(--sp-6);
  font-size: 16px;
  line-height: 1.75;
}
.about-img { aspect-ratio: 4 / 3; overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Share Strip ---------- */
.share-strip {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: var(--sp-9) var(--sp-4);
}
.share-strip .display {
  color: var(--white);
  font-size: clamp(28px, 5vw, 64px);
  margin-bottom: var(--sp-4);
}
.share-strip p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--sp-6);
}
.share-buttons {
  display: flex;
  gap: var(--sp-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Image Gallery Strip ---------- */
.gallery-strip {
  display: flex;
  gap: 0;
  overflow: hidden;
  width: 100%;
}
.gallery-strip img {
  flex: 0 0 calc(100% / 5);
  height: 260px;
  object-fit: cover;
}

/* ---------- Newsletter Popup ---------- */
.newsletter-overlay {
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
}
.newsletter-overlay.active { display: flex; }
.newsletter-modal {
  background: var(--white);
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  padding: var(--sp-8);
  position: relative;
  text-align: center;
}
.newsletter-close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  font-size: 24px;
  color: var(--grey-500);
  cursor: pointer;
  background: none;
  border: none;
}
.newsletter-modal h2 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: var(--sp-3);
}
.newsletter-modal p {
  color: var(--grey-500);
  margin-bottom: var(--sp-6);
}
.newsletter-form {
  display: flex;
  gap: var(--sp-2);
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--grey-300);
  border-radius: var(--pill);
  font-size: 16px;
  font-family: var(--font-body);
  background: var(--grey-100);
  outline: none;
  transition: border-color 200ms;
}
.newsletter-form input:focus { border-color: var(--black); }
.newsletter-form .btn { flex-shrink: 0; }

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  color: var(--white);
  padding: var(--sp-9) 0 var(--sp-7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-8);
}
.footer-brand .footer-logo {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
  display: block;
  letter-spacing: 0.05em;
}
.footer-brand .footer-logo .red { color: var(--red-light); }
.footer-brand p {
  color: var(--grey-500);
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-4);
  color: var(--white);
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--grey-500);
  padding: var(--sp-1) 0;
  transition: color 200ms;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--grey-800);
  padding-top: var(--sp-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer-bottom p {
  font-size: 12px;
  color: var(--grey-500);
}
.footer-social {
  display: flex;
  gap: var(--sp-3);
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grey-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-500);
  transition: background 200ms, color 200ms;
  font-size: 14px;
}
.footer-social a:hover { background: var(--grey-700); color: var(--white); }

/* ---------- Cart Drawer ---------- */
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 400px;
  max-width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 20000;
  transform: translateX(100%);
  transition: transform 300ms ease;
  display: flex;
  flex-direction: column;
}
.cart-drawer.active { transform: translateX(0); }
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 19999;
  display: none;
}
.cart-drawer-overlay.active { display: block; }
.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-4) var(--sp-6);
  border-bottom: 1px solid var(--grey-200);
}
.cart-drawer-header h2 { font-family: var(--font-display); font-size: 20px; }
.cart-drawer-close {
  font-size: 24px;
  cursor: pointer;
  color: var(--black);
  background: none;
  border: none;
}
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--sp-6);
}
.cart-empty {
  text-align: center;
  padding: var(--sp-9) 0;
  color: var(--grey-500);
}
.cart-item {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--grey-200);
}
.cart-item-img {
  width: 80px; height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--grey-100);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-info h3 { font-size: 14px; font-weight: 500; margin-bottom: 2px; }
.cart-item-info .cart-item-meta { font-size: 12px; color: var(--grey-500); }
.cart-item-info .cart-item-price { font-size: 14px; font-weight: 600; margin-top: var(--sp-2); }
.cart-item-remove {
  font-size: 18px;
  color: var(--grey-500);
  cursor: pointer;
  align-self: flex-start;
  background: none;
  border: none;
}
.cart-drawer-footer {
  border-top: 1px solid var(--grey-200);
  padding: var(--sp-6);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--sp-4);
}
.cart-drawer-footer .btn { width: 100%; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--black);
  color: var(--white);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--pill);
  font-size: 14px;
  font-weight: 500;
  z-index: 30000;
  opacity: 0;
  transition: transform 300ms ease, opacity 300ms ease;
  white-space: nowrap;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ---------- FAQ Section ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--grey-200);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--sp-5) 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  text-align: left;
}
.faq-question .faq-icon {
  font-size: 20px;
  transition: transform 300ms ease;
  flex-shrink: 0;
  margin-left: var(--sp-4);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, padding 300ms ease;
  color: var(--grey-500);
  font-size: 16px;
  line-height: 1.75;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: var(--sp-5);
}

/* ---------- Blog Teasers ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.blog-card { cursor: pointer; }
.blog-card-img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--grey-100);
  margin-bottom: var(--sp-3);
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.03); }
.blog-card .blog-tag {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--red);
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-2);
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}
.blog-card p {
  font-size: 14px;
  color: var(--grey-500);
  line-height: 1.6;
}

/* ---------- Scroll Fade-in ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .container { padding: 0 var(--sp-6); }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { padding: 0 var(--sp-6); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: var(--sp-7); }
  .featured-banner-inner { grid-template-columns: 1fr; }
  .featured-banner-img { height: 350px; }
  .gallery-strip img { flex: 0 0 calc(100% / 3); }
}

@media (max-width: 768px) {
  .hero { height: 85vh; max-height: none; }
  .hero-slide .desktop-img { display: none; }
  .hero-slide .mobile-img { display: block; }
  .hero-overlay { padding: var(--sp-8) var(--sp-6); }
  .hero-arrows { display: none; }
  .section { padding: var(--sp-8) 0; }
  .container { padding: 0 var(--sp-4); }
  .featured-banner-text { padding: var(--sp-8) var(--sp-6); }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-7); }
  .gallery-strip img { flex: 0 0 calc(100% / 2); height: 200px; }
}

@media (max-width: 640px) {
  .product-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-content .display { font-size: 40px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
  .gallery-strip img { flex: 0 0 100%; height: 180px; }
}

/* ---------- Product Detail Page (PDP) ---------- */
.pdp-breadcrumb {
  padding: var(--sp-4) 0;
  font-size: 14px;
  color: var(--grey-500);
  border-bottom: 1px solid var(--grey-200);
  margin-top: 0;
}
.pdp-breadcrumb a { color: var(--grey-500); transition: color 200ms; }
.pdp-breadcrumb a:hover { color: var(--black); }
.pdp-breadcrumb span { margin: 0 var(--sp-2); }
.pdp-breadcrumb .current { color: var(--black); font-weight: 500; }

.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-9);
  align-items: flex-start;
}
.pdp-gallery { position: sticky; top: calc(var(--nav-h) + 24px); }
.pdp-main-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--grey-100);
  cursor: zoom-in;
  position: relative;
  border-radius: 0;
}
.pdp-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 300ms ease;
}
.pdp-main-img:hover img { transform: scale(1.03); }
.pdp-zoom-hint {
  position: absolute;
  bottom: var(--sp-3);
  right: var(--sp-3);
  background: rgba(0,0,0,0.5);
  color: var(--white);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: var(--pill);
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms;
}
.pdp-main-img:hover .pdp-zoom-hint { opacity: 1; }

.pdp-thumbs {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
}
.pdp-thumb {
  width: 80px;
  height: 80px;
  border: 2px solid transparent;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  background: var(--grey-100);
  padding: 0;
  transition: border-color 200ms;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb.active { border-color: var(--black); }
.pdp-thumb:hover { border-color: var(--grey-500); }

.pdp-info { padding-top: var(--sp-2); }
.pdp-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: var(--sp-2);
}
.pdp-type { font-size: 16px; color: var(--grey-500); margin-bottom: var(--sp-4); }
.pdp-price { margin-bottom: var(--sp-3); display: flex; align-items: baseline; gap: var(--sp-3); }
.pdp-price-current { font-size: 28px; font-weight: 700; color: var(--black); }
.pdp-price-original { font-size: 18px; color: var(--grey-500); text-decoration: line-through; }
.pdp-stars { margin-bottom: var(--sp-4); display: flex; align-items: center; gap: var(--sp-2); color: var(--gold); font-size: 16px; }
.pdp-reviews { font-size: 14px; color: var(--grey-500); }
.pdp-slogan {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
  letter-spacing: 0.03em;
}
.pdp-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--grey-500);
  margin-bottom: var(--sp-7);
}

.pdp-size-section { margin-bottom: var(--sp-6); }
.pdp-size-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-3);
}
.pdp-size-label { font-size: 16px; font-weight: 500; }
.pdp-size-guide-toggle {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-500);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}
.pdp-size-guide-toggle:hover { color: var(--black); }
.pdp-sizes { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.pdp-size-btn {
  min-width: 52px;
  padding: 10px 16px;
  border: 1.5px solid var(--grey-300);
  border-radius: var(--pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  background: var(--white);
  cursor: pointer;
  transition: all 200ms ease;
  font-family: var(--font-body);
}
.pdp-size-btn:hover { border-color: var(--black); }
.pdp-size-btn.selected { background: var(--black); color: var(--white); border-color: var(--black); }

.pdp-add-to-cart { width: 100%; font-size: 18px; padding: 16px 24px; }

.pdp-manuscript {
  margin-top: var(--sp-7);
  padding: var(--sp-6);
  background: var(--grey-50);
  border-left: 4px solid var(--gold);
}
.pdp-manuscript h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
  color: var(--black);
}
.pdp-manuscript p { font-size: 14px; color: var(--grey-500); line-height: 1.7; margin: 0; }

.pdp-features { margin-top: var(--sp-6); }
.pdp-features h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: var(--sp-3);
  color: var(--black);
}
.pdp-features ul { padding-left: var(--sp-5); }
.pdp-features li {
  font-size: 14px;
  color: var(--grey-500);
  line-height: 1.75;
  list-style: disc;
  margin-bottom: var(--sp-1);
}

.pdp-share {
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--grey-200);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.pdp-share span { font-size: 14px; font-weight: 500; color: var(--grey-500); }
.pdp-share a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-500);
  transition: background 200ms, color 200ms;
}
.pdp-share a:hover { background: var(--grey-200); color: var(--black); }

/* Size Guide Modal */
.pdp-size-overlay {
  position: fixed; inset: 0;
  z-index: 20000;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
}
.pdp-size-overlay.active { display: flex; }
.pdp-size-modal {
  background: var(--white);
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  padding: var(--sp-8);
  position: relative;
}
.pdp-size-modal h2 { font-family: var(--font-display); font-size: 24px; margin-bottom: var(--sp-3); }
.pdp-size-modal > p { color: var(--grey-500); font-size: 14px; margin-bottom: var(--sp-6); }
.pdp-size-table { width: 100%; border-collapse: collapse; }
.pdp-size-table th, .pdp-size-table td {
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--grey-200);
}
.pdp-size-table th { font-weight: 600; color: var(--black); }
.pdp-size-table td { color: var(--grey-500); }

/* Zoom Overlay */
.pdp-zoom-overlay {
  position: fixed; inset: 0;
  z-index: 25000;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: var(--sp-6);
}
.pdp-zoom-overlay.active { display: flex; }
.pdp-zoom-overlay img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.pdp-zoom-close {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-6);
  font-size: 32px;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
}

/* PDP Responsive */
@media (max-width: 1024px) {
  .pdp-grid { grid-template-columns: 1fr; gap: var(--sp-7); }
  .pdp-gallery { position: static; }
}
@media (max-width: 640px) {
  .pdp-thumbs { gap: var(--sp-1); }
  .pdp-thumb { width: 64px; height: 64px; }
  .pdp-title { font-size: 24px; }
}

/* ---------- Print ---------- */
@media print {
  .nav, .promo-banner, .newsletter-overlay, .cart-drawer, .cart-drawer-overlay, .toast, .mobile-nav, .hero-arrows, .hero-dots, .pdp-zoom-overlay, .pdp-size-overlay { display: none !important; }
}
