/* ============================================================
   PLUTEK KICKS
   MAIN STYLESHEET
   Phase 1 — Frontend
============================================================ */


/* ============================================================
   1. RESET
============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f8f8f5;
    color: #111111;
    line-height: 1.5;
}

body.no-scroll {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

ul {
    list-style: none;
}


/* ============================================================
   2. VARIABLES
============================================================ */

:root {

    /* Brand */
    --green: #a8d500;
    --green-dark: #8eb600;
    --lime: #d9f76a;

    /* Dark */
    --ink: #111111;
    --dark: #171717;
    --dark-soft: #222222;

    /* Neutral */
    --white: #ffffff;
    --cream: #f8f8f5;
    --light: #f1f1ed;
    --border: #deded8;
    --muted: #777777;
    --muted-light: #999999;

    /* Layout */
    --container: 1240px;

    /* Radius */
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    /* Shadows */
    --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 15px 40px rgba(0, 0, 0, 0.10);
}


/* ============================================================
   3. GLOBAL LAYOUT
============================================================ */

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

section {
    width: 100%;
}


/* ============================================================
   4. ACCESSIBILITY
============================================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* ============================================================
   5. ANNOUNCEMENT BAR
============================================================ */

.announcement-bar {
    background: var(--ink);
    color: var(--white);
    min-height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 8px 20px;
}

.announcement-bar p {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-align: center;
}


/* ============================================================
   6. HEADER
============================================================ */

.site-header {
    background: var(--cream);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 100;
}

.header-inner {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* ============================================================
   LOGO
============================================================ */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-mark {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--green);
    color: var(--ink);

    border-radius: 50%;

    object-fit: cover;

    font-size: 13px;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.logo-text {
    font-size: 12px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-text strong {
    font-weight: 900;
}


/* ============================================================
   BRAND (simplified header — cart, checkout, account, etc.)
============================================================ */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
}

.brand-mark {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    background: var(--green);
    color: var(--ink);

    border-radius: 50%;

    object-fit: cover;

    font-size: 13px;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.brand-name {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: -0.02em;
}


/* ============================================================
   DESKTOP NAV
============================================================ */

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;

    margin-left: auto;
    margin-right: auto;
}

.main-nav a {
    position: relative;

    font-size: 12px;
    font-weight: 700;
    color: #555555;

    padding: 8px 0;

    transition:
        color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--ink);
}

.main-nav a.active::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;
    background: var(--green);
}


/* ============================================================
   HEADER ACTIONS
============================================================ */

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-button {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--ink);

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.icon-button:hover {
    background: var(--light);
    transform: translateY(-1px);
}

.icon-button span {
    font-size: 21px;
}


.cart-button {
    min-height: 40px;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 0 13px;

    background: var(--ink);
    color: var(--white);

    border-radius: 999px;

    font-size: 11px;
    font-weight: 800;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.cart-button:hover {
    background: var(--dark-soft);
    transform: translateY(-1px);
}

.cart-count {
    width: 19px;
    height: 19px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--green);
    color: var(--ink);

    font-size: 9px;
    font-weight: 900;
}


/* ============================================================
   MOBILE MENU BUTTON
============================================================ */

.mobile-menu-button {
    display: none;

    width: 40px;
    height: 40px;

    border-radius: 10px;

    font-size: 22px;
}


/* ============================================================
   MOBILE MENU
============================================================ */

.mobile-menu {
    display: none;

    background: var(--white);
    border-top: 1px solid var(--border);

    padding: 20px;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
}

.mobile-menu a {
    padding: 15px 0;

    border-bottom: 1px solid var(--border);

    font-size: 15px;
    font-weight: 700;
}


/* ============================================================
   7. HERO
============================================================ */

.hero {
    padding: 70px 0 100px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 70px;
}


/* ============================================================
   HERO CONTENT
============================================================ */

.hero-content {
    max-width: 570px;
}

.eyebrow {
    margin-bottom: 16px;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: #707070;
}

.hero h1 {
    font-size: clamp(58px, 6vw, 88px);

    line-height: 0.88;

    letter-spacing: -0.065em;

    font-weight: 950;
}

.hero h1 span {
    color: var(--green-dark);
}

.hero-description {
    max-width: 430px;

    margin-top: 28px;

    color: #666666;

    font-size: 17px;
    line-height: 1.65;
}


/* ============================================================
   HERO BUTTONS
============================================================ */

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 34px;
}

.btn {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 0 20px;

    border-radius: 999px;

    font-size: 11px;
    font-weight: 900;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--ink);
    color: var(--white);

    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--dark-soft);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;

    border: 1px solid #cfcfc8;

    color: var(--ink);
}

.btn-secondary:hover {
    background: var(--white);
}


/* ============================================================
   HERO IMAGE
============================================================ */

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    aspect-ratio: 1 / 0.92;

    overflow: hidden;

    background: #e9e9e4;

    border-radius: var(--radius-lg);
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.hero-image:hover img {
    transform: scale(1.035);
}


/* ============================================================
   DELIVERY CARD
============================================================ */

.delivery-card {
    position: absolute;

    left: -25px;
    bottom: -25px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 18px;

    background: var(--white);

    border: 1px solid rgba(0, 0, 0, 0.05);

    border-radius: 16px;

    box-shadow: var(--shadow-md);
}

.delivery-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--lime);

    font-size: 19px;
}

.delivery-card strong {
    display: block;

    font-size: 11px;
    font-weight: 900;
}

.delivery-card span {
    display: block;

    margin-top: 2px;

    color: var(--muted);

    font-size: 10px;
}


/* ============================================================
   8. BRAND STRIP
============================================================ */

.brand-strip {
    background: var(--ink);
    color: var(--white);

    padding: 18px 0;
}

.brand-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 18px;
}

.brand-strip span {
    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.18em;

    color: #cccccc;
}

.brand-strip span:nth-child(2n) {
    color: var(--green);
}


/* ============================================================
   9. FEATURED PRODUCTS
============================================================ */

.featured-section {
    padding: 110px 0;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 38px;
}

.section-header h2 {
    font-size: clamp(38px, 4vw, 56px);

    line-height: 0.95;

    letter-spacing: -0.055em;

    font-weight: 950;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding-bottom: 5px;

    border-bottom: 1px solid var(--ink);

    font-size: 11px;
    font-weight: 900;
}

.view-all span {
    transition: transform 0.2s ease;
}

.view-all:hover span {
    transform: translateX(4px);
}


/* ============================================================
   HOME PRODUCT LIST SECTIONS
   (New Stuff, Popular Choices, Combo Deals, Promotions)
============================================================ */

.home-products-section {
    padding: 70px 0;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 38px;
}

.section-heading h2 {
    font-size: clamp(32px, 3.4vw, 44px);

    line-height: 0.95;

    letter-spacing: -0.045em;

    font-weight: 950;
}

.section-heading p {
    margin-top: 8px;

    color: var(--muted);

    font-size: 13px;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding-bottom: 5px;

    border-bottom: 1px solid var(--ink);

    font-size: 11px;
    font-weight: 900;

    white-space: nowrap;
}

.section-link:hover {
    opacity: 0.7;
}

.empty-products {
    padding: 60px 20px;

    text-align: center;

    border: 1px dashed var(--border);
}

.empty-products h3 {
    font-size: 16px;
    font-weight: 900;
}

.empty-products p {
    margin-top: 8px;

    color: var(--muted);

    font-size: 13px;
}


/* ============================================================
   TESTIMONIALS
============================================================ */

.testimonials-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    margin-bottom: 50px;
}

.testimonial-card {
    padding: 26px;

    border: 1px solid var(--border);

    background: #f7f7f5;
}

.testimonial-stars {
    display: flex;

    gap: 3px;

    margin-bottom: 14px;
}

.testimonial-stars i {
    width: 15px;
    height: 15px;
}

.star-filled {
    color: var(--ink);

    fill: var(--ink);
}

.star-empty {
    color: var(--border);
}

.testimonial-review {
    font-size: 13px;
    line-height: 1.6;

    color: #333;
}

.testimonial-name {
    margin-top: 16px;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.04em;
    text-transform: uppercase;

    color: var(--muted);
}

.testimonial-form-wrap {
    max-width: 560px;

    padding: 34px;

    border: 1px solid var(--border);
}

.testimonial-form-wrap h3 {
    font-size: 20px;
    font-weight: 900;
}

.testimonial-form-wrap > p {
    margin-top: 6px;

    color: var(--muted);

    font-size: 13px;
}

.testimonial-form {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 16px;

    margin-top: 22px;
}

.testimonial-form-row {
    display: flex;
    flex-direction: column;

    gap: 6px;
}

.testimonial-form-row.full-width {
    grid-column: 1 / -1;
}

.testimonial-form-row label {
    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: var(--muted);
}

.testimonial-form-row input,
.testimonial-form-row select,
.testimonial-form-row textarea {
    padding: 12px 14px;

    border: 1px solid var(--border);

    background: var(--white);

    font-family: inherit;
    font-size: 13px;

    resize: vertical;
}

.testimonial-form button {
    grid-column: 1 / -1;

    justify-self: start;
}

.testimonial-form-status {
    grid-column: 1 / -1;

    font-size: 12px;
    font-weight: 700;
}

.testimonial-form-status.success {
    color: var(--green-dark, #1f7a4d);
}

.testimonial-form-status.error {
    color: #c23b3b;
}


/* ============================================================
   PRODUCT GRID
============================================================ */

.product-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


/* ============================================================
   PRODUCT CARD
============================================================ */

.product-card {
    min-width: 0;
}

.product-image {
    position: relative;

    display: block;

    overflow: hidden;

    aspect-ratio: 0.9 / 1;

    background: #eeeeea;

    border-radius: 18px;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}


/* ============================================================
   PRODUCT BADGE
============================================================ */

.product-badge {
    position: absolute;

    top: 12px;
    left: 12px;

    z-index: 2;

    padding: 7px 10px;

    background: var(--ink);
    color: var(--white);

    border-radius: 999px;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 0.1em;
}

.product-badge.new {
    background: var(--green);
    color: var(--ink);
}


/* ============================================================
   PRODUCT INFO
============================================================ */

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 15px;

    padding: 15px 2px 0;
}

.product-info h3 {
    font-size: 13px;
    font-weight: 900;

    line-height: 1.2;
}

.product-info p {
    margin-top: 5px;

    color: var(--muted);

    font-size: 10px;
}

.product-info strong {
    white-space: nowrap;

    font-size: 12px;
    font-weight: 900;
}

.product-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    gap: 2px;
}

.product-compare-price {
    white-space: nowrap;

    font-size: 10px;
    font-weight: 600;

    color: var(--muted);

    text-decoration: line-through;
}


/* ============================================================
   SIZE GUIDE CTA
============================================================ */

.size-guide-cta {
    padding: 60px 0;
    background: var(--ink);
    color: var(--white);
}

.size-guide-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.size-guide-cta .eyebrow {
    color: var(--green-dark);
}

.size-guide-cta h2 {
    margin-top: 8px;

    font-size: clamp(26px, 3vw, 34px);
    font-weight: 900;
    letter-spacing: -0.03em;
}

.size-guide-cta > .size-guide-cta-inner > div > p:last-child {
    margin-top: 8px;

    color: #ccc;
    font-size: 13px;
}

.size-guide-cta .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.size-guide-cta .btn-secondary:hover {
    background: var(--white);
    color: var(--ink);
}


/* ============================================================
   10. PROMOTIONAL SECTION
============================================================ */

.promo-section {
    padding: 0 0 110px;
}

.promo-grid {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    min-height: 540px;

    background: var(--ink);
    color: var(--white);

    border-radius: var(--radius-lg);

    overflow: hidden;
}

.promo-image {
    min-height: 500px;
}

.promo-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.promo-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 60px;
}

.promo-content .eyebrow {
    color: #aaaaaa;
}

.promo-content h2 {
    font-size: clamp(42px, 5vw, 68px);

    line-height: 0.92;

    letter-spacing: -0.06em;

    font-weight: 950;
}

.promo-content p:not(.eyebrow) {
    max-width: 420px;

    margin-top: 25px;

    color: #bdbdbd;

    font-size: 14px;
    line-height: 1.7;
}

.promo-content .btn {
    align-self: flex-start;

    margin-top: 30px;

    background: var(--green);
    color: var(--ink);
}

.promo-content .btn:hover {
    background: var(--lime);
}


/* ============================================================
   11. FEATURES
============================================================ */

.features-section {
    padding: 0 0 110px;
}

.section-header.centered {
    display: block;

    text-align: center;

    margin-bottom: 55px;
}

.section-header.centered .eyebrow {
    margin-bottom: 12px;
}

.features-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.feature {
    padding: 38px 25px;

    text-align: center;

    border-right: 1px solid var(--border);
}

.feature:last-child {
    border-right: none;
}

.feature-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 18px;

    background: var(--lime);

    border-radius: 50%;

    font-size: 20px;
}

.feature h3 {
    font-size: 13px;
    font-weight: 900;
}

.feature p {
    max-width: 210px;

    margin: 9px auto 0;

    color: var(--muted);

    font-size: 11px;
    line-height: 1.6;
}


/* ============================================================
   12. NEWSLETTER
============================================================ */

.newsletter-section {
    background: var(--lime);

    padding: 70px 0;
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;
}

.newsletter-inner h2 {
    font-size: clamp(38px, 4vw, 56px);

    line-height: 0.95;

    letter-spacing: -0.055em;

    font-weight: 950;
}

.newsletter-inner > div > p:last-child {
    max-width: 480px;

    margin-top: 15px;

    color: #505c27;

    font-size: 13px;
}

.newsletter-form {
    display: flex;

    width: min(100%, 480px);

    background: var(--white);

    padding: 6px;

    border-radius: 999px;

    box-shadow: var(--shadow-sm);
}

.newsletter-form input {
    flex: 1;

    min-width: 0;

    padding: 0 18px;

    border: none;
    outline: none;

    background: transparent;

    font-size: 12px;
}

.newsletter-form .btn {
    flex-shrink: 0;
}


/* ============================================================
   13. FOOTER
============================================================ */

.site-footer {
    background: var(--ink);
    color: var(--white);
}

.footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 60px;

    padding-top: 75px;
    padding-bottom: 70px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    color: var(--white);
}

.footer-brand > p {
    margin-top: 22px;

    color: #a5a5a5;

    font-size: 12px;
    line-height: 1.7;
}

.social-links {
    display: flex;

    gap: 8px;

    margin-top: 22px;
}

.social-links a {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #444444;

    border-radius: 50%;

    color: #dddddd;

    font-size: 8px;
    font-weight: 900;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.social-links a:hover {
    background: var(--green);
    color: var(--ink);
    border-color: var(--green);
}

.social-links svg {
    width: 16px;
    height: 16px;
}


/* ============================================================
   FOOTER COLUMNS
============================================================ */

.footer-column {
    display: flex;
    flex-direction: column;

    align-items: flex-start;
}

.footer-column h3 {
    margin-bottom: 20px;

    color: #999999;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 0.17em;

    text-transform: uppercase;
}

.footer-column a {
    margin-bottom: 11px;

    color: #d2d2d2;

    font-size: 11px;

    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--green);
}


/* ============================================================
   FOOTER BOTTOM
============================================================ */

.footer-bottom {
    border-top: 1px solid #292929;
}

.footer-bottom .container {
    min-height: 65px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    color: #707070;

    font-size: 9px;
}


/* ============================================================
   14. SEARCH OVERLAY
============================================================ */

.search-overlay {
    position: fixed;

    inset: 0;

    z-index: 999;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    padding: 120px 20px;

    background: rgba(17, 17, 17, 0.78);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.search-overlay.open {
    opacity: 1;
    visibility: visible;
}

.search-box {
    position: relative;

    width: min(700px, 100%);

    padding: 45px;

    background: var(--cream);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-md);
}

.search-box h2 {
    font-size: clamp(35px, 5vw, 55px);

    line-height: 0.95;

    letter-spacing: -0.055em;

    font-weight: 950;
}

.search-box form {
    display: flex;

    gap: 8px;

    margin-top: 30px;
}

.search-box input {
    flex: 1;

    min-width: 0;

    height: 50px;

    padding: 0 16px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 999px;

    outline: none;

    font-size: 12px;
}

.search-box input:focus {
    border-color: var(--green-dark);
}

.search-close {
    position: absolute;

    top: 20px;
    right: 20px;

    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--white);

    border-radius: 50%;

    font-size: 22px;
}


/* ============================================================
   15. TABLET
============================================================ */

@media (max-width: 1000px) {

    .main-nav {
        gap: 18px;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;

        gap: 40px;
    }

    .hero h1 {
        font-size: clamp(52px, 7vw, 72px);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 18px;
    }

    .promo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .promo-content {
        padding: 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature:nth-child(2) {
        border-right: none;
    }

    .feature:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }

    .newsletter-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: 2 / 4;
    }
}


/* ============================================================
   16. MOBILE
============================================================ */

@media (max-width: 760px) {

    .container {
        width: min(var(--container), calc(100% - 28px));
    }


    /* Header */

    .header-inner {
        min-height: 70px;
    }

    .main-nav {
        display: none;
    }

    .header-actions .icon-button {
        display: none;
    }

    .mobile-menu-button {
        display: flex;

        align-items: center;
        justify-content: center;
    }


    /* Hero */

    .hero {
        padding: 45px 0 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .hero-content {
        max-width: none;
    }

    .hero h1 {
        font-size: clamp(56px, 17vw, 90px);
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-image {
        aspect-ratio: 1 / 1;
    }

    .delivery-card {
        left: 12px;
        bottom: -18px;
    }


    /* Brand strip */

    .brand-strip-inner {
        gap: 10px;
    }

    .brand-strip span {
        font-size: 7px;
    }


    /* Featured */

    .featured-section {
        padding: 80px 0;
    }

    .section-header {
        align-items: flex-start;
        flex-direction: column;

        gap: 18px;
    }

    .section-header h2 {
        font-size: 44px;
    }


    /* Home product list sections (New Stuff, Popular Choices, Combo Deals, Promotions) */

    .home-products-section {
        padding: 50px 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 14px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 30px 12px;
    }

    .product-info {
        display: block;
    }


    /* Testimonials */

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-form {
        grid-template-columns: 1fr;
    }

    .testimonial-form-wrap {
        padding: 24px;
    }

    .product-info strong {
        display: block;

        margin-top: 7px;
    }


    /* Promo */

    .promo-section {
        padding-bottom: 80px;
    }

    .promo-grid {
        grid-template-columns: 1fr;

        min-height: auto;

        border-radius: 20px;
    }

    .promo-image {
        min-height: 350px;
    }

    .promo-content {
        padding: 45px 25px 50px;
    }

    .promo-content h2 {
        font-size: 50px;
    }


    /* Features */

    .features-section {
        padding-bottom: 80px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature {
        border-right: none !important;
        border-bottom: 1px solid var(--border);
    }

    .feature:last-child {
        border-bottom: none;
    }


    /* Newsletter */

    .newsletter-section {
        padding: 55px 0;
    }

    .newsletter-inner h2 {
        font-size: 43px;
    }

    .newsletter-form {
        flex-direction: column;

        padding: 8px;

        border-radius: 18px;
    }

    .newsletter-form input {
        height: 48px;
    }

    .newsletter-form .btn {
        width: 100%;
    }


    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 45px 25px;

        padding-top: 60px;
        padding-bottom: 55px;
    }

    .footer-brand {
        grid-column: 1 / -1;

        max-width: none;
    }

    .footer-column:last-child {
        grid-column: auto;
    }

    .footer-bottom .container {
        min-height: 80px;

        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        gap: 5px;
    }


    /* Search */

    .search-overlay {
        padding: 70px 14px;
    }

    .search-box {
        padding: 35px 20px;
    }

    .search-box form {
        flex-direction: column;
    }

    .search-box input {
        width: 100%;
    }

    .search-box .btn {
        width: 100%;
    }
}


/* ============================================================
   17. SMALL MOBILE
============================================================ */

@media (max-width: 420px) {

    .logo-text {
        display: none;
    }

    .cart-button span:first-child {
        display: none;
    }

    .hero h1 {
        font-size: 58px;
    }

    .product-grid {
        gap: 28px 10px;
    }

    .product-info h3 {
        font-size: 12px;
    }

    .product-info p {
        font-size: 9px;
    }

    .promo-content h2 {
        font-size: 43px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-column:last-child {
        grid-column: auto;
    }
}


/* ============================================================
   18. REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}

/* ============================================================
   18. Gives missing images cleaner appearance
============================================================ */


.image-error {
    background: #eeeeea;
    object-fit: contain;
    opacity: 0.5;
}

/* ============================================================
   PREMIUM ICONS
============================================================ */

.icon-button,
.cart-button,
.mobile-menu-button,
.filter-button,
.search-close,
#closeFilters {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-button svg,
.cart-button svg,
.mobile-menu-button svg,
.filter-button svg,
.search-close svg,
#closeFilters svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.7;
}

.icon-button:hover svg,
.cart-button:hover svg {
    transform: translateY(-1px);
}

.icon-button svg,
.cart-button svg,
.mobile-menu-button svg {
    transition: transform 0.2s ease;
}

.filter-button {
    gap: 8px;
}

.filter-button svg {
    width: 15px;
    height: 15px;
}

.feature-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);
    border-radius: 50%;

    background: var(--white);
}

.feature-icon svg {
    width: 20px;
    height: 20px;

    stroke-width: 1.7;
}