/* =========================================
   TRUMP GEAR 47 — Heritage Edition
   Premium patriotic apparel · elegant serif + warm cream
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;0,900;1,500;1,600;1,700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Heritage palette */
  --red: #C20000;          /* deep heritage red */
  --red-dark: #830808;     /* oxblood */
  --blue: #26303f;         /* aged ink-navy (refined dark) */
  --blue-dark: #1a2230;
  --gold: #C8A951;         /* antique gold */
  --gold-light: #E0C878;
  --white: #ffffff;
  --off-white: #F2EADB;    /* warm cream (alt sections) */
  --cream: #FAF5EA;        /* page parchment */
  --dark: #1E1B16;         /* warm ink */
  --gray: #6F6A5F;         /* warm gray */
  --light-gray: #EFEADF;
  --border: #E4DCCB;       /* warm hairline */
  --success: #2f7d47;

  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 2px 10px rgba(40,30,15,0.08);
  --shadow-lg: 0 14px 44px rgba(40,30,15,0.14);
  --transition: all 0.22s ease;
  --header-h: 74px;
  --announce-h: 40px;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* =========================================
   ANNOUNCEMENT BAR
   ========================================= */
.announcement-bar {
  background: var(--dark);
  color: #F3ECDD;
  text-align: center;
  padding: 11px 16px;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 1.2px;
  position: sticky;
  top: 0;
  z-index: 200;
}
.announcement-bar strong { color: var(--gold); font-weight: 600; }
.announcement-bar a { color: var(--gold); }

/* =========================================
   HEADER
   ========================================= */
header {
  background: rgba(250,245,234,0.92);
  backdrop-filter: saturate(1.1) blur(8px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--announce-h);
  z-index: 100;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.logo .logo-red { color: var(--red); }
.logo .logo-blue { color: var(--dark); }
.logo .logo-num { color: var(--gold); font-style: italic; }

nav#main-nav { display: flex; align-items: center; gap: 6px; }
nav#main-nav a {
  font-weight: 500;
  font-size: 14px;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  letter-spacing: 0.3px;
}
nav#main-nav a:hover { color: var(--red); }
nav#main-nav a.active { color: var(--red); }
nav#main-nav a.active::after {
  content: ''; display: block; height: 2px; background: var(--gold);
  margin-top: 3px; border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: #fff;
  padding: 9px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: var(--transition);
}
.cart-btn:hover { background: var(--red-dark); }
.cart-count {
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
#menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
#menu-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  border: 1.5px solid transparent;
}
.btn:active { transform: scale(0.985); }

.btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); box-shadow: 0 6px 18px rgba(194,0,0,0.25); }

.btn-secondary { background: transparent; color: var(--red); border-color: var(--red); }
.btn-secondary:hover { background: var(--red); color: #fff; }

.btn-blue { background: var(--dark); color: #F3ECDD; border-color: var(--dark); }
.btn-blue:hover { background: #000; border-color: #000; }

.btn-gold {
  background: var(--gold); color: var(--dark); border-color: var(--gold);
  font-size: 15px; padding: 15px 34px;
}
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 6px 20px rgba(200,169,81,0.4); }

.btn-lg { padding: 16px 38px; font-size: 15px; }
.btn-full { width: 100%; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* =========================================
   HERO
   ========================================= */
.hero {
  background:
    radial-gradient(1200px 500px at 50% -10%, rgba(200,169,81,0.14), transparent 60%),
    linear-gradient(180deg, #FBF6EC 0%, #F3EAD8 100%);
  color: var(--dark);
  padding: 90px 20px 84px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(30,27,22,0.015) 60px, rgba(30,27,22,0.015) 120px);
  pointer-events: none;
}
.hero-stars {
  position: relative;
  text-align: center;
  font-size: 15px;
  letter-spacing: 10px;
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 18px;
}
.hero-inner { max-width: 860px; margin: 0 auto; text-align: center; position: relative; }
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 7vw, 74px);
  line-height: 1.04;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--red); font-style: italic; font-weight: 700; }
.hero-subtitle {
  font-size: clamp(16px, 2.2vw, 20px);
  color: #5c574c;
  margin: 0 auto 34px;
  max-width: 620px;
  font-weight: 300;
}
.hero-cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-trust { margin-top: 50px; display: flex; gap: 34px; justify-content: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #6b6558; font-weight: 500; }
.trust-item .trust-icon { font-size: 18px; }

/* =========================================
   SECTIONS
   ========================================= */
.section { padding: 78px 20px; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--dark); color: #F3ECDD; }
.section-blue { background: var(--blue); color: #F3ECDD; }
.container { max-width: 1200px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 52px; }
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4.6vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.5px;
}
.section-header p {
  color: var(--gray);
  font-size: 16.5px;
  margin-top: 14px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}
.section-dark .section-header p, .section-blue .section-header p { color: rgba(243,236,221,0.75); }
.section-dark .section-eyebrow, .section-blue .section-eyebrow { color: var(--gold); }

/* =========================================
   PRODUCT GRID
   ========================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 26px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #D8CDB6; }
.product-image-link { display: block; }
.product-image {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-icon { font-size: 72px; line-height: 1; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)); margin-bottom: 8px; }
.product-img-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.5px;
  text-align: center;
  padding: 0 12px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 3px;
}
.product-info { padding: 18px; }
.product-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  display: block;
  margin-bottom: 6px;
  color: var(--dark);
  transition: color 0.2s;
  line-height: 1.25;
}
.product-name:hover { color: var(--red); }
.product-rating { font-size: 12.5px; color: var(--gray); margin-bottom: 8px; }
.stars { color: var(--gold); letter-spacing: -1px; }
.product-price-row { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.product-price { font-size: 20px; font-weight: 700; color: var(--dark); }
.original-price { font-size: 14px; color: var(--gray); text-decoration: line-through; }
.size-select {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--dark);
  background: var(--white);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.size-select:focus { outline: none; border-color: var(--red); }
.add-to-cart-btn { width: 100%; margin-top: 4px; padding: 11px; font-size: 13px; }

/* =========================================
   SOCIAL PROOF BAR
   ========================================= */
.proof-bar {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 20px;
}
.proof-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 48px; justify-content: center; align-items: center; flex-wrap: wrap; }
.proof-item { text-align: center; display: flex; flex-direction: column; align-items: center; }
.proof-num { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--red); line-height: 1; }
.proof-label { font-size: 11.5px; color: var(--gray); font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; }

/* =========================================
   FEATURES
   ========================================= */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 28px; }
.feature-item { text-align: center; padding: 28px 22px; border-radius: var(--radius-lg); background: rgba(255,255,255,0.05); border: 1px solid rgba(243,236,221,0.09); }
.feature-icon { font-size: 38px; margin-bottom: 14px; }
.feature-item h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.feature-item p { font-size: 13.5px; color: rgba(243,236,221,0.72); font-weight: 300; }

/* =========================================
   EMAIL SIGNUP
   ========================================= */
.signup-section {
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(200,169,81,0.14), transparent 65%),
    linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  padding: 74px 20px;
  text-align: center;
}
.signup-section h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 4.5vw, 46px); margin-bottom: 12px; }
.signup-section p { font-size: 16px; color: rgba(255,255,255,0.9); margin-bottom: 28px; font-weight: 300; }
.signup-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.signup-form input { flex: 1; min-width: 200px; padding: 14px 18px; border-radius: var(--radius); border: none; font-size: 15px; outline: none; }
.signup-form input:focus { box-shadow: 0 0 0 3px rgba(200,169,81,0.5); }
.signup-form button {
  background: var(--gold); color: var(--dark); padding: 14px 26px; border-radius: var(--radius);
  font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; transition: var(--transition);
}
.signup-form button:hover { background: var(--gold-light); }
.signup-fine { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 12px; }
.signup-success { font-size: 18px; font-weight: 600; color: #fff; }

/* =========================================
   CART
   ========================================= */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 34px; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item { display: flex; gap: 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px; align-items: center; }
.cart-item-image { width: 84px; height: 84px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 36px; overflow: hidden; }
.cart-item-info { flex: 1; }
.cart-item-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.cart-item-size { font-size: 13px; color: var(--gray); }
.cart-item-price { font-weight: 700; font-size: 16px; color: var(--red); }
.cart-item-controls { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--border); font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.qty-btn:hover { border-color: var(--red); color: var(--red); }
.qty-display { font-weight: 700; min-width: 20px; text-align: center; }
.remove-btn { color: var(--gray); font-size: 12px; margin-left: 8px; transition: color 0.2s; }
.remove-btn:hover { color: var(--red); }
.order-summary { background: var(--white); border-radius: var(--radius-lg); padding: 26px; border: 1px solid var(--border); position: sticky; top: calc(var(--announce-h) + var(--header-h) + 20px); box-shadow: var(--shadow); }
.order-summary h3 { font-family: var(--font-display); font-size: 21px; font-weight: 700; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 9px 0; border-bottom: 1px solid var(--border); }
.summary-row:last-of-type { border-bottom: none; }
.summary-total { display: flex; justify-content: space-between; font-family: var(--font-display); font-size: 22px; font-weight: 800; padding: 16px 0 20px; }
.trust-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; justify-content: center; }
.trust-badge { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); padding: 6px 10px; font-size: 11px; font-weight: 500; color: var(--gray); display: flex; align-items: center; gap: 4px; }
.empty-cart { text-align: center; padding: 72px 20px; }
.empty-cart .empty-icon { font-size: 60px; margin-bottom: 16px; }
.empty-cart h2 { font-family: var(--font-display); font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.empty-cart p { color: var(--gray); margin-bottom: 24px; }

/* =========================================
   PRODUCT DETAIL
   ========================================= */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.product-detail-image { border-radius: var(--radius-lg); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 120px; position: sticky; top: calc(var(--announce-h) + var(--header-h) + 24px); }
.product-detail-badge { display: inline-block; background: var(--gold); color: var(--dark); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 5px 11px; border-radius: 3px; margin-bottom: 14px; }
.product-detail-info h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 4vw, 42px); line-height: 1.1; margin-bottom: 14px; letter-spacing: -0.5px; }
.product-detail-rating { margin-bottom: 16px; font-size: 14px; color: var(--gray); }
.product-detail-price { font-family: var(--font-display); font-size: 38px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.product-detail-original { font-size: 18px; color: var(--gray); text-decoration: line-through; margin-bottom: 16px; }
.product-detail-desc { font-size: 15.5px; line-height: 1.75; color: #524d43; margin-bottom: 26px; font-weight: 300; }
.size-section { margin-bottom: 22px; }
.size-section label { font-weight: 600; font-size: 14px; display: block; margin-bottom: 8px; }
.size-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.size-btn { padding: 9px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-weight: 600; font-size: 14px; transition: var(--transition); background: var(--white); }
.size-btn:hover, .size-btn.selected { border-color: var(--red); color: var(--red); background: #FBF1EC; }
.qty-section { margin-bottom: 26px; }
.qty-section label { font-weight: 600; font-size: 14px; display: block; margin-bottom: 8px; }
.qty-control { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; width: fit-content; }
.qty-control button { padding: 10px 16px; font-size: 18px; font-weight: 700; transition: background 0.2s; }
.qty-control button:hover { background: var(--light-gray); }
.qty-control .qty-num { padding: 10px 20px; font-weight: 700; font-size: 16px; border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border); min-width: 50px; text-align: center; }
.detail-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.product-details-list { padding-top: 26px; border-top: 1px solid var(--border); }
.product-details-list h3 { font-family: var(--font-display); font-weight: 700; margin-bottom: 12px; }
.product-details-list li { padding: 7px 0; font-size: 14px; color: #524d43; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--border); }
.product-details-list li::before { content: '✦'; color: var(--gold); font-weight: 700; }

/* =========================================
   SHOP FILTERS
   ========================================= */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.filter-btn { padding: 9px 20px; border: 1.5px solid var(--border); border-radius: 100px; font-weight: 500; font-size: 14px; transition: var(--transition); background: var(--white); }
.filter-btn:hover { border-color: var(--red); color: var(--red); }
.filter-btn.active { background: var(--red); color: #fff; border-color: var(--red); }
.shop-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.products-count { font-size: 14px; color: var(--gray); }

/* =========================================
   SUCCESS
   ========================================= */
.success-page { text-align: center; padding: 80px 20px; max-width: 600px; margin: 0 auto; }
.success-icon { font-size: 76px; margin-bottom: 24px; }
.success-page h1 { font-family: var(--font-display); font-size: 42px; font-weight: 800; color: var(--success); margin-bottom: 12px; }
.success-page p { font-size: 16px; color: var(--gray); margin-bottom: 32px; }
.success-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========================================
   FOOTER
   ========================================= */
footer { background: var(--dark); color: rgba(243,236,221,0.8); padding: 56px 20px 26px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 44px; margin-bottom: 40px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand .logo .logo-blue { color: #F3ECDD; }
.footer-brand p { font-size: 13.5px; max-width: 300px; line-height: 1.7; font-weight: 300; color: rgba(243,236,221,0.66); }
.footer-col h4 { font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: 0.5px; color: var(--gold); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { font-size: 13.5px; color: rgba(243,236,221,0.7); transition: color 0.2s; font-weight: 300; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(243,236,221,0.12); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; color: rgba(243,236,221,0.5); }
.footer-flags { font-size: 18px; letter-spacing: 4px; }

/* =========================================
   TOAST
   ========================================= */
.toast { position: fixed; bottom: 24px; right: 24px; background: var(--dark); color: #F3ECDD; padding: 14px 20px; border-radius: var(--radius); font-weight: 500; font-size: 14px; box-shadow: var(--shadow-lg); opacity: 0; transform: translateY(20px); transition: opacity 0.3s, transform 0.3s; pointer-events: none; z-index: 9999; max-width: 300px; }
.toast.show { opacity: 1; transform: translateY(0); }
.toast-success { border-left: 3px solid var(--gold); }
.toast-error { border-left: 3px solid var(--red); }

/* =========================================
   PAGE HERO / BREADCRUMB / URGENCY
   ========================================= */
.page-hero {
  background:
    radial-gradient(900px 380px at 50% -20%, rgba(200,169,81,0.16), transparent 60%),
    linear-gradient(180deg, #FBF6EC, #F1E7D5);
  color: var(--dark);
  padding: 56px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-family: var(--font-display); font-size: clamp(34px, 5vw, 54px); font-weight: 800; letter-spacing: -0.5px; }
.page-hero p { font-size: 16px; color: #6b6558; margin-top: 8px; font-weight: 300; }
.breadcrumb { font-size: 13px; color: var(--gray); padding: 14px 20px; max-width: 1200px; margin: 0 auto; display: flex; gap: 6px; align-items: center; }
.breadcrumb a { color: var(--red); }
.breadcrumb span { color: var(--gray); }
.urgency-bar { background: #FBF3DD; border: 1px solid #E9D9A6; border-radius: var(--radius); padding: 10px 14px; font-size: 13px; font-weight: 500; color: #7A5A16; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }

/* =========================================
   SCROLL REVEAL
   ========================================= */
[data-reveal] { opacity: 0; transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); will-change: opacity, transform; }
[data-reveal="up"] { transform: translateY(38px); }
[data-reveal="left"] { transform: translateX(-38px); }
[data-reveal="right"] { transform: translateX(38px); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal="fade"] { transform: none; }
[data-reveal].revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; } }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .cart-layout { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .product-detail-image { position: static; max-width: 360px; margin: 0 auto; font-size: 80px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  :root { --announce-h: 0px; }
  .announcement-bar { display: none; }
  nav#main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 16px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg); }
  nav#main-nav.open { display: flex; }
  #menu-toggle { display: flex; }
  header { position: relative; }
  .logo { font-size: 21px; }
  .hero { padding: 56px 16px; }
  .hero-trust { gap: 18px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-info { padding: 13px; }
  .proof-bar-inner { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .signup-form { flex-direction: column; }
  .signup-form button { width: 100%; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .section { padding: 48px 16px; }
  .cart-item-image { width: 64px; height: 64px; font-size: 28px; }
  .success-actions { flex-direction: column; align-items: center; }
}
