  :root {
    --green-deep: #1a2a5c;
    --green-mid: #26398c;
    --green-light: #3f5bb5;
    --green-pale: #eef1f8;
    --green-accent: #8fa3d9;
    --gold: #e63946;
    --gold-dark: #c62828;
    /* accents used on the dark navy sections */
    --sky: #a8bdf0;
    --sky-bright: #c9d8fb;
    --sky-deep: #7f9ce4;
    --white: #ffffff;
    --text-dark: #000000;
    --text-mid: #000000;
    --text-light: #000000;
    --cream: #f7f8fc;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: 'DM Sans', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; }

  nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 5%; height: 118px; box-sizing: border-box; overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  }
  .logo { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 800; color: var(--text-dark); letter-spacing: -0.5px; display: flex; align-items: center; height: 100%; }
  nav .logo { justify-content: center; width: 185px; margin-left: 75px; overflow: hidden; }
  nav .logo img { height: 215px; width: 215px; max-width: none; flex: none; display: block; object-fit: contain; }
  .logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { color: var(--text-dark); text-decoration: none; font-size: 1.05rem; font-weight: 500; transition: color 0.2s; }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta { background: var(--gold); color: var(--white); border: none; padding: 10px 24px; border-radius: 50px; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: all 0.25s; box-shadow: 0 4px 14px rgba(230,57,70,0.4); }
  .nav-cta:hover { background: var(--gold-dark); transform: translateY(-1px); }

  .hero { min-height: 100vh; background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 55%, #2f4aa0 100%); display: flex; align-items: center; padding: 140px 5% 60px; position: relative; overflow: hidden; }
  .hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(143,163,217,0.18) 0%, transparent 70%); border-radius: 50%; }
  .hero::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(168,189,240,0.16) 0%, transparent 70%); border-radius: 50%; }
  .hero-content { flex: 1; z-index: 2; max-width: 560px; }
  .hero-badge { display: inline-block; max-width: 100%; background: rgba(168,189,240,0.16); border: 1px solid rgba(168,189,240,0.55); color: var(--sky-bright); font-size: clamp(0.66rem, 2.6vw, 0.8rem); font-weight: 600; letter-spacing: 1.2px; padding: 6px 16px; border-radius: 50px; margin-bottom: 1.2rem; text-transform: uppercase; }
  .hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.85rem, 7.5vw, 4.2rem); color: var(--white); line-height: 1.12; margin-bottom: 1.2rem; }
  .hero h1 em { color: var(--sky-bright); font-style: normal; }
  .hero p { color: rgba(255,255,255,0.82); font-size: clamp(0.95rem, 3.2vw, 1.1rem); line-height: 1.7; margin-bottom: 2rem; font-weight: 300; }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary { background: var(--sky); color: var(--green-deep); border: none; padding: 14px 32px; border-radius: 50px; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1rem; cursor: pointer; transition: all 0.25s; box-shadow: 0 6px 20px rgba(168,189,240,0.35); }
  .btn-primary:hover { background: var(--sky-bright); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(168,189,240,0.5); }
  .btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.45); padding: 14px 32px; border-radius: 50px; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.25s; }
  .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
  .hero-visual { flex: 1; z-index: 2; display: flex; justify-content: center; align-items: center; }
  .hero-bottle-wrap { position: relative; width: 100%; max-width: 520px; aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; }
  .hero-circle { position: absolute; width: min(380px, 78vw); height: min(380px, 78vw); border-radius: 50%; background: rgba(255,255,255,0.07); border: 2px solid rgba(255,255,255,0.12); animation: pulse 3s ease-in-out infinite; }
  .hero-circle:nth-child(2) { width: min(470px, 94vw); height: min(470px, 94vw); animation-delay: 1s; }
  .hero-bottle-wrap img { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover; border-radius: 26px; border: 3px solid rgba(255,255,255,0.18); box-shadow: 0 28px 64px rgba(0,0,0,0.38); }
  @keyframes pulse { 0%,100%{transform:scale(1);opacity:0.6} 50%{transform:scale(1.05);opacity:1} }
  @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
  .hero-stats { display: flex; flex-wrap: wrap; gap: 1rem 2rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.15); }
  .stat { text-align: center; }
  .stat-num { font-family: 'Playfair Display', serif; font-size: clamp(1.35rem, 4.6vw, 1.8rem); font-weight: 800; color: var(--sky-bright); }
  .stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }

  .section { padding: 80px 5%; }
  .section-header { text-align: center; margin-bottom: 3rem; }
  .section-tag { display: inline-block; color: var(--green-mid); font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.6rem; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.55rem, 5.5vw, 2.8rem); color: var(--text-dark); line-height: 1.2; }
  .section-title em { color: var(--green-mid); font-style: normal; }
  .section-sub { color: var(--text-light); font-size: 1rem; margin-top: 0.8rem; max-width: 540px; margin-left: auto; margin-right: auto; }

  /* WHY */
  .why-section { background: var(--cream); }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
  .why-features { display: grid; gap: 1.4rem; }
  .why-card { background: var(--white); border-radius: 16px; padding: 1.4rem 1.6rem; display: flex; gap: 1rem; align-items: flex-start; box-shadow: 0 2px 16px rgba(26,42,92,0.08); border: 1px solid rgba(26,42,92,0.1); transition: transform 0.25s, box-shadow 0.25s; }
  .why-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(26,42,92,0.14); }
  .why-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
  .why-card h4 { font-size: 1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.3rem; }
  .why-card p { font-size: 0.87rem; color: var(--text-light); line-height: 1.6; }
  .why-big-card { background: linear-gradient(145deg, var(--green-deep), var(--green-mid)); border-radius: 24px; padding: 2.5rem; color: var(--white); text-align: center; box-shadow: 0 20px 60px rgba(26,42,92,0.3); }
  .why-big-card img { margin-bottom: 1.2rem; object-fit: contain; filter: drop-shadow(0 14px 30px rgba(0,0,0,0.35)); }
  .why-big-card h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 0.8rem; }
  .why-big-card p { opacity: 0.85; line-height: 1.7; font-size: 0.95rem; }
  .why-badges { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; margin-top: 1.5rem; }
  .badge { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); color: var(--white); font-size: 0.78rem; font-weight: 600; padding: 5px 14px; border-radius: 50px; }

  /* ABOUT US */
  .about-section { background: var(--white); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .about-text-block h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--text-dark); margin-bottom: 1rem; line-height: 1.3; }
  .about-text-block p { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }
  .about-highlight { background: var(--green-pale); border-left: 4px solid var(--green-mid); border-radius: 0 12px 12px 0; padding: 1rem 1.4rem; margin: 1.4rem 0; font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; font-style: italic; }
  .about-visual-card { background: linear-gradient(145deg, var(--green-deep), var(--green-mid)); border-radius: 24px; padding: 2.5rem; color: var(--white); text-align: center; box-shadow: 0 20px 60px rgba(26,42,92,0.25); }
  .about-visual-card h4 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 1.2rem; }
  .about-timeline { display: grid; gap: 1rem; text-align: left; }
  .timeline-item { display: flex; gap: 1rem; align-items: flex-start; }
  .tl-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--sky); flex-shrink: 0; margin-top: 5px; }
  .tl-title { font-weight: 700; font-size: 0.9rem; color: var(--white); }
  .tl-desc { font-size: 0.8rem; color: rgba(255,255,255,0.65); line-height: 1.5; margin-top: 0.2rem; }
  .about-location-box { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 14px; padding: 1.2rem; margin-top: 1.5rem; text-align: center; }
  .about-location-box p { font-size: 0.88rem; color: rgba(255,255,255,0.8); line-height: 1.6; }
  .about-location-box strong { color: var(--sky-bright); }

  /* PRODUCTS — full-bleed split rows: a colour panel on one side, packs on the other */
  .products-section { background: var(--cream); padding: 80px 0 0; }
  .products-section .section-header { padding: 0 5%; }
  .prod-group { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
  .prod-copy { background: linear-gradient(150deg, var(--green-deep) 0%, var(--green-mid) 100%); color: var(--white); display: flex; flex-direction: column; justify-content: center; text-align: center; padding: 5rem 3.5rem; }
  .prod-copy h3 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 800; margin-bottom: 1.2rem; }
  .prod-copy p { font-size: 1.05rem; line-height: 1.9; color: rgba(255,255,255,0.8); max-width: 420px; margin: 0 auto; font-weight: 300; }
  .prod-cards { background: var(--cream); padding: 4rem 3.5rem; display: flex; flex-wrap: wrap; justify-content: center; align-content: center; gap: 3rem 2rem; }
  .prod-card { flex: 0 1 210px; text-align: center; }
  .prod-card img { height: 210px; max-width: 100%; object-fit: contain; cursor: zoom-in; filter: drop-shadow(0 16px 30px rgba(26,42,92,0.22)); transition: transform 0.3s ease; }
  .prod-card:hover img { transform: translateY(-8px) scale(1.04); }
  .prod-card h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--green-mid); margin-top: 1.1rem; }
  .prod-sizes { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.8rem; padding-top: 0.8rem; border-top: 1px solid rgba(26,42,92,0.18); }
  .prod-sizes button { background: none; border: none; padding: 0; font-family: 'DM Sans', sans-serif; font-size: 0.86rem; color: var(--text-mid); cursor: pointer; transition: color 0.2s; }
  .prod-sizes button:hover { color: var(--gold); text-decoration: underline; }
  .prod-sizes i { color: var(--gold); font-style: normal; font-size: 0.7rem; }

  /* Click-to-zoom lightbox for the pack shots */
  .zoom-overlay { display: none; position: fixed; inset: 0; z-index: 10000; background: rgba(10,16,38,0.88); backdrop-filter: blur(6px); align-items: center; justify-content: center; padding: 4vh 5vw; cursor: zoom-out; opacity: 0; transition: opacity 0.25s; }
  .zoom-overlay.open { display: flex; opacity: 1; }
  .zoom-overlay img { max-width: 100%; max-height: 80vh; object-fit: contain; transform: scale(0.94); transition: transform 0.25s cubic-bezier(.34,1.4,.64,1); }
  .zoom-overlay.open img { transform: scale(1); }
  .zoom-caption { position: absolute; bottom: 5vh; left: 0; right: 0; text-align: center; color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; }
  .zoom-caption span { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 500; color: var(--sky-bright); letter-spacing: 1px; text-transform: uppercase; margin-top: 0.3rem; }
  .zoom-close { position: absolute; top: 3vh; right: 3vw; background: rgba(255,255,255,0.15); border: none; color: var(--white); width: 42px; height: 42px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }
  .zoom-close:hover { background: rgba(255,255,255,0.28); }

  /* DELIVERY */
  .delivery-section { background: var(--green-deep); }
  .delivery-section .section-title { color: var(--white); }
  .delivery-section .section-tag { color: var(--green-accent); }
  .delivery-section .section-sub { color: rgba(255,255,255,0.65); }
  /* stretch, so the steps column and the map card end at the same height */
  .delivery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: stretch; margin-top: 2rem; }
  .delivery-steps { display: grid; gap: 1rem; grid-auto-rows: 1fr; }
  .delivery-step { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 1.4rem; display: flex; gap: 1rem; align-items: flex-start; transition: background 0.2s; }
  .delivery-step:hover { background: rgba(255,255,255,0.12); }
  .step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--sky); color: var(--green-deep); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.95rem; flex-shrink: 0; }
  .delivery-step h4 { color: var(--white); font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; }
  .delivery-step p { color: rgba(255,255,255,0.65); font-size: 0.86rem; line-height: 1.6; }
  .delivery-map-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; padding: 2rem; display: flex; flex-direction: column; }
  .delivery-map-card h3 { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 0.4rem; }
  .delivery-map-card .sub-note { color: rgba(255,255,255,0.45); font-size: 0.78rem; margin-bottom: 1.2rem; }
  .areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .area-pill { background: rgba(143,163,217,0.15); border: 1px solid rgba(143,163,217,0.3); color: var(--green-accent); font-size: 0.82rem; font-weight: 500; padding: 7px 14px; border-radius: 8px; text-align: center; transition: background 0.2s; }
  .area-pill:hover { background: rgba(143,163,217,0.25); }
  .sample-address-box { background: rgba(168,189,240,0.10); border: 1px solid rgba(168,189,240,0.30); border-radius: 14px; padding: 1.2rem; margin-top: 1.2rem; }
  .sample-address-box h4 { color: var(--sky-bright); font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.8rem; }
  .address-item { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.75rem; }
  .address-item:last-child { margin-bottom: 0; }
  .addr-icon { font-size: 0.9rem; flex-shrink: 0; margin-top: 2px; }
  .addr-text { font-size: 0.8rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
  .addr-text strong { color: rgba(255,255,255,0.95); display: block; font-size: 0.82rem; margin-bottom: 1px; }
  .delivery-cta { margin-top: auto; padding-top: 1.5rem; text-align: center; }

  /* NUTRITION */
  .nutrition-section { background: var(--cream); }
  .nutrition-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
  .nutrition-card { background: var(--white); border-radius: 20px; padding: 1.8rem; box-shadow: 0 2px 16px rgba(26,42,92,0.08); border-left: 5px solid var(--green-mid); transition: transform 0.25s; }
  .nutrition-card:hover { transform: translateY(-4px); }
  .nutrition-card:nth-child(2) { border-left-color: var(--gold); }
  .nutrition-card:nth-child(3) { border-left-color: #e07b54; }
  .nutrition-card:nth-child(4) { border-left-color: #5b8dd9; }
  .nutrition-card:nth-child(5) { border-left-color: #a855d4; }
  .nut-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
  .nut-name { font-weight: 700; color: var(--text-dark); font-size: 1rem; margin-bottom: 0.4rem; }
  .nut-desc { font-size: 0.84rem; color: var(--text-light); line-height: 1.6; }
  .nut-banner { background: linear-gradient(135deg, var(--green-mid), var(--green-deep)); border-radius: 24px; padding: 2.5rem; text-align: center; margin-top: 2rem; color: var(--white); }
  .nut-banner p { font-size: 1.2rem; font-weight: 300; opacity: 0.9; }
  .nut-banner strong { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 800; color: var(--sky-bright); }
  footer { background: var(--green-deep); padding: 3.2rem 5% 2.6rem; }
  .footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2.5rem; align-items: start; justify-items: center; }
  .footer-col { width: 100%; max-width: 300px; text-align: center; }
  .footer-col h4 { color: var(--white); font-size: 0.95rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-align: center; margin-bottom: 1.4rem; }
  .footer-address p { color: rgba(255,255,255,0.82); font-size: 0.92rem; line-height: 2; margin: 0; text-align: center; }
  .footer-address p strong { display: block; color: var(--white); font-weight: 700; }
  .footer-map-link { display: inline-block; margin-top: 0.9rem; color: var(--sky-bright); font-size: 0.85rem; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(201,216,251,0.4); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
  .footer-map-link:hover { color: var(--white); border-color: var(--white); }
  /* the logo PNG carries ~25% transparent padding, cropped off with negative margins */
  .footer-logo { justify-self: center; align-self: start; display: flex; align-items: center; justify-content: center; background: var(--white); border-radius: 16px; overflow: hidden; }
  .footer-logo img { height: 230px; width: auto; display: block; margin: -48px -36px; }
  .footer-links { list-style: none; text-align: center; }
  .footer-links li { margin-bottom: 0.85rem; }
  .footer-links li:last-child { margin-bottom: 0; }
  .footer-links a { color: rgba(255,255,255,0.8); font-size: 0.92rem; text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--sky-bright); }
  /* multi-page nav: current page marker + mobile menu button */
  nav .logo { text-decoration: none; }
  .nav-links a.active { color: var(--gold); font-weight: 700; }
  .nav-links a.active::after { content: ''; display: block; height: 2px; background: var(--gold); border-radius: 2px; margin-top: 4px; }
  .nav-toggle { display: none; background: none; border: none; font-size: 1.7rem; line-height: 1; color: var(--green-deep); cursor: pointer; padding: 4px 6px; margin-left: 0.6rem; }

  @media(max-width: 900px) {
    .prod-group { grid-template-columns: 1fr; }
    .prod-copy { padding: 3rem 1.6rem; }
    .prod-cards { padding: 2.5rem 1.6rem; gap: 2.2rem 1.2rem; }
    .prod-card img { height: 175px; }
  }
  @media(max-width: 800px) {
    nav .logo { width: 95px; margin-left: 0; }
    nav .logo img { height: 145px; width: 145px; }
    .hero { flex-direction: column; text-align: center; padding-top: 150px; }
    .hero-stats { justify-content: center; }
    .hero-btns { justify-content: center; }
    .hero-visual { margin-top: 2rem; }
    .hero-circle { width: min(290px, 72vw); height: min(290px, 72vw); }
    .hero-circle:nth-child(2) { width: min(350px, 86vw); height: min(350px, 86vw); }
    .why-grid, .delivery-grid, .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 2.2rem; text-align: center; }
    .footer-address p { text-align: center; }
    .footer-logo { order: -1; justify-self: center; }
    .footer-logo img { height: 210px; margin: -55px -33px; }
    /* the links become a drop-down panel under the fixed bar */
    nav { overflow: visible; height: 96px; }
    nav .logo img { height: 120px; width: 120px; }
    .nav-toggle { display: block; }
    nav .nav-links { display: none; position: fixed; top: 96px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--white); padding: 0.3rem 0; border-top: 1px solid var(--green-pale); box-shadow: 0 14px 30px rgba(0,0,0,0.14); }
    nav .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 0.95rem 6%; font-size: 1rem; }
    nav .nav-links a.active::after { display: none; }
    .nav-cta { padding: 9px 18px; font-size: 0.82rem; }
    .page-top { padding-top: 140px; }
  }

  .order-btn { cursor: pointer !important; transition: all 0.2s !important; user-select: none; }
  .order-btn:hover { background: var(--green-deep) !important; transform: scale(1.05) !important; box-shadow: 0 4px 14px rgba(26,42,92,0.35) !important; }

  /* inner pages start below the fixed nav */
  .page-top { padding-top: 190px; }
  .products-section.page-top { padding-top: 190px; }
  /* mobile menu button — hidden on desktop */

  /* very small phones (≈320px): tighten padding and pack sizes */
  @media(max-width: 520px) {
    .section { padding: 56px 5%; }
    .hero { padding: 120px 5% 48px; }
    .hero-btns { gap: 0.6rem; }
    .btn-primary, .btn-outline { padding: 12px 20px; font-size: 0.9rem; }
    .hero-bottle-wrap img { border-radius: 18px; border-width: 2px; }
    .section-header { margin-bottom: 2rem; }
    .prod-copy { padding: 2.4rem 1.2rem; }
    .prod-cards { padding: 2.2rem 1.2rem; gap: 2rem 1rem; }
    .prod-card { flex: 0 1 150px; }
    .prod-card img { height: 145px; }
    .prod-sizes button { font-size: 0.8rem; }
    .why-card, .delivery-step, .delivery-map-card, .why-big-card, .about-visual-card { padding: 1.2rem; }
    .areas-grid { grid-template-columns: 1fr; }
    .footer-address, .footer-col { padding: 0; }
    .footer-logo img { height: 170px; margin: -44px -27px; }
  }
