/* ============================
   INTER (self-hosted, OFL — fonts/LICENSE-inter.txt)
   Replaces an @import of fonts.googleapis.com that used to sit at the top of
   this file. Self-hosting is faster: an @import is discovered only after this
   stylesheet has parsed, so the font request serialised behind it across two
   extra hosts (googleapis then gstatic). Same origin, no third-party request,
   and it keeps working if Google's font hosts are blocked.
   One variable file spans 400-900, which covers every weight the site uses.
   The unicode-range split means US visitors fetch only the 47KB latin file.
   ============================ */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/fonts/inter/Inter-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/fonts/inter/Inter-var-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ===================================
   USAshirt — Clean Patriotic Commerce
   Inspired by Grunt Style, Nine Line, RWB Apparel
   =================================== */


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Clay's original American navy/red, kept deliberately over the exact
     artwork samples (#022052 / #BF161D) — they sit ~4% apart, which is
     imperceptible in use, and these read truer as flag colours. */
  --navy: #0A1F44;
  --navy-light: #1B2A4A;
  --red: #B22234;
  --red-a20: rgba(178,34,52,.2);   /* --red at 20% */
  --red-hover: #C41E3A;
  --white: #FFFFFF;
  --off-white: #F8F8F8;
  --light-gray: #F2F2F2;
  --medium-gray: #E5E5E5;
  --text-dark: #1A1A1A;
  --text-body: #4A4A4A;
  --text-muted: #888888;
  --gold: #C9A227;
  /* The star colour from the mark. Two tones on purpose: this tone is only
     3.14:1 on white, so it's for fills and for text on navy (5.18:1); the
     darker one clears AA for text on white (4.86:1). Using the bright one as
     body text on white would be an accessibility failure. */
  --verdigris: #4D9F92;
  --verdigris-text: #3C7C72;
  --cream: #F5EFE0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-sm: 4px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ============================
   ANNOUNCEMENT BAR
   ============================ */
.announcement-bar {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.announcement-bar a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.announcement-bar a:hover {
  opacity: 0.9;
}

/* ============================
   NAVIGATION
   ============================ */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: var(--white);
  border-bottom: 1px solid var(--medium-gray);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav .logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.12em;
  display: inline-flex;
  align-items: center;
}

/* The real mark replaces the CSS-text wordmark. Height-constrained rather than
   width-constrained so it sits on the nav baseline at any viewport. */
nav .logo img {
  height: 34px;
  width: auto;
  display: block;
}
@media (max-width: 480px) {
  nav .logo img { height: 27px; }
}

nav .nav-links {
  display: flex;
  gap: 32px;
}

nav .nav-links a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

nav .nav-links a:hover {
  color: var(--navy);
}

nav .cart-link {
  position: relative;
  color: var(--text-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
}

nav .cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-secondary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 100px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/hero-bg.jpg') center center / cover no-repeat;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(10,31,68,0.55) 0%, rgba(10,31,68,0.70) 100%);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  max-width: 550px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.countdown-number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}

.countdown-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.countdown-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin-left: 8px;
}

/* ============================
   TRUST BAR
   ============================ */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 24px 40px;
  background: var(--off-white);
  border-bottom: 1px solid var(--medium-gray);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
}

.trust-item svg {
  color: var(--navy);
  flex-shrink: 0;
}

/* ============================
   SECTION HEADERS
   ============================ */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 400;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 12px;
}

/* ============================
   PRODUCTS
   ============================ */
.products {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #d0d0d0;
}

.product-image {
  height: 380px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

.product-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.product-placeholder span {
  font-size: 5rem;
  color: rgba(255,255,255,0.3);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: var(--white);
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
}

/* Despite the name this is the "American-made blank" line, not a score --
   the star rating came out on 2026-08-05 with the fabricated reviews.
   The verdigris (4.86:1 on white) used to live in a second, later rule that
   overrode a stale gold declaration here; folded into one rule so the file
   says what actually renders. letter-spacing was 2px, tuned for star
   glyphs, which is far too loose for words. */
.product-rating {
  color: var(--verdigris-text);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ============================
   ABOUT SECTION
   ============================ */
.about {
  background: var(--navy);
  color: var(--white);
  padding: 100px 40px;
  text-align: center;
}

.about-inner {
  max-width: 650px;
  margin: 0 auto;
}

.about h2 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

.about .btn {
  margin-top: 16px;
}

/* ============================
   REVIEWS
   ============================ */
.reviews {
  padding: 80px 40px;
  background: var(--off-white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--medium-gray);
  transition: box-shadow 0.2s;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}


.review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-author strong {
  font-size: 0.9rem;
  color: var(--text-dark);
}

.review-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================
   NEWSLETTER
   ============================ */
.newsletter {
  padding: 80px 40px;
  background: var(--white);
  text-align: center;
  border-top: 1px solid var(--medium-gray);
}

.newsletter-inner {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.newsletter p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  font-size: 0.95rem;
  font-family: inherit;
  border: 2px solid var(--medium-gray);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
  color: var(--text-dark);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form input:focus {
  border-color: var(--navy);
}

.newsletter-note {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ============================
   FOOTER
   ============================ */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 40px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-col h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-tagline {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem !important;
  margin-top: 8px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ============================
   TOAST
   ============================ */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   PRODUCT DETAIL PAGE
   ============================ */
.product-detail {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

.product-detail-media {
  min-width: 0;          /* grid items default to min-width:auto and would overflow */
}

.product-detail-image {
  height: 550px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 8rem;
  color: var(--text-muted);
}

.product-detail-image img,
.product-detail-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* The image is wrapped in a positioned div so the FRONT/BACK badge can sit on
   it. That wrapper must fill the 550px container, or the img's height:100%
   resolves against an auto-height parent and collapses to nothing — which
   shows as an empty grey box. */
.product-detail-image > div {
  width: 100%;
  height: 100%;
}

.product-detail-info h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.product-detail-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.product-detail-description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 32px;
}

.size-selector {
  margin-bottom: 32px;
}

.size-selector label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.size-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-btn {
  background: var(--white);
  border: 2px solid var(--medium-gray);
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: inherit;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  color: var(--text-dark);
}

.size-btn:hover {
  border-color: var(--navy);
}

.size-btn.selected {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ============================
   CART PAGE
   ============================ */
.cart-container {
  max-width: 1100px;
  margin: 60px auto;
  padding: 40px;
}

.cart-container h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.cart-items {
  background: var(--white);
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius);
  padding: 24px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px;
  border-bottom: 1px solid var(--light-gray);
}

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

.cart-item-image {
  width: 80px;
  height: 80px;
  background: var(--light-gray);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  overflow: hidden;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.cart-item-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.cart-item-price {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quantity-btn {
  background: var(--light-gray);
  color: var(--text-dark);
  border: 1px solid var(--medium-gray);
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  font-family: inherit;
}

.quantity-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.remove-btn {
  background: transparent;
  border: none;
  color: var(--red);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  transition: opacity 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.remove-btn:hover {
  opacity: 0.7;
}

.cart-summary {
  background: var(--off-white);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--medium-gray);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text-body);
}

.btn-checkout {
  background: var(--red);
  color: var(--white);
  border: none;
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.2s;
}

.btn-checkout:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.empty-cart {
  text-align: center;
  padding: 80px 20px;
}

.empty-cart p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .product-detail {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px 20px;
  }

  /* A grid item's default min-width is auto, so the size-guide table's
     min-content width (~694px) pushed this 1fr track wider than the phone and
     the whole page scrolled sideways. */
  .product-detail-image,
  .product-detail-info {
    min-width: 0;
  }

  .product-detail-info table {
    display: block;
    overflow-x: auto;
  }

  .product-detail-image {
    height: 400px;
  }
}

@media (max-width: 768px) {
  /* Five nav links plus the wordmark do not fit a phone. Left unwrapped the
     row ran to ~556px inside a 375px viewport: the logo collided with "Shop"
     and the cart icon sat off-screen where it could not be tapped. Drop the
     links to their own centred row and keep the cart reachable. */
  nav {
    padding: 14px 20px;
    flex-wrap: wrap;
    row-gap: 10px;
  }

  nav .nav-links {
    gap: 20px;
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  nav .nav-links a {
    font-size: 0.8rem;
  }

  .hero {
    padding: 60px 20px 50px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .countdown {
    gap: 12px;
  }

  .countdown-number {
    font-size: 1.5rem;
  }

  .countdown-text {
    flex-basis: 100%;
    margin-left: 0;
    text-align: center;
    margin-top: 8px;
  }

  .trust-bar {
    gap: 20px;
    padding: 20px;
  }

  .trust-item {
    font-size: 0.8rem;
  }

  .products {
    padding: 60px 20px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .about {
    padding: 60px 20px;
  }

  .about h2 {
    font-size: 2rem;
  }

  .reviews {
    padding: 60px 20px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .newsletter {
    padding: 60px 20px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  footer {
    padding: 40px 20px 20px;
  }

  .cart-item {
    flex-wrap: wrap;
    gap: 16px;
  }

  .product-detail {
    padding: 20px;
    margin: 40px auto;
  }

  .product-detail-info h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  
  nav .nav-links {
    gap: 14px;
  }
  
  .trust-bar {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* ============================
   VERDIGRIS ACCENT
   The star colour from the mark, used sparingly: hovers, rules and small
   affordances. It is deliberately NOT a second primary — the buttons stay red
   and the ground stays navy, or the flag reading gets lost.
   ============================ */
nav .nav-links a:hover { color: var(--verdigris-text); }
.trust-bar { border-top: 3px solid var(--verdigris); }
.footer-bottom a:hover { color: var(--verdigris); }
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--verdigris);
  outline-offset: 2px;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--verdigris);
  margin: 14px auto 0;
  border-radius: 2px;
}
