/* ═══════════════════════════════════════════════════
   style.css — Chameleon Murals
   Organised sections:
   1.  Variables
   2.  Reset
   3.  Typography helpers
   4.  Announcement bar
   5.  Nav
   6.  Footer
   7.  Buttons
   8.  Hero (index)
   9.  Cans / Design & Illustration (index)
   10. Carousel (index)
   11. About page
   12. Store page
   13. Product detail page
   14. Cart popup
   15. Cart page
   16. Responsive breakpoints
═══════════════════════════════════════════════════ */


/* ─────────────────────────────────────
   1. VARIABLES
───────────────────────────────────── */
:root {
  --orange:        #f04e1a;
  --orange-dark:   #d03d0e;
  --green:         #5abf4a;
  --off-white:     #f5f4f0;
  --white:         #ffffff;
  --charcoal:      #1a1a1a;
  --mid-grey:      #666666;
  --light-grey:    #dddddd;
  --nav-height:    80px;
}


/* ─────────────────────────────────────
   2. RESET
───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  background: var(--off-white);
  color: var(--charcoal);
  overflow-x: hidden;
}
a   { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }


/* ─────────────────────────────────────
   3. TYPOGRAPHY HELPERS
───────────────────────────────────── */
.font-display   { font-family: 'Bebas Neue', sans-serif; }
.font-condensed { font-family: 'Barlow Condensed', sans-serif; }
.font-fredoka   { font-family: 'Fredoka One', cursive; }
.font-nunito    { font-family: 'Nunito', sans-serif; }


/* ─────────────────────────────────────
   4. ANNOUNCEMENT BAR
───────────────────────────────────── */
.announcement-bar {
  background: var(--orange);
  color: #171556;
  text-align: center;
  padding: 0.55rem 3rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
}

.announcement-close {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.announcement-close:hover { opacity: 1; }


/* ─────────────────────────────────────
   5. NAV
───────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #171556;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: var(--nav-height);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-logo { display: flex; align-items: center; }

.nav-logo-img { height: auto; width: auto; max-height: 50px; max-width: 40%; object-fit: contain; }

@media (min-width: 768px) and (max-width: 1023px) {
  .nav-logo-img { max-height: 36px; max-width: 45%; }
}

@media (max-width: 767px) {
  .nav-logo-img { max-height: 28px; max-width: 55%; }
}

.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--charcoal);
}

.nav-logo img { height: 60px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--white);
  transform: scaleX(0);
  transition: transform 0.2s;
  transform-origin: left;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-cart {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--white);
  cursor: pointer;
  transition: color 0.2s;
}
.nav-cart:hover { color: var(--orange); }

.cart-count { font-size: 0.85rem; font-weight: 600; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}


/* ─────────────────────────────────────
   6. FOOTER
───────────────────────────────────── */
.footer {
  background: var(--off-white);
  padding: 3rem 3rem 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.footer-pencil { width: 60px; }
.pencil-img    { width: 100%; height: auto; }
.pencil-placeholder { font-size: 2.5rem; line-height: 1; }

.footer-socials { display: flex; gap: 0.8rem; align-items: center; }

.social-icon {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(0,0,0,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: border-color 0.2s, color 0.2s;
}
.social-icon:hover { border-color: var(--orange); color: var(--orange); }


/* ─────────────────────────────────────
   7. BUTTONS
───────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.8rem 2.2rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.8rem 2.2rem;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--orange); color: var(--white); }


/* ─────────────────────────────────────
   8. HERO (index.html)
───────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: calc(100vh - var(--nav-height) - 38px);
  padding: 4rem 3rem 2rem;
  gap: 2rem;
  align-items: center;
}

.hero-left { padding-right: 2rem; }

.hero-title-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  margin-bottom: 2.5rem;
  display: block;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1rem;
  color: var(--mid-grey);
  line-height: 1.6;
  max-width: 340px;
  margin-bottom: 2.5rem;
}

.hero-right { position: relative; display: flex; justify-content: flex-end; }

.hero-img-wrap { position: relative; width: 100%; max-width: 100%; }
.hero-img      { width: 100%; height: auto; display: block; object-fit: contain; }

.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e8d84a 0%, #4ecdc4 40%, #e87050 70%, #5b4fa0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  font-size: 0.9rem;
}
.hero-img-wrap img + .hero-img-placeholder                       { display: none; }
.hero-img-wrap img[style*="display: none"] + .hero-img-placeholder { display: flex; }


/* ─────────────────────────────────────
   9. CANS / DESIGN & ILLUSTRATION
───────────────────────────────────── */
.cans-section {
  position: relative;
  padding: 4rem 3rem 6rem;
  background: var(--off-white);
  overflow: hidden;
  min-height: 600px;
}

.cans-text {
  position: relative;
  z-index: 2;
  max-width: 480px;
  margin-left: auto;
}

.section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--orange);
}

.section-underline {
  width: 100px;
  height: 4px;
  background: var(--orange);
  margin-top: 0.8rem;
}

.cans-scatter {
  position: absolute;
  top: 0; left: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
}

.can-img {
  position: absolute;
  width: 130px;
  height: auto;
  filter: drop-shadow(2px 4px 10px rgba(0,0,0,0.12));
  transition: transform 0.3s ease;
}
.can-img:hover { transform: scale(1.08) rotate(-2deg) !important; }

.can-1  { top: 5%;   left: 2%;   transform: rotate(-25deg); width: 100px; }
.can-2  { top: 15%;  left: 18%;  transform: rotate(-10deg); width: 120px; }
.can-3  { top: 0%;   left: 30%;  transform: rotate(5deg);   width: 115px; }
.can-4  { top: 30%;  left: 5%;   transform: rotate(-18deg); width: 140px; }
.can-5  { top: 25%;  left: 22%;  transform: rotate(8deg);   width: 130px; }
.can-6  { top: 40%;  left: 35%;  transform: rotate(-6deg);  width: 125px; }
.can-7  { top: 55%;  left: 10%;  transform: rotate(-15deg); width: 110px; }
.can-8  { top: 50%;  left: 28%;  transform: rotate(12deg);  width: 135px; }

.cans-placeholder {
  position: absolute;
  top: 50%; left: 15%;
  transform: translateY(-50%);
  color: rgba(0,0,0,0.2);
  font-style: italic;
  font-size: 0.9rem;
  pointer-events: none;
}


/* ─────────────────────────────────────
   10. CAROUSEL (index.html)
───────────────────────────────────── */
.carousel-section {
  padding: 4rem 0 5rem;
  background: var(--off-white);
  position: relative;
}

.carousel-track-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 3rem;
  overflow: hidden;
}

.carousel-arrow {
  flex-shrink: 0;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--charcoal);
  cursor: pointer;
  padding: 0.5rem;
  opacity: 0.5;
  transition: opacity 0.2s;
  z-index: 2;
}
.carousel-arrow:hover { opacity: 1; }

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.carousel-item { flex-shrink: 0; width: 180px; position: relative; }

.carousel-item img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: transparent;
}

.carousel-placeholder {
  width: 180px;
  height: 180px;
  background: rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: rgba(0,0,0,0.3);
  font-style: italic;
}
.carousel-item img + .carousel-placeholder                       { display: none; }
.carousel-item img[style*="display: none"] + .carousel-placeholder { display: flex; }


/* ─────────────────────────────────────
   11. ABOUT PAGE
───────────────────────────────────── */
.about-main {
  min-height: calc(100vh - var(--nav-height) - 38px - 80px);
  display: flex;
  align-items: flex-start;
  padding: 5rem 3rem;
}

.about-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.about-heading {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--green);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-img-col  { display: flex; justify-content: center; }
.about-img-wrap { position: relative; max-width: 380px; width: 100%; }
.about-img      { width: 100%; height: auto; border-radius: 4px; }

.about-img-placeholder { display: none; }
.about-img-wrap img + .about-img-placeholder                       { display: none; }
.about-img-wrap img[style*="display: none"] + .about-img-placeholder { display: flex; justify-content: center; }

.about-text-col { max-width: 520px; }

.about-body {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}

.about-email {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--charcoal);
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.about-email:hover { color: var(--green); }


/* ─────────────────────────────────────
   12. STORE PAGE
───────────────────────────────────── */
.store-main {
  padding: 3rem 3rem 5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.store-filters {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background: none;
  border: none;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mid-grey);
  cursor: pointer;
  padding: 0.3rem 0;
  position: relative;
  transition: color 0.2s;
  letter-spacing: 0.04em;
}
.filter-btn::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--charcoal);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.filter-btn.active,
.filter-btn:hover          { color: var(--charcoal); }
.filter-btn.active::after  { transform: scaleX(1); }

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.product-img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
  background: #fafaf8;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
  display: block;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }

.product-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.2);
  font-style: italic;
  font-size: 0.85rem;
  background: #f0eeea;
}
.product-img-wrap img + .product-img-placeholder                       { display: none; }
.product-img-wrap img[style*="display: none"] + .product-img-placeholder { display: flex; }

.product-info   { text-align: center; padding: 0 0.5rem; }

.product-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  font-weight: 400;
  color: #c8a020;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.product-price {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  color: var(--mid-grey);
  margin-bottom: 0.4rem;
}

.product-add {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  color: var(--mid-grey);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.product-add:hover { color: var(--orange); }


/* ─────────────────────────────────────
   13. PRODUCT DETAIL PAGE
───────────────────────────────────── */
.product-detail-main {
  padding: 2rem 3rem 5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  color: var(--mid-grey);
  margin-bottom: 2.5rem;
}
.breadcrumb a { color: var(--mid-grey); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--charcoal); }

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}

.product-detail-img-wrap {
  position: relative;
  width: 100%;
  min-height: 500px;
  background: #fafaf8;
}

.product-detail-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.product-detail-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.2);
  font-style: italic;
  font-size: 0.9rem;
  background: #f0eeea;
}
.product-detail-img-wrap img + .product-detail-img-placeholder                       { display: none; }
.product-detail-img-wrap img[style*="display: none"] + .product-detail-img-placeholder { display: flex; }

.product-detail-info { padding-top: 1rem; }

.product-detail-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--orange);
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}

.product-detail-price {
  font-family: 'Barlow', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.product-detail-meta        { margin-bottom: 2rem; }
.product-detail-meta p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.92rem;
  color: var(--charcoal);
  line-height: 1.8;
}

.product-detail-add {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--orange);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.product-detail-add:hover { background: var(--orange-dark); }


/* ─────────────────────────────────────
   14. CART POPUP
───────────────────────────────────── */
.cart-popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 90px 1.5rem 0;
  pointer-events: none;
}

.cart-popup {
  background: var(--white);
  border: 1px solid var(--light-grey);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  width: 320px;
  pointer-events: all;
}

.cart-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1rem;
  background: #f8f6f0;
  border-bottom: 1px solid var(--light-grey);
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}

.cart-popup-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--mid-grey);
  transition: color 0.2s;
}
.cart-popup-close:hover { color: var(--charcoal); }

.cart-popup-item {
  display: flex;
  gap: 0.8rem;
  padding: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--light-grey);
}

.cart-popup-img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  background: #f0eeea;
  flex-shrink: 0;
}

.cart-popup-item-title {
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.cart-popup-item-price {
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  color: var(--mid-grey);
}

.cart-popup-actions { display: grid; grid-template-columns: 1fr 1fr; }

.cart-popup-view {
  display: block;
  text-align: center;
  padding: 0.8rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  border: 1px solid var(--light-grey);
  transition: background 0.2s;
}
.cart-popup-view:hover { background: #f0eeea; }

.cart-popup-checkout {
  display: block;
  text-align: center;
  padding: 0.8rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  transition: background 0.2s;
}
.cart-popup-checkout:hover { background: var(--orange-dark); }


/* ─────────────────────────────────────
   15. CART PAGE
───────────────────────────────────── */
.cart-main {
  padding: 3rem 3rem 5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.cart-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--orange);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.cart-items { border-top: 1px solid var(--light-grey); }

.cart-item {
  display: grid;
  grid-template-columns: 60px 1fr auto auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: #f0eeea;
}

.cart-item-name {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cart-item-qty button {
  background: none;
  border: 1px solid var(--light-grey);
  width: 26px;
  height: 26px;
  cursor: pointer;
  font-size: 1rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.cart-item-qty button:hover { border-color: var(--charcoal); }

.cart-item-qty span {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  min-width: 20px;
  text-align: center;
}

.cart-item-price {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  min-width: 60px;
  text-align: right;
}

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--mid-grey);
  transition: color 0.2s;
  padding: 0.2rem;
}
.cart-item-remove:hover { color: var(--charcoal); }

.cart-divider { border: none; border-top: 1px solid var(--light-grey); margin: 0; }

.cart-empty {
  text-align: center;
  padding: 4rem 0;
  font-family: 'Barlow', sans-serif;
  color: var(--mid-grey);
}
.cart-empty p { margin-bottom: 1.5rem; }

.cart-summary {
  margin-top: 1rem;
  max-width: 400px;
  margin-left: auto;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  border-top: 1px solid var(--light-grey);
  margin-bottom: 1rem;
}

.cart-checkout-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--orange);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  transition: background 0.2s;
}
.cart-checkout-btn:hover { background: var(--orange-dark); }


/* ─────────────────────────────────────
   16. RESPONSIVE BREAKPOINTS
───────────────────────────────────── */

/* Large desktops 1536px+ */
@media (min-width: 1536px) {
  .nav            { padding: 0 5rem; }
  .hero           { padding: 5rem 5rem 3rem; gap: 4rem; }
  .hero-title     { font-size: 8rem; }
  .cans-section   { padding: 5rem 5rem 7rem; min-height: 700px; }
  .section-heading { font-size: 8rem; }
  .can-img        { width: 160px; }
  .carousel-section { padding: 5rem 0 6rem; }
  .carousel-item  { width: 220px; }
  .carousel-item img, .carousel-placeholder { width: 220px; height: 220px; }
  .footer         { padding: 3rem 5rem 2.5rem; }
}

/* Laptops 1280–1535px */
@media (min-width: 1280px) and (max-width: 1535px) {
  .nav          { padding: 0 4rem; }
  .hero         { padding: 4rem 4rem 2rem; }
  .cans-section { padding: 4rem 4rem 6rem; }
  .footer       { padding: 3rem 4rem 2rem; }
}

/* Tablets landscape 1024–1279px */
@media (min-width: 1024px) and (max-width: 1279px) {
  .nav            { padding: 0 2.5rem; }
  .hero           { padding: 3rem 2.5rem 2rem; gap: 1.5rem; }
  .hero-title     { font-size: 5.5rem; }
  .section-heading { font-size: 5rem; }
  .can-img        { width: 110px; }
  .cans-section   { min-height: 520px; }
  .carousel-item  { width: 160px; }
  .carousel-item img, .carousel-placeholder { width: 160px; height: 160px; }
  .store-grid     { grid-template-columns: repeat(2, 1fr); }
}

/* Tablets portrait 768–1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  :root { --nav-height: 70px; }
  .nav            { padding: 0 2rem; }
  .nav-links      { gap: 1.5rem; }
  .nav-link       { font-size: 0.82rem; }
  .hero           { grid-template-columns: 1fr 1fr; padding: 2.5rem 2rem 2rem; gap: 1.5rem; min-height: auto; }
  .hero-title     { font-size: 4rem; }
  .cans-section   { padding: 3rem 2rem 5rem; min-height: 480px; }
  .cans-text      { max-width: 380px; }
  .section-heading { font-size: 4rem; }
  .can-img        { width: 100px; }
  .carousel-track-wrap { padding: 0 2rem; }
  .carousel-item  { width: 150px; }
  .carousel-item img, .carousel-placeholder { width: 150px; height: 150px; }
  .footer         { padding: 2.5rem 2rem 2rem; }
  .about-main     { padding: 4rem 2rem; }
  .about-grid     { gap: 3rem; }
  .about-img-wrap { max-width: 300px; }
  .store-main     { padding: 2.5rem 2rem 4rem; }
  .store-grid     { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
  .product-detail-main  { padding: 2rem 2rem 4rem; }
  .product-detail-grid  { gap: 3rem; }
  .cart-main      { padding: 2rem 2rem 3rem; }
}

/* Phones landscape 480–767px */
@media (min-width: 480px) and (max-width: 767px) {
  :root { --nav-height: 64px; }
  .nav            { padding: 0 1.5rem; }
  .hamburger      { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height); left: 0; right: 0;
    background: #171556;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--light-grey);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .hero           { grid-template-columns: 1fr; padding: 2rem 1.5rem; min-height: auto; text-align: center; gap: 2rem; }
  .hero-left      { padding-right: 0; }
  .hero-title-img { margin: 0 auto 2rem; }
  .hero-sub       { margin: 0 auto 2rem; max-width: 100%; }
  .hero-right     { justify-content: center; }
  .cans-section   { padding: 3rem 1.5rem 4rem; min-height: 420px; }
  .cans-text      { margin-left: 0; }
  .section-heading { font-size: 3.5rem; }
  .cans-scatter   { opacity: 0.35; }
  .can-img        { width: 90px; }
  .carousel-track-wrap { padding: 0 1.2rem; }
  .carousel-item  { width: 145px; }
  .carousel-item img, .carousel-placeholder { width: 145px; height: 145px; }
  .footer         { padding: 2rem 1.5rem 1.5rem; }
  .footer-pencil  { width: 45px; }
  .about-main     { padding: 3rem 1.5rem; }
  .about-grid     { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .about-img-wrap { max-width: 260px; margin: 0 auto; }
  .about-text-col { max-width: 100%; }
  .store-main     { padding: 2rem 1.5rem 3rem; }
  .store-grid     { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
  .store-filters  { gap: 1.5rem; }
  .product-detail-main  { padding: 1.5rem 1.5rem 3rem; }
  .product-detail-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .product-detail-img-wrap { min-height: 300px; }
  .cart-main      { padding: 2rem 1.5rem 3rem; }
  .cart-item      { grid-template-columns: 50px 1fr auto; gap: 0.8rem; }
  .cart-item-price { display: none; }
  .cart-summary   { max-width: 100%; }
  .cart-popup-overlay { padding: 75px 0.5rem 0; }
}

/* Phones portrait < 480px */
@media (max-width: 479px) {
  :root { --nav-height: 60px; }
  .announcement-bar { font-size: 0.65rem; padding: 0.5rem 2.5rem 0.5rem 1rem; text-align: left; }
  .nav            { padding: 0 1rem; }
  .nav-logo-text  { font-size: 1.2rem; }
  .hamburger      { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height); left: 0; right: 0;
    background: #171556;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 1rem;
    gap: 1rem;
    border-bottom: 1px solid var(--light-grey);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-link       { font-size: 0.9rem; }
  .hero           { grid-template-columns: 1fr; padding: 1.5rem 1rem 2rem; min-height: auto; text-align: center; gap: 1.5rem; }
  .hero-left      { padding-right: 0; }
  .hero-eyebrow   { font-size: 0.65rem; }
  .hero-title-img { margin: 0 auto 1.8rem; }
  .hero-sub       { font-size: 0.88rem; margin: 0 auto 1.8rem; }
  .hero-right     { justify-content: center; }
  .cans-section   { padding: 2.5rem 1rem 3.5rem; min-height: 360px; }
  .cans-text      { margin-left: 0; max-width: 100%; }
  .section-heading { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .section-underline { width: 60px; height: 3px; }
  .cans-scatter   { width: 100%; opacity: 0.25; }
  .can-img        { width: 75px; }
  .can-1  { top: 5%;  left: 0%;   width: 70px; }
  .can-2  { top: 15%; left: 15%;  width: 80px; }
  .can-3  { top: 0%;  left: 28%;  width: 75px; }
  .can-4  { top: 32%; left: 2%;   width: 85px; }
  .can-5  { top: 28%; left: 20%;  width: 80px; }
  .can-6  { top: 44%; left: 32%;  width: 78px; }
  .can-7  { top: 55%; left: 8%;   width: 72px; }
  .can-8  { top: 52%; left: 25%;  width: 82px; }
  .carousel-section { padding: 2.5rem 0 3.5rem; }
  .carousel-track-wrap { padding: 0 0.8rem; gap: 0.5rem; }
  .carousel-arrow { font-size: 1.1rem; padding: 0.3rem; }
  .carousel-item  { width: 120px; }
  .carousel-item img, .carousel-placeholder { width: 120px; height: 120px; }
  .footer         { padding: 1.5rem 1rem 1.2rem; flex-wrap: wrap; gap: 1rem; justify-content: center; }
  .footer-pencil  { width: 40px; }
  .social-icon    { width: 34px; height: 34px; }
  .about-main     { padding: 2rem 1rem 3rem; }
  .about-grid     { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .about-img-wrap { max-width: 220px; margin: 0 auto; }
  .about-heading  { font-size: clamp(1.3rem, 6vw, 1.8rem); }
  .about-body     { font-size: 0.88rem; line-height: 1.7; }
  .store-main     { padding: 1.5rem 1rem 3rem; }
  .store-grid     { grid-template-columns: 1fr; gap: 2rem; }
  .store-filters  { gap: 1rem; }
  .filter-btn     { font-size: 0.82rem; }
  .product-detail-main  { padding: 1rem 1rem 3rem; }
  .product-detail-grid  { grid-template-columns: 1fr; gap: 1.5rem; }
  .product-detail-img-wrap { min-height: 250px; }
  .product-detail-title { font-size: 1.6rem; }
  .cart-main      { padding: 1.5rem 1rem 3rem; }
  .cart-item      { grid-template-columns: 50px 1fr auto; gap: 0.8rem; }
  .cart-item-price { display: none; }
  .cart-summary   { max-width: 100%; }
  .cart-popup-overlay { padding: 70px 0.5rem 0; }
  .cart-popup     { width: 100%; }
}


/* ─────────────────────────────────────
   17. CHECKOUT PAGE
───────────────────────────────────── */

.checkout-main {
  min-height: calc(100vh - var(--nav-height) - 38px - 80px);
  padding: 3rem 1.5rem 5rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.checkout-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  width: 100%;
  max-width: 560px;
  padding: 2rem;
}

.checkout-title {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--light-grey);
}

/* Items */
.checkout-items {
  margin-bottom: 1.5rem;
}

.checkout-item {
  display: grid;
  grid-template-columns: 56px 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--light-grey);
}

.checkout-item-img-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  background: #f0eeea;
  flex-shrink: 0;
}

.checkout-item-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.checkout-item-qty {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--charcoal);
  color: var(--white);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
}

.checkout-item-name {
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  color: var(--charcoal);
}

.checkout-item-price {
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  color: var(--charcoal);
  font-weight: 500;
}

.checkout-item-remove {
  background: none;
  border: none;
  font-family: 'Barlow', sans-serif;
  font-size: 0.75rem;
  color: var(--mid-grey);
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.checkout-item-remove:hover { color: var(--orange); }

/* Discount */
.checkout-discount { margin-bottom: 1.5rem; }

.checkout-label {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 0.5rem;
}

.checkout-discount-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
}

.checkout-input {
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--light-grey);
  border-right: none;
  background: var(--white);
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
}
.checkout-input:focus { border-color: var(--charcoal); }

.checkout-apply-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  padding: 0.65rem 1rem;
  background: var(--charcoal);
  color: var(--white);
  border: 1px solid var(--charcoal);
  cursor: pointer;
  transition: background 0.2s;
}
.checkout-apply-btn:hover { background: #333; }

/* Totals */
.checkout-totals {
  border-top: 1px solid var(--light-grey);
  padding-top: 1rem;
  margin-bottom: 1.5rem;
}

.checkout-totals-row {
  display: flex;
  justify-content: space-between;
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  color: var(--charcoal);
  padding: 0.3rem 0;
}

.checkout-totals-total {
  font-weight: 600;
  font-size: 0.95rem;
  border-top: 1px solid var(--light-grey);
  margin-top: 0.5rem;
  padding-top: 0.8rem;
}

/* Additional info */
.checkout-additional {
  border-top: 1px solid var(--light-grey);
  margin-bottom: 1.5rem;
}

.checkout-additional-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 0;
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
}

.checkout-additional-body {
  padding-bottom: 1rem;
}

.checkout-select {
  width: 100%;
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--light-grey);
  background: var(--white);
  color: var(--charcoal);
  outline: none;
  cursor: pointer;
  appearance: auto;
}

.checkout-textarea {
  width: 100%;
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--light-grey);
  background: var(--white);
  color: var(--charcoal);
  outline: none;
  resize: vertical;
  min-height: 80px;
  transition: border-color 0.2s;
}
.checkout-textarea:focus { border-color: var(--charcoal); }

/* Payment */
.checkout-payment { margin-bottom: 1rem; }

.checkout-payment-placeholder {
  background: #f8f6f0;
  border: 2px dashed var(--light-grey);
  padding: 2rem;
  text-align: center;
  margin-bottom: 0.75rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  color: var(--mid-grey);
  line-height: 1.8;
}

.checkout-more-options {
  display: block;
  width: 100%;
  padding: 0.7rem;
  background: none;
  border: 1px solid var(--light-grey);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--charcoal);
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
}
.checkout-more-options:hover { background: #f0eeea; }

/* Secure badge */
.checkout-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--mid-grey);
  padding-top: 1rem;
  border-top: 1px solid var(--light-grey);
}

/* Responsive */
@media (max-width: 767px) {
  .checkout-main { padding: 2rem 1rem 4rem; }
  .checkout-card { padding: 1.5rem; }
  .checkout-item { grid-template-columns: 50px 1fr auto auto; gap: 0.75rem; }
}

@media (max-width: 479px) {
  .checkout-main { padding: 1.5rem 0.5rem 3rem; }
  .checkout-card { padding: 1.2rem; }
}


/* ─────────────────────────────────────
   18. FOOTER PENCIL (review link)
───────────────────────────────────── */
.footer-pencil {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  text-decoration: none;
  width: 60px;
  transition: opacity 0.2s;
}
.footer-pencil:hover { opacity: 0.75; }

.footer-pencil-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-grey);
  white-space: nowrap;
}


/* ─────────────────────────────────────
   19. REVIEW PAGE
───────────────────────────────────── */
.review-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 3rem 6rem;
}

/* Hero */
.review-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.review-heading {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.review-subheading {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  color: var(--mid-grey);
}

/* Existing reviews */
.reviews-container { margin-bottom: 4rem; }

.reviews-list-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.reviews-empty {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--mid-grey);
  font-style: italic;
  padding: 2rem 0;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--green);
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.review-card-name {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.review-card-location {
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  color: var(--mid-grey);
}

.review-card-stars { display: flex; gap: 0.1rem; }

.review-star { color: var(--light-grey); font-size: 1rem; }
.review-star.filled { color: #f0c040; }

.review-card-text {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.review-card-date {
  font-family: 'Barlow', sans-serif;
  font-size: 0.75rem;
  color: var(--mid-grey);
}

/* Form */
.review-form-wrap {
  background: var(--white);
  border: 1px solid var(--light-grey);
  padding: 2.5rem;
}

.review-form-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--orange);
  margin-bottom: 2rem;
}

.review-form-group { margin-bottom: 1.5rem; }

.review-form-label {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 0.5rem;
}

.review-form-input,
.review-form-textarea {
  width: 100%;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--light-grey);
  background: var(--off-white);
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
}
.review-form-input:focus,
.review-form-textarea:focus { border-color: var(--green); }

.review-form-textarea {
  min-height: 130px;
  resize: vertical;
}

/* Star rating */
.star-rating { display: flex; gap: 0.3rem; cursor: pointer; }

.star {
  font-size: 2rem;
  color: var(--light-grey);
  transition: color 0.15s, transform 0.15s;
  user-select: none;
}
.star:hover,
.star.active { color: #f0c040; transform: scale(1.15); }

/* Error / success */
.review-error {
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  color: var(--orange);
  background: #fff3f0;
  border: 1px solid var(--orange);
  padding: 0.6rem 1rem;
  margin-bottom: 1rem;
}

.review-submit-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  padding: 0.9rem 3rem;
  background: var(--orange);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.review-submit-btn:hover { background: var(--orange-dark); }

.review-success {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem;
}

.review-success-icon { font-size: 3rem; margin-bottom: 1rem; }

.review-success h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.review-success p {
  font-family: 'Nunito', sans-serif;
  color: var(--mid-grey);
}

/* Responsive */
@media (max-width: 767px) {
  .review-main { padding: 3rem 1.5rem 4rem; }
  .review-form-wrap { padding: 1.5rem; }
}

@media (max-width: 479px) {
  .review-main { padding: 2rem 1rem 3rem; }
  .review-form-wrap { padding: 1.2rem; }
  .star { font-size: 1.6rem; }
  .footer-pencil-label { display: none; }
}


/* ─────────────────────────────────────
   20. FOOTER LEGAL BAR
───────────────────────────────────── */
.footer-legal-bar {
  background: #e8e6e0;
  padding: 0.8rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-legal-link {
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  color: var(--mid-grey);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-legal-link:hover { color: var(--orange); }

.footer-legal-sep {
  color: var(--light-grey);
  font-size: 0.72rem;
}

.footer-legal-copy {
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  color: var(--light-grey);
}


/* ─────────────────────────────────────
   21. LEGAL PAGE
───────────────────────────────────── */
.legal-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 3rem 6rem;
}

.legal-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 3px solid var(--orange);
}

.legal-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  color: var(--mid-grey);
}

.legal-content { }

.legal-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--light-grey);
}
.legal-section:last-child { border-bottom: none; }

.legal-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.legal-section h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 1.5rem 0 0.6rem;
}

.legal-section p {
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
}

.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem;
}

.legal-section ul li {
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--charcoal);
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.3rem;
}
.legal-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.8rem;
}

.legal-section a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-section a:hover { color: var(--orange-dark); }

.legal-section strong { font-weight: 600; }

/* Responsive */
@media (max-width: 767px) {
  .legal-main { padding: 3rem 1.5rem 4rem; }
  .footer-legal-bar { padding: 0.8rem 1.5rem; }
  .footer-legal-copy { margin-left: 0; width: 100%; }
}

@media (max-width: 479px) {
  .legal-main { padding: 2rem 1rem 3rem; }
  .footer-legal-bar { padding: 0.8rem 1rem; gap: 0.5rem; }
}