/* =========================================================
   MYSHOP
   PREMIUM BLACK + LIGHT YELLOW THEME
========================================================= */


/* =========================================================
   1. ROOT VARIABLES
========================================================= */

:root {

    --black: #050505;
    --black-soft: #0b0b0b;
    --card: #111111;
    --card-light: #161616;

    --yellow: #f6e58d;
    --yellow-bright: #ffe66d;
    --yellow-soft: #fff4b5;

    --white: #ffffff;
    --text: #eeeeee;
    --muted: #9b9b9b;

    --border: #272727;
    --border-light: #333333;

    --container: 1200px;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;

    --shadow-sm:
        0 8px 25px rgba(0, 0, 0, 0.30);

    --shadow-md:
        0 20px 60px rgba(0, 0, 0, 0.45);

    --transition: 0.3s ease;
}


/* =========================================================
   2. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    background: var(--black);

    color: var(--text);

    line-height: 1.6;

    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}

svg {
    display: block;
}


/* =========================================================
   3. CONTAINER
========================================================= */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;
}


/* =========================================================
   4. HEADER
========================================================= */

.site-header {

    width: 100%;

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(5, 5, 5, 0.94);

    border-bottom:
        1px solid var(--border);

    backdrop-filter: blur(14px);

    -webkit-backdrop-filter: blur(14px);
}

.header-inner {

    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {

    display: inline-flex;

    align-items: center;

    font-size: 27px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: -1px;

    color: var(--yellow);

    white-space: nowrap;
}

.logo span {

    color: var(--white);
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 34px;
}

.main-nav a {

    position: relative;

    padding: 28px 0;

    color: #bdbdbd;

    font-size: 13px;

    font-weight: 600;

    transition: var(--transition);
}

.main-nav a:hover {

    color: var(--yellow);
}

.main-nav a.active {

    color: var(--yellow);
}

.main-nav a.active::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 19px;

    width: 100%;

    height: 2px;

    margin: auto;

    background: var(--yellow);

    border-radius: 20px;

    box-shadow:
        0 0 10px rgba(246, 229, 141, 0.4);
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {

    display: flex;

    align-items: center;

    gap: 10px;
}

.cart-link {

    min-height: 43px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 0 14px;

    border:
        1px solid var(--border-light);

    border-radius: 8px;

    background: var(--card);

    color: var(--white);

    font-size: 13px;

    font-weight: 700;

    transition: var(--transition);
}

.cart-link:hover {

    border-color: var(--yellow);

    color: var(--yellow);

    transform: translateY(-1px);
}

.cart-link svg {

    width: 19px;

    height: 19px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;

    stroke-linejoin: round;
}

.cart-link b {

    min-width: 21px;

    height: 21px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0 5px;

    border-radius: 50%;

    background: var(--yellow);

    color: var(--black);

    font-size: 10px;

    font-weight: 800;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu-btn {

    width: 43px;

    height: 43px;

    display: none;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 5px;

    border:
        1px solid var(--border-light);

    border-radius: 8px;

    background: var(--card);
}

.mobile-menu-btn span {

    width: 19px;

    height: 2px;

    display: block;

    background: var(--white);

    border-radius: 10px;

    transition: var(--transition);
}


/* =========================================================
   5. HERO
========================================================= */

.hero {

    position: relative;

    min-height: 670px;

    display: flex;

    align-items: center;

    background:

        radial-gradient(
            circle at 85% 20%,
            rgba(246, 229, 141, 0.09),
            transparent 28%
        ),

        radial-gradient(
            circle at 10% 80%,
            rgba(246, 229, 141, 0.04),
            transparent 30%
        ),

        var(--black);

    overflow: hidden;
}

.hero::before {

    content: "";

    position: absolute;

    width: 520px;

    height: 520px;

    right: -300px;

    top: -230px;

    border:

        1px solid
        rgba(246, 229, 141, 0.12);

    border-radius: 50%;

    pointer-events: none;
}

.hero-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.03fr)
        minmax(0, 0.97fr);

    align-items: center;

    gap: 70px;

    padding: 90px 0;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {

    max-width: 650px;
}

.eyebrow,
.section-label {

    display: inline-block;

    color: var(--yellow);

    font-size: 10px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: 2.2px;
}

.eyebrow {

    position: relative;

    padding-left: 15px;

    margin-bottom: 22px;
}

.eyebrow::before {

    content: "";

    position: absolute;

    left: 0;

    top: 50%;

    width: 5px;

    height: 5px;

    transform: translateY(-50%);

    border-radius: 50%;

    background: var(--yellow);

    box-shadow:
        0 0 10px rgba(246, 229, 141, 0.6);
}

.hero-content h1 {

    max-width: 680px;

    margin-bottom: 25px;

    color: var(--white);

    font-size:
        clamp(42px, 5.2vw, 70px);

    line-height: 1.04;

    letter-spacing: -3px;

    font-weight: 800;
}

.hero-content h1 em {

    display: block;

    color: var(--yellow);

    font-style: normal;
}

.hero-content > p {

    max-width: 570px;

    margin-bottom: 34px;

    color: #a9a9a9;

    font-size: 16px;

    line-height: 1.85;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-actions {

    display: flex;

    align-items: center;

    gap: 26px;

    margin-bottom: 44px;
}

.btn {

    min-height: 51px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    padding: 0 24px;

    border-radius: 8px;

    font-size: 13px;

    font-weight: 800;

    transition: var(--transition);
}

.btn-primary {

    background: var(--yellow);

    color: var(--black);

    box-shadow:
        0 10px 30px
        rgba(246, 229, 141, 0.12);
}

.btn-primary:hover {

    background: var(--yellow-bright);

    transform: translateY(-2px);

    box-shadow:
        0 14px 35px
        rgba(246, 229, 141, 0.20);
}

.btn-primary span {

    font-size: 18px;

    transition: var(--transition);
}

.btn-primary:hover span {

    transform: translateX(4px);
}

.text-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--white);

    font-size: 13px;

    font-weight: 700;

    transition: var(--transition);
}

.text-link span {

    color: var(--yellow);

    transition: var(--transition);
}

.text-link:hover {

    color: var(--yellow);
}

.text-link:hover span {

    transform:
        translate(3px, -3px);
}


/* =========================================================
   HERO TRUST
========================================================= */

.hero-trust {

    display: flex;

    align-items: center;

    gap: 25px;
}

.trust-item {

    display: flex;

    flex-direction: column;

    gap: 2px;
}

.trust-item strong {

    color: var(--white);

    font-size: 12px;

    font-weight: 800;
}

.trust-item span {

    color: #777777;

    font-size: 10px;
}

.trust-divider {

    width: 1px;

    height: 35px;

    background: var(--border);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {

    display: flex;

    justify-content: center;
}

.hero-image-card {

    width: min(100%, 520px);

    position: relative;

    padding: 12px;

    border:
        1px solid #292929;

    border-radius: 25px;

    background: #0d0d0d;

    box-shadow:
        0 30px 90px
        rgba(0, 0, 0, 0.65);

    transform: rotate(1.3deg);

    transition: var(--transition);
}

.hero-image-card:hover {

    transform:
        rotate(0deg)
        translateY(-5px);

    border-color:
        rgba(246, 229, 141, 0.25);
}

.image-placeholder {

    min-height: 490px;

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 11px;

    border-radius: 18px;

    background:

        radial-gradient(
            circle at 50% 35%,
            rgba(246, 229, 141, 0.16),
            transparent 25%
        ),

        linear-gradient(
            145deg,
            #181818,
            #080808
        );

    color: var(--yellow);

    font-size: 13px;

    font-weight: 700;

    overflow: hidden;
}

.image-placeholder::before {

    content: "";

    position: absolute;

    width: 250px;

    height: 250px;

    border-radius: 50%;

    border:
        1px solid
        rgba(246, 229, 141, 0.12);
}

.placeholder-label {

    position: absolute;

    top: 25px;

    padding: 8px 13px;

    border:
        1px solid
        rgba(246, 229, 141, 0.18);

    border-radius: 30px;

    background:
        rgba(246, 229, 141, 0.06);

    color: var(--yellow);

    font-size: 9px;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}

.placeholder-icon {

    width: 76px;

    height: 76px;

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(246, 229, 141, 0.25);

    border-radius: 18px;

    background:
        rgba(246, 229, 141, 0.08);

    color: var(--yellow);

    font-size: 38px;

    font-weight: 300;
}


/* =========================================================
   FLOATING CARD
========================================================= */

.floating-card {

    position: absolute;

    left: -35px;

    bottom: 45px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 17px;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background: #101010;

    box-shadow:
        0 15px 40px
        rgba(0, 0, 0, 0.50);

    animation:
        floatingCard 4s ease-in-out infinite;
}

.floating-icon {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--yellow);

    color: var(--black);

    font-size: 16px;

    font-weight: 900;
}

.floating-card div:last-child {

    display: flex;

    flex-direction: column;
}

.floating-card strong {

    color: var(--white);

    font-size: 11px;
}

.floating-card span {

    color: #777777;

    font-size: 9px;
}

@keyframes floatingCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}


/* =========================================================
   6. FEATURE STRIP
========================================================= */

.feature-strip {

    background: #0b0b0b;

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);
}

.feature-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}

.feature-item {

    min-height: 125px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 20px 25px;

    border-right:
        1px solid var(--border);
}

.feature-item:first-child {

    padding-left: 0;
}

.feature-item:last-child {

    padding-right: 0;

    border-right: 0;
}

.feature-icon {

    width: 46px;

    height: 46px;

    flex: 0 0 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(246, 229, 141, 0.16);

    border-radius: 12px;

    background:
        rgba(246, 229, 141, 0.06);

    color: var(--yellow);
}

.feature-icon svg {

    width: 21px;

    height: 21px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.6;

    stroke-linecap: round;

    stroke-linejoin: round;
}

.feature-item h3 {

    margin-bottom: 3px;

    color: var(--white);

    font-size: 12px;

    font-weight: 800;
}

.feature-item p {

    color: #737373;

    font-size: 10px;

    line-height: 1.5;
}


/* =========================================================
   7. PRODUCTS
========================================================= */

.products-section {

    padding: 110px 0;

    background: var(--black);
}

.section-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 42px;
}

.section-heading h2 {

    margin-top: 12px;

    color: var(--white);

    font-size:
        clamp(30px, 3vw, 42px);

    line-height: 1.15;

    letter-spacing: -1.5px;

    font-weight: 800;
}

.view-all {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding-bottom: 5px;

    border-bottom:
        1px solid var(--yellow);

    color: var(--yellow);

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;

    transition: var(--transition);
}

.view-all span {

    transition: var(--transition);
}

.view-all:hover span {

    transform: translateX(4px);
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.products-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {

    background: var(--card);

    border:
        1px solid var(--border);

    border-radius: var(--radius-md);

    overflow: hidden;

    transition: var(--transition);
}

.product-card:hover {

    transform: translateY(-6px);

    border-color:
        rgba(246, 229, 141, 0.22);

    box-shadow: var(--shadow-md);
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.product-image {

    height: 310px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background:

        radial-gradient(
            circle at center,
            rgba(246, 229, 141, 0.08),
            transparent 35%
        ),

        linear-gradient(
            145deg,
            #171717,
            #0b0b0b
        );
}

.product-placeholder {

    color:
        rgba(246, 229, 141, 0.65);

    font-size: 12px;

    font-weight: 700;

    transition: var(--transition);
}

.product-card:hover
.product-placeholder {

    transform: scale(1.06);

    color: var(--yellow);
}

.product-badge {

    position: absolute;

    left: 15px;

    top: 15px;

    z-index: 2;

    padding: 7px 10px;

    border-radius: 5px;

    background: var(--yellow);

    color: var(--black);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 0.7px;

    text-transform: uppercase;
}

.product-badge.new {

    background: var(--white);

    color: var(--black);
}


/* =========================================================
   PRODUCT INFO
========================================================= */

.product-info {

    padding: 23px;

    background: var(--card);
}

.product-category {

    display: block;

    margin-bottom: 7px;

    color: var(--yellow);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}

.product-info h3 {

    margin-bottom: 8px;

    color: var(--white);

    font-size: 18px;

    line-height: 1.35;

    font-weight: 800;
}

.product-info h3 a {

    transition: var(--transition);
}

.product-info h3 a:hover {

    color: var(--yellow);
}

.product-description {

    min-height: 44px;

    margin-bottom: 20px;

    color: #818181;

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   PRODUCT BOTTOM
========================================================= */

.product-bottom {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 15px;

    padding-top: 17px;

    border-top:
        1px solid var(--border);
}

.product-price {

    display: flex;

    flex-direction: column;

    gap: 3px;
}

.product-price span {

    color: #707070;

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: 0.7px;
}

.product-price strong {

    color: var(--yellow);

    font-size: 21px;

    line-height: 1;

    font-weight: 800;
}

.product-arrow {

    width: 39px;

    height: 39px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(246, 229, 141, 0.08);

    color: var(--yellow);

    font-size: 17px;

    transition: var(--transition);
}

.product-arrow:hover {

    background: var(--yellow);

    color: var(--black);

    transform: translateX(3px);
}


/* =========================================================
   8. PROMO SECTION
========================================================= */

.promo-section {

    padding: 100px 0;

    background: #090909;
}

.promo-card {

    min-height: 390px;

    position: relative;

    display: flex;

    align-items: center;

    padding: 65px 70px;

    border:
        1px solid
        rgba(246, 229, 141, 0.15);

    border-radius: 25px;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 85% 50%,
            rgba(246, 229, 141, 0.13),
            transparent 32%
        ),

        linear-gradient(
            135deg,
            #171717,
            #0c0c0c
        );

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, 0.45);
}

.promo-content {

    position: relative;

    z-index: 3;

    max-width: 600px;
}

.promo-content .section-label {

    margin-bottom: 18px;

    color: var(--yellow);
}

.promo-content h2 {

    color: var(--white);

    font-size:
        clamp(30px, 4vw, 48px);

    line-height: 1.12;

    letter-spacing: -1.5px;

    margin-bottom: 18px;
}

.promo-content h2 em {

    color: var(--yellow);

    font-style: normal;
}

.promo-content p {

    max-width: 540px;

    margin-bottom: 28px;

    color: #8e8e8e;

    font-size: 13px;

    line-height: 1.8;
}

.btn-light {

    background: var(--yellow);

    color: var(--black);

    box-shadow:
        0 10px 25px
        rgba(246, 229, 141, 0.10);
}

.btn-light:hover {

    background: var(--yellow-bright);

    transform: translateY(-2px);
}


/* =========================================================
   PROMO DECORATION
========================================================= */

.promo-decoration {

    position: absolute;

    inset: 0;

    pointer-events: none;
}

.decoration-circle {

    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(246, 229, 141, 0.11);
}

.circle-one {

    width: 420px;

    height: 420px;

    right: -80px;

    top: -150px;
}

.circle-two {

    width: 300px;

    height: 300px;

    right: 40px;

    bottom: -170px;
}

.decoration-box {

    position: absolute;

    width: 190px;

    height: 190px;

    right: 140px;

    top: 100px;

    border-radius: 35px;

    background:
        rgba(246, 229, 141, 0.035);

    border:
        1px solid
        rgba(246, 229, 141, 0.08);

    transform: rotate(20deg);
}


/* =========================================================
   9. FOOTER
========================================================= */

.site-footer {

    padding-top: 70px;

    background: #020202;

    color: var(--white);

    border-top:
        1px solid var(--border);
}

.footer-grid {

    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1.2fr;

    gap: 55px;

    padding-bottom: 60px;
}

.footer-logo {

    margin-bottom: 20px;

    color: var(--yellow);
}

.footer-logo span {

    color: var(--white);
}

.footer-brand p {

    max-width: 360px;

    color: #777777;

    font-size: 12px;

    line-height: 1.8;
}

.footer-column h3 {

    margin-bottom: 18px;

    color: var(--white);

    font-size: 13px;

    font-weight: 800;
}

.footer-column a {

    display: block;

    width: fit-content;

    margin-bottom: 10px;

    color: #777777;

    font-size: 11px;

    transition: var(--transition);
}

.footer-column a:hover {

    color: var(--yellow);

    transform: translateX(3px);
}

.footer-column p {

    color: #777777;

    font-size: 11px;

    line-height: 1.8;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid var(--border);
}

.footer-bottom p {

    color: #555555;

    font-size: 10px;
}


/* =========================================================
   10. TABLET
========================================================= */

@media (max-width: 1050px) {

    .main-nav {
        gap: 22px;
    }

    .hero-grid {
        gap: 40px;
    }

    .feature-item {
        padding: 18px 16px;
    }

    .feature-item:first-child {
        padding-left: 0;
    }

    .feature-item:last-child {
        padding-right: 0;
    }

    .footer-grid {
        gap: 35px;
    }
}


/* =========================================================
   11. TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 900px) {

    .header-inner {
        min-height: 70px;
    }

    .mobile-menu-btn {
        display: flex;
    }


    /* Mobile Navigation */

    .main-nav {

        position: fixed;

        top: 70px;

        left: 0;

        right: 0;

        width: 100%;

        max-height: 0;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        overflow: hidden;

        background:
            rgba(5, 5, 5, 0.98);

        border-bottom:
            0 solid var(--border);

        box-shadow: none;

        transition:
            max-height 0.35s ease,
            box-shadow 0.35s ease,
            border-width 0.35s ease;
    }

    .main-nav.open {

        max-height: 420px;

        border-bottom-width: 1px;

        box-shadow:
            0 20px 40px
            rgba(0, 0, 0, 0.50);
    }

    .main-nav a {

        width: 100%;

        padding: 16px 25px;

        border-bottom:
            1px solid #171717;

        font-size: 13px;
    }

    .main-nav a.active::after {
        display: none;
    }

    .main-nav a:hover {

        background:
            rgba(246, 229, 141, 0.05);
    }


    /* Hamburger */

    .mobile-menu-btn.active span:nth-child(1) {

        transform:
            translateY(7px)
            rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {

        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {

        transform:
            translateY(-7px)
            rotate(-45deg);
    }


    /* Hero */

    .hero {
        min-height: auto;
    }

    .hero-grid {

        grid-template-columns: 1fr;

        text-align: center;

        padding: 75px 0 90px;
    }

    .hero-content {

        max-width: 750px;

        margin-inline: auto;
    }

    .hero-content h1 {

        margin-inline: auto;
    }

    .hero-content > p {

        margin-inline: auto;
    }

    .hero-actions {

        justify-content: center;
    }

    .hero-trust {

        justify-content: center;
    }

    .hero-visual {

        margin-top: 20px;
    }


    /* Features */

    .feature-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .feature-item {

        min-height: 105px;

        border-bottom:
            1px solid var(--border);
    }

    .feature-item:nth-child(2) {

        border-right: 0;
    }

    .feature-item:nth-child(3),
    .feature-item:nth-child(4) {

        border-bottom: 0;
    }

    .feature-item:nth-child(3) {

        padding-left: 0;
    }

    .feature-item:nth-child(4) {

        padding-right: 0;
    }


    /* Products */

    .products-section {

        padding: 80px 0;
    }

    .products-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    /* Footer */

    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   12. MOBILE
========================================================= */

@media (max-width: 600px) {

    .container {

        width: min(
            calc(100% - 30px),
            var(--container)
        );
    }


    /* Header */

    .header-inner {

        min-height: 64px;
    }

    .logo {

        font-size: 23px;
    }

    .cart-link {

        width: 42px;

        height: 42px;

        padding: 0;
    }

    .cart-link span {

        display: none;
    }

    .mobile-menu-btn {

        width: 42px;

        height: 42px;
    }

    .main-nav {

        top: 64px;
    }


    /* Hero */

    .hero-grid {

        padding: 55px 0 70px;
    }

    .eyebrow {

        margin-bottom: 18px;

        font-size: 8px;

        letter-spacing: 1.6px;
    }

    .hero-content h1 {

        font-size:
            clamp(37px, 11vw, 52px);

        letter-spacing: -2px;

        margin-bottom: 20px;
    }

    .hero-content > p {

        font-size: 13px;

        line-height: 1.8;
    }

    .hero-actions {

        flex-direction: column;

        gap: 17px;

        margin-bottom: 35px;
    }

    .btn {

        width: 100%;
    }

    .hero-trust {

        gap: 15px;
    }

    .trust-item strong {

        font-size: 10px;
    }

    .trust-item span {

        font-size: 9px;
    }

    .trust-divider {

        height: 30px;
    }


    /* Hero image */

    .hero-image-card {

        padding: 9px;

        border-radius: 20px;

        transform: none;
    }

    .image-placeholder {

        min-height: 340px;

        border-radius: 15px;
    }

    .placeholder-label {

        top: 20px;
    }

    .placeholder-icon {

        width: 65px;

        height: 65px;

        font-size: 31px;
    }

    .floating-card {

        left: 8px;

        bottom: 22px;

        padding: 10px 12px;
    }


    /* Features */

    .feature-grid {

        grid-template-columns: 1fr;
    }

    .feature-item,
    .feature-item:first-child,
    .feature-item:last-child,
    .feature-item:nth-child(3),
    .feature-item:nth-child(4) {

        min-height: 90px;

        padding: 17px 0;

        border-right: 0;

        border-bottom:
            1px solid var(--border);
    }

    .feature-item:last-child {

        border-bottom: 0;
    }


    /* Products */

    .products-section {

        padding: 65px 0;
    }

    .section-heading {

        align-items: flex-start;

        flex-direction: column;

        gap: 18px;

        margin-bottom: 30px;
    }

    .section-heading h2 {

        font-size: 30px;
    }

    .view-all {

        font-size: 11px;
    }

    .products-grid {

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .product-image {

        height: 290px;
    }

    .product-info {

        padding: 20px;
    }


    /* Promo */

    .promo-section {

        padding: 65px 0;
    }

    .promo-card {

        min-height: 420px;

        padding: 40px 25px;

        border-radius: 20px;
    }

    .promo-content h2 {

        font-size: 32px;

        letter-spacing: -1px;
    }

    .promo-content p {

        font-size: 12px;
    }

    .decoration-box {

        right: -20px;

        top: 230px;

        width: 140px;

        height: 140px;
    }

    .circle-one {

        right: -180px;
    }


    /* Footer */

    .site-footer {

        padding-top: 55px;
    }

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 35px;

        padding-bottom: 45px;
    }

    .footer-bottom {

        min-height: auto;

        flex-direction: column;

        align-items: flex-start;

        padding: 20px 0;
    }
}


/* =========================================================
   13. SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .container {

        width: min(
            calc(100% - 24px),
            var(--container)
        );
    }

    .header-actions {

        gap: 7px;
    }

    .hero-content h1 {

        font-size: 35px;
    }

    .hero-trust {

        gap: 10px;
    }

    .trust-item span {

        font-size: 8px;
    }

    .feature-item {

        gap: 12px;
    }

    .product-image {

        height: 260px;
    }
}


/* =========================================================
   14. FOCUS
========================================================= */

:focus-visible {

    outline:
        2px solid var(--yellow);

    outline-offset: 3px;
}


/* =========================================================
   15. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }
}

/* =====================================================
   GLOBAL BRAND LOGO
===================================================== */

.site-header .logo {
    color: var(--yellow) !important;
}

.site-header .logo span {
    color: var(--yellow) !important;
}

.site-footer .logo {
    color: var(--yellow) !important;
}

.site-footer .logo span {
    color: var(--yellow) !important;
}