@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');


/* =========================================
   THE SOILER
   MAIN DESIGN SYSTEM
========================================= */

:root {

    --black: #111111;
    --dark: #181818;

    --white: #ffffff;

    --cream: #f7f7f5;

    --gray-100: #eeeeec;
    --gray-200: #e2e2df;
    --gray-500: #777777;
    --gray-600: #5f5f5f;

    --orange: #ff6b35;
    --orange-dark: #e65322;

    --green: #198754;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --shadow-sm:
        0 4px 18px rgba(0, 0, 0, 0.06);

    --shadow-md:
        0 15px 40px rgba(0, 0, 0, 0.10);

    --container: 1180px;

}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: 'Inter', sans-serif;

    background: var(--cream);

    color: var(--black);

    line-height: 1.7;

    -webkit-font-smoothing: antialiased;

}


img {
    max-width: 100%;
    display: block;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================
   TYPOGRAPHY
========================================= */

h1,
h2,
h3,
h4 {

    font-family: 'Space Grotesk', sans-serif;

    line-height: 1.12;

    letter-spacing: -0.035em;

}


h1 {

    font-size: clamp(3rem, 6vw, 5.7rem);

}


h2 {

    font-size: clamp(2.2rem, 4vw, 3.7rem);

}


h3 {

    font-size: 1.35rem;

}


p {

    color: var(--gray-600);

}


/* =========================================
   GLOBAL CONTAINER
========================================= */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-left: auto;
    margin-right: auto;

}


/* =========================================
   HEADER
========================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background: rgba(247, 247, 245, 0.94);

    backdrop-filter: blur(16px);

    -webkit-backdrop-filter: blur(16px);

    border-bottom: 1px solid var(--gray-200);

}


.nav-container {

    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* =========================================
   LOGO
========================================= */

.logo {

    font-family: 'Space Grotesk', sans-serif;

    font-size: 1.45rem;

    font-weight: 700;

    letter-spacing: -0.06em;

}


.logo span {

    color: var(--orange);

}


/* =========================================
   DESKTOP NAVIGATION
========================================= */

.desktop-nav {

    display: flex;

    align-items: center;

    gap: 30px;

}


.desktop-nav a {

    position: relative;

    font-size: 0.9rem;

    font-weight: 600;

    color: #444;

    transition: color 0.25s ease;

}


.desktop-nav a::after {

    content: '';

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: var(--orange);

    transition: width 0.25s ease;

}


.desktop-nav a:hover {

    color: var(--black);

}


.desktop-nav a:hover::after {

    width: 100%;

}


/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu-button {

    display: none;

    border: 0;

    background: transparent;

    font-size: 1.7rem;

    cursor: pointer;

}


.mobile-nav {

    display: none;

    padding: 15px 20px 25px;

    border-top: 1px solid var(--gray-200);

}


.mobile-nav a {

    display: block;

    padding: 12px 0;

    font-weight: 600;

}


/* =========================================
   HERO
========================================= */

.hero {

    position: relative;

    overflow: hidden;

    padding: 105px 0 100px;

}


.hero::before {

    content: '';

    position: absolute;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background: rgba(255, 107, 53, 0.09);

    filter: blur(30px);

    right: -200px;

    top: -150px;

    pointer-events: none;

}


.hero-grid {

    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;

    gap: 80px;

}


.eyebrow {

    display: inline-block;

    margin-bottom: 18px;

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 0.14em;

    color: var(--orange);

}


.hero h1 {

    max-width: 760px;

}


.hero h1 span {

    display: block;

    color: var(--orange);

}


.hero-content > p {

    max-width: 600px;

    margin-top: 28px;

    font-size: 1.08rem;

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 35px;

}


/* =========================================
   BUTTONS
========================================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 52px;

    padding: 0 25px;

    border-radius: 999px;

    font-size: 0.9rem;

    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;

}


.btn:hover {

    transform: translateY(-2px);

}


.btn-primary {

    background: var(--orange);

    color: white;

    box-shadow:
        0 8px 25px rgba(255, 107, 53, 0.25);

}


.btn-primary:hover {

    background: var(--orange-dark);

    box-shadow:
        0 12px 30px rgba(255, 107, 53, 0.32);

}


.btn-secondary {

    background: white;

    color: var(--black);

    border: 1px solid var(--gray-200);

}


.btn-secondary:hover {

    border-color: var(--black);

}


/* =========================================
   HERO PRODUCT VISUAL
========================================= */

.hero-visual {

    display: flex;

    justify-content: center;

}


.hero-card {

    position: relative;

    width: min(100%, 440px);

    padding: 25px;

    border-radius: var(--radius-lg);

    background: white;

    box-shadow: var(--shadow-md);

    transform: rotate(2deg);

    transition: transform 0.4s ease;

}


.hero-card:hover {

    transform: rotate(0deg) translateY(-8px);

}


.product-placeholder {

    min-height: 370px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 20px;

    background:

        radial-gradient(
            circle at 30% 20%,
            rgba(255,255,255,0.12),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #242424,
            #080808
        );

    color: #555;

    font-family: 'Space Grotesk', sans-serif;

    font-size: 2rem;

    font-weight: 700;

}


.product-badge {

    position: absolute;

    top: 18px;

    left: 18px;

    z-index: 2;

    display: inline-flex;

    padding: 7px 11px;

    border-radius: 999px;

    background: white;

    color: var(--black);

    font-size: 0.65rem;

    font-weight: 800;

    letter-spacing: 0.08em;

}


.hero-product-info {

    display: flex;

    flex-direction: column;

    gap: 4px;

    padding-top: 20px;

}


.hero-product-info strong {

    font-family: 'Space Grotesk', sans-serif;

    font-size: 1.2rem;

}


.hero-product-info span:last-child {

    color: var(--gray-500);

    font-size: 0.85rem;

}


/* =========================================
   STARS
========================================= */

.stars {

    color: #f6a800;

    font-size: 0.82rem;

    font-weight: 700;

}


/* =========================================
   SECTIONS
========================================= */

.section {

    padding: 100px 0;

}


.section-heading {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 30px;

    margin-bottom: 45px;

}


.section-heading h2 {

    max-width: 700px;

}


.text-link {

    white-space: nowrap;

    font-weight: 700;

    font-size: 0.9rem;

}


.text-link:hover {

    color: var(--orange);

}


/* =========================================
   PRODUCT GRID
========================================= */

.product-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


.product-card {

    position: relative;

    overflow: hidden;

    background: white;

    border: 1px solid var(--gray-200);

    border-radius: var(--radius-md);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.product-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow-md);

}


.product-image {

    min-height: 300px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #eeeeeb,
            #dadad6
        );

    color: #999;

    font-family: 'Space Grotesk', sans-serif;

    font-weight: 700;

}


.product-card > .product-badge {

    top: 15px;

    left: 15px;

}


.product-content {

    padding: 25px;

}


.product-content h3 {

    margin-top: 7px;

}


.product-content p {

    margin-top: 10px;

    font-size: 0.9rem;

}


.product-link {

    display: inline-block;

    margin-top: 18px;

    color: var(--orange);

    font-size: 0.9rem;

    font-weight: 800;

}


.product-link:hover {

    color: var(--orange-dark);

}


/* =========================================
   DARK SECTION
========================================= */

.dark-section {

    padding: 105px 0;

    background: var(--black);

    color: white;

}


.light-heading h2 {

    color: white;

}


.dark-section p {

    color: #aaa;

}


.featured-pick {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 60px;

    align-items: center;

}


.featured-image {

    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            #292929,
            #101010
        );

    color: #555;

    font-family: 'Space Grotesk', sans-serif;

    font-size: 2rem;

    font-weight: 700;

}


.featured-content {

    max-width: 550px;

}


.featured-content h3 {

    margin-top: 12px;

    font-size: 2.5rem;

    color: white;

}


.featured-content > p {

    margin-top: 20px;

}


.orange-badge {

    position: static;

    background: var(--orange);

    color: white;

    margin-bottom: 15px;

}


.pros-list {

    list-style: none;

    margin: 25px 0 30px;

}


.pros-list li {

    margin-bottom: 10px;

    color: #ddd;

}


.pros-list li::before {

    content: '✓';

    margin-right: 10px;

    color: var(--orange);

    font-weight: 900;

}


/* =========================================
   CATEGORIES
========================================= */

.category-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

}


.category-card {

    min-height: 190px;

    padding: 25px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border-radius: var(--radius-md);

    background: white;

    border: 1px solid var(--gray-200);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;

}


.category-card span {

    font-size: 0.7rem;

    color: var(--orange);

    font-weight: 800;

}


.category-card strong {

    font-family: 'Space Grotesk', sans-serif;

    font-size: 1.6rem;

}


.category-card small {

    color: var(--gray-500);

}


.category-card:hover {

    background: var(--black);

    color: white;

    transform: translateY(-5px);

}


.category-card:hover small {

    color: #aaa;

}


/* =========================================
   NEWSLETTER
========================================= */

.newsletter-section {

    padding: 110px 0;

}


.newsletter {

    text-align: center;

    max-width: 750px;

}


.newsletter h2 {

    max-width: 700px;

    margin-left: auto;
    margin-right: auto;

}


.newsletter p {

    margin:
        20px auto 30px;

    max-width: 560px;

}


/* =========================================
   FOOTER
========================================= */

.site-footer {

    background: #101010;

    color: white;

}


.footer-grid {

    padding: 75px 0;

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap: 50px;

}


.footer-logo {

    color: white;

}


.footer-brand p {

    max-width: 350px;

    margin-top: 18px;

    color: #888;

    font-size: 0.9rem;

}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.footer-column h3 {

    margin-bottom: 8px;

    color: white;

    font-size: 0.9rem;

}


.footer-column a {

    color: #888;

    font-size: 0.85rem;

    transition: color 0.2s ease;

}


.footer-column a:hover {

    color: white;

}


.footer-bottom {

    padding: 22px 0;

    border-top: 1px solid #292929;

}


.footer-bottom p {

    color: #666;

    font-size: 0.75rem;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .hero-grid {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .hero-content {

        text-align: center;

    }


    .hero-content > p {

        margin-left: auto;
        margin-right: auto;

    }


    .hero-buttons {

        justify-content: center;

    }


    .product-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .category-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .featured-pick {

        grid-template-columns: 1fr;

    }


    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .container {

        width: min(
            calc(100% - 28px),
            var(--container)
        );

    }


    .desktop-nav {

        display: none;

    }


    .mobile-menu-button {

        display: block;

    }


    .mobile-nav.active {

        display: block;

    }


    .hero {

        padding:
            75px 0 70px;

    }


    .hero h1 {

        font-size:
            clamp(2.7rem, 13vw, 4.2rem);

    }


    .hero-buttons {

        flex-direction: column;

    }


    .hero-buttons .btn {

        width: 100%;

    }


    .product-grid {

        grid-template-columns: 1fr;

    }


    .category-grid {

        grid-template-columns: 1fr;

    }


    .section {

        padding: 75px 0;

    }


    .section-heading {

        display: block;

    }


    .section-heading h2 {

        margin-bottom: 20px;

    }


    .featured-image {

        min-height: 350px;

    }


    .featured-content h3 {

        font-size: 2rem;

    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .product-image {

        min-height: 260px;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .nav-container {

        min-height: 68px;

    }


    .logo {

        font-size: 1.25rem;

    }


    .hero {

        padding-top: 55px;

    }


    .product-placeholder {

        min-height: 290px;

    }

}