/* =====================================================
   REXUS88 SLAI OLAI SNACK HOUSE
   MAIN STYLESHEET
===================================================== */

:root {
    --primary: #f59e0b;
    --primary-dark: #d97706;
    --secondary: #84cc16;
    --dark: #292524;
    --dark-soft: #44403c;
    --cream: #fffaf0;
    --cream-dark: #fef3c7;
    --white: #ffffff;
    --gray: #78716c;
    --border: #eee7dc;

    --shadow-sm: 0 8px 24px rgba(41, 37, 36, 0.06);
    --shadow-md: 0 18px 45px rgba(41, 37, 36, 0.10);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;

    --container: 1180px;
}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito", sans-serif;
    background: var(--cream);
    color: var(--dark);
    line-height: 1.7;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =====================================================
   CONTAINER
===================================================== */

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 250, 240, 0.94);
    backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(41, 37, 36, 0.06);
}

.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: 12px;
}

.logo-mark {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    background: var(--primary);
    color: var(--white);

    border-radius: 14px;

    font-size: 22px;
    font-weight: 900;

    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.25);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text strong {
    font-size: 19px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.logo-text small {
    margin-top: 4px;

    color: var(--gray);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.3px;
}


/* NAVIGATION */

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.main-nav a {
    position: relative;

    color: var(--dark-soft);

    font-size: 14px;
    font-weight: 800;

    transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-dark);
}

.main-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--primary);

    transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}


/* HEADER BUTTON */

.header-button {
    padding: 11px 19px;

    background: var(--dark);
    color: var(--white);

    border-radius: 100px;

    font-size: 13px;
    font-weight: 800;

    transition: 0.25s ease;
}

.header-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;
    overflow: hidden;

    padding: 90px 0 110px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(245, 158, 11, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(132, 204, 22, 0.10),
            transparent 25%
        );
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 70px;
}


/* HERO CONTENT */

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 13px;

    border: 1px solid #f5d9a2;
    border-radius: 100px;

    background: #fffdf8;

    color: var(--primary-dark);

    font-size: 12px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.hero h1 {
    max-width: 680px;

    margin-top: 22px;

    font-size: clamp(44px, 5vw, 70px);
    line-height: 1.04;

    letter-spacing: -3px;
    font-weight: 900;
}

.hero h1 span {
    display: block;
    color: var(--primary-dark);
}

.hero-content > p {
    max-width: 590px;

    margin-top: 25px;

    color: var(--gray);

    font-size: 17px;
}


/* HERO ACTION */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 52px;
    padding: 0 22px;

    border-radius: 100px;

    font-size: 14px;
    font-weight: 900;

    transition: 0.25s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);

    box-shadow: 0 12px 25px rgba(245, 158, 11, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-secondary {
    border: 1px solid #e7dfd1;
    background: var(--white);
}

.btn-secondary:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}


/* HERO STATS */

.hero-stats {
    display: flex;
    align-items: center;
    gap: 35px;

    margin-top: 40px;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    font-size: 16px;
    font-weight: 900;
}

.hero-stats span {
    color: var(--gray);
    font-size: 11px;
}


/* HERO IMAGE */

.hero-visual {
    position: relative;
}

.hero-card {
    position: relative;

    overflow: visible;

    border-radius: 38px;
}

.hero-card > img {
    aspect-ratio: 1 / 0.9;
    object-fit: cover;

    border-radius: 38px;

    box-shadow: var(--shadow-md);
}


/* FLOATING CARDS */

.floating-card {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 13px 17px;

    background: rgba(255, 255, 255, 0.95);

    border: 1px solid rgba(255, 255, 255, 0.8);

    border-radius: 18px;

    box-shadow: var(--shadow-md);
}

.floating-top {
    top: 35px;
    left: -35px;
}

.floating-bottom {
    right: -30px;
    bottom: 35px;
}

.floating-icon {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    background: var(--cream-dark);

    border-radius: 12px;

    font-size: 18px;
}

.floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    font-size: 12px;
    font-weight: 900;
}

.floating-card small {
    color: var(--gray);
    font-size: 10px;
}


/* =====================================================
   FEATURES
===================================================== */

.features {
    position: relative;
    z-index: 2;

    margin-top: -35px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 24px;

    box-shadow: var(--shadow-sm);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;

    padding: 25px;
}

.feature-item + .feature-item {
    border-left: 1px solid var(--border);
}

.feature-icon {
    width: 50px;
    height: 50px;

    flex: 0 0 50px;

    display: grid;
    place-items: center;

    background: #fff6dc;

    border-radius: 15px;

    font-size: 22px;
}

.feature-item h2 {
    font-size: 14px;
    font-weight: 900;
}

.feature-item p {
    margin-top: 2px;

    color: var(--gray);

    font-size: 11px;
    line-height: 1.5;
}


/* =====================================================
   SECTION
===================================================== */

.section {
    padding: 110px 0;
}

.section-label {
    display: inline-block;

    color: var(--primary-dark);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;

    margin-bottom: 45px;
}

.section-heading h2,
.intro-content h2,
.faq-grid h2 {
    margin-top: 8px;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;

    letter-spacing: -1.8px;
    font-weight: 900;
}

.section-heading h2 span,
.intro-content h2 span,
.faq-grid h2 span {
    color: var(--primary-dark);
}

.section-heading.center {
    display: block;
    text-align: center;
}

.section-heading.center p {
    max-width: 550px;

    margin: 15px auto 0;

    color: var(--gray);

    font-size: 14px;
}


/* =====================================================
   INTRO
===================================================== */

.intro {
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    align-items: center;
    gap: 80px;
}

.intro-image {
    position: relative;
}

.intro-image > img {
    aspect-ratio: 1 / 0.9;
    object-fit: cover;

    border-radius: 30px;
}

.experience-card {
    position: absolute;
    right: -25px;
    bottom: 25px;

    display: flex;
    flex-direction: column;

    padding: 18px 22px;

    background: var(--dark);
    color: var(--white);

    border-radius: 18px;

    box-shadow: var(--shadow-md);
}

.experience-card strong {
    color: var(--primary);

    font-size: 14px;
    font-weight: 900;
}

.experience-card span {
    font-size: 11px;
}

.intro-content > p {
    max-width: 600px;

    margin-top: 20px;

    color: var(--gray);

    font-size: 15px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 28px;

    color: var(--primary-dark);

    font-size: 13px;
    font-weight: 900;

    transition: 0.2s ease;
}

.text-link:hover {
    gap: 13px;
}


/* =====================================================
   PRODUCTS
===================================================== */

.products {
    background: var(--cream);
}

.view-all {
    color: var(--primary-dark);

    font-size: 13px;
    font-weight: 900;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 25px;

    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    aspect-ratio: 1 / 0.85;
    object-fit: cover;

    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;

    padding: 6px 10px;

    background: var(--white);

    border-radius: 100px;

    color: var(--dark);

    font-size: 10px;
    font-weight: 900;
}

.product-content {
    padding: 23px;
}

.product-category {
    color: var(--primary-dark);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-content h3 {
    margin-top: 5px;

    font-size: 20px;
    font-weight: 900;
}

.product-content p {
    min-height: 52px;

    margin-top: 8px;

    color: var(--gray);

    font-size: 12px;
    line-height: 1.6;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 20px;

    padding-top: 17px;

    border-top: 1px solid var(--border);
}

.product-bottom strong {
    font-size: 12px;
}

.product-bottom a {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    background: var(--primary);

    color: var(--white);

    border-radius: 50%;

    font-size: 18px;

    transition: 0.2s ease;
}

.product-bottom a:hover {
    background: var(--dark);
    transform: rotate(-10deg);
}


/* =====================================================
   CATEGORIES
===================================================== */

.categories {
    background: var(--white);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.category-card {
    position: relative;
    overflow: hidden;

    min-height: 360px;

    border-radius: 28px;

    background: var(--dark);
}

.category-card img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0.75;

    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(41, 37, 36, 0.9),
        rgba(41, 37, 36, 0.05)
    );
}

.category-overlay {
    position: absolute;
    z-index: 2;

    left: 25px;
    right: 25px;
    bottom: 25px;

    color: var(--white);
}

.category-overlay span {
    color: var(--primary);

    font-size: 11px;
    font-weight: 900;
}

.category-overlay h3 {
    margin-top: 3px;

    font-size: 26px;
    font-weight: 900;
}

.category-overlay p {
    margin-top: 3px;

    font-size: 12px;

    opacity: 0.85;
}


/* =====================================================
   LOCAL CTA
===================================================== */

.local-cta {
    background: var(--cream);
}

.local-box {
    position: relative;
    overflow: hidden;

    padding: 65px;

    background: var(--dark);

    color: var(--white);

    border-radius: 35px;
}

.local-content {
    position: relative;
    z-index: 2;

    max-width: 650px;
}

.local-box .section-label {
    color: var(--primary);
}

.local-box h2 {
    margin-top: 10px;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;

    letter-spacing: -1.5px;
}

.local-box h2 span {
    display: block;
    color: var(--primary);
}

.local-box p {
    max-width: 600px;

    margin-top: 18px;

    color: #d6d3d1;

    font-size: 14px;
}

.local-actions {
    display: flex;
    gap: 12px;

    margin-top: 28px;
}

.btn-light {
    background: var(--primary);
    color: var(--white);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

.local-decoration {
    position: absolute;
    right: 70px;
    bottom: -30px;

    font-size: 190px;

    opacity: 0.12;

    transform: rotate(-15deg);
}


/* =====================================================
   FAQ
===================================================== */

.faq-preview {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    gap: 80px;
}

.faq-grid > div:first-child p {
    margin-top: 15px;

    color: var(--gray);

    font-size: 14px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-list details {
    overflow: hidden;

    background: var(--cream);

    border: 1px solid var(--border);
    border-radius: 15px;
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 20px;

    cursor: pointer;

    list-style: none;

    font-size: 14px;
    font-weight: 900;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    color: var(--primary-dark);

    font-size: 20px;

    transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    padding: 0 20px 20px;

    color: var(--gray);

    font-size: 12px;
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    padding: 70px 0 25px;

    background: #211f1d;

    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 0.7fr 1fr;

    gap: 50px;
}

.footer-brand p {
    max-width: 300px;

    margin-top: 18px;

    color: #a8a29e;

    font-size: 12px;
}

.footer-logo .logo-text small {
    color: #a8a29e;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 7px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a,
.footer-contact p,
.footer-contact a {
    color: #d6d3d1;

    font-size: 12px;

    transition: 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 55px;
    padding-top: 22px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    color: #78716c;

    font-size: 10px;
}

.footer-bottom div {
    display: flex;
    gap: 18px;
}

.footer-bottom a:hover {
    color: var(--primary);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .main-nav {
        gap: 15px;
    }

    .header-button {
        display: none;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .intro-grid {
        gap: 45px;
    }

    .faq-grid {
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 760px) {

    .container {
        width: min(100% - 28px, var(--container));
    }

    .header-inner {
        min-height: 70px;
    }

    .main-nav {
        display: none;
    }

    .hero {
        padding: 60px 0 90px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 44px;
        letter-spacing: -2px;
    }

    .hero-content > p {
        font-size: 15px;
    }

    .hero-visual {
        margin-top: 25px;
    }

    .floating-top {
        left: 10px;
    }

    .floating-bottom {
        right: 10px;
    }

    .features {
        margin-top: -25px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-item + .feature-item {
        border-left: 0;
        border-top: 1px solid var(--border);
    }

    .section {
        padding: 80px 0;
    }

    .section-heading {
        display: block;
    }

    .view-all {
        display: inline-block;
        margin-top: 18px;
    }

    .intro-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .product-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 320px;
    }

    .local-box {
        padding: 40px 28px;
    }

    .local-decoration {
        right: 15px;
        bottom: -20px;
        font-size: 130px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px 25px;
    }
}


@media (max-width: 480px) {

    .logo-mark {
        width: 39px;
        height: 39px;
    }

    .logo-text strong {
        font-size: 16px;
    }

    .logo-text small {
        font-size: 8px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stats strong {
        font-size: 14px;
    }

    .floating-card {
        padding: 10px;
    }

    .floating-card small {
        display: none;
    }

    .experience-card {
        right: 10px;
        bottom: 10px;
    }

    .local-actions {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* =====================================================
   PART 2
   ABOUT + PRODUCTS PAGES
===================================================== */


/* =====================================================
   INNER HERO
===================================================== */

.inner-hero {
    padding: 85px 0 75px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(245, 158, 11, 0.14),
            transparent 30%
        ),
        var(--cream);

    border-bottom: 1px solid var(--border);
}

.inner-hero h1 {
    max-width: 750px;

    margin-top: 12px;

    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.05;

    letter-spacing: -2.5px;
    font-weight: 900;
}

.inner-hero h1 span {
    color: var(--primary-dark);
}

.inner-hero > .container > p {
    max-width: 620px;

    margin-top: 18px;

    color: var(--gray);

    font-size: 15px;
}


/* BREADCRUMB */

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-top: 25px;

    color: var(--gray);

    font-size: 11px;
}

.breadcrumb a {
    color: var(--primary-dark);
    font-weight: 800;
}

.breadcrumb strong {
    color: var(--dark);
}


/* =====================================================
   ABOUT STORY
===================================================== */

.about-story {
    background: var(--white);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    align-items: center;
    gap: 75px;
}

.about-image {
    position: relative;
}

.about-image img {
    aspect-ratio: 1 / 0.9;
    object-fit: cover;

    border-radius: 30px;

    box-shadow: var(--shadow-md);
}

.about-content h2 {
    margin-top: 9px;

    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.1;

    letter-spacing: -1.8px;
    font-weight: 900;
}

.about-content h2 span {
    color: var(--primary-dark);
}

.about-content p {
    max-width: 600px;

    margin-top: 17px;

    color: var(--gray);

    font-size: 14px;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    margin-top: 30px;
}

.about-points div {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 12px;

    background: var(--cream);

    border-radius: 12px;
}

.about-points span {
    width: 24px;
    height: 24px;

    display: grid;
    place-items: center;

    background: var(--primary);

    color: var(--white);

    border-radius: 50%;

    font-size: 11px;
    font-weight: 900;
}

.about-points strong {
    font-size: 10px;
}


/* =====================================================
   VALUES
===================================================== */

.values {
    background: var(--cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.value-card {
    position: relative;

    padding: 32px;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 25px;

    transition: 0.3s ease;
}

.value-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
}

.value-number {
    color: #e7dfd1;

    font-size: 34px;
    font-weight: 900;

    line-height: 1;
}

.value-icon {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    margin-top: 25px;

    background: #fff6dc;

    border-radius: 17px;

    font-size: 25px;
}

.value-card h3 {
    margin-top: 20px;

    font-size: 21px;
    font-weight: 900;
}

.value-card p {
    margin-top: 7px;

    color: var(--gray);

    font-size: 12px;
}


/* =====================================================
   ABOUT CTA
===================================================== */

.about-cta {
    background: var(--white);
}

.about-cta-box {
    padding: 65px;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(245, 158, 11, 0.18),
            transparent 60%
        ),
        var(--dark);

    color: var(--white);

    border-radius: 32px;
}

.about-cta-box h2 {
    margin-top: 10px;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;

    letter-spacing: -1.5px;
}

.about-cta-box h2 span {
    color: var(--primary);
}

.about-cta-box p {
    max-width: 500px;

    margin: 15px auto 25px;

    color: #d6d3d1;

    font-size: 13px;
}


/* =====================================================
   PRODUCTS PAGE
===================================================== */

.products-page {
    background: var(--cream);
}


/* PRODUCT FILTER */

.product-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 35px;
    padding-bottom: 20px;

    border-bottom: 1px solid var(--border);
}

.product-filter > span {
    font-size: 14px;
    font-weight: 900;
}

.product-filter > div {
    display: flex;
    gap: 7px;
}

.product-filter button {
    padding: 8px 14px;

    border: 1px solid var(--border);

    background: var(--white);

    color: var(--gray);

    border-radius: 100px;

    font-family: inherit;

    font-size: 11px;
    font-weight: 800;

    cursor: pointer;

    transition: 0.2s ease;
}

.product-filter button:hover,
.product-filter button.filter-active {
    background: var(--primary);
    border-color: var(--primary);

    color: var(--white);
}


/* FULL PRODUCT GRID */

.full-product-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.full-product-grid .product-card {
    height: 100%;
}

.full-product-grid .product-content h2 {
    margin-top: 5px;

    font-size: 20px;
    line-height: 1.25;

    font-weight: 900;
}


/* =====================================================
   PRODUCTS CTA
===================================================== */

.products-cta {
    background: var(--white);
}

.products-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 50px 55px;

    background: var(--cream);

    border: 1px solid var(--border);

    border-radius: 30px;
}

.products-cta-box h2 {
    margin-top: 7px;

    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.1;

    letter-spacing: -1.5px;
}

.products-cta-box h2 span {
    color: var(--primary-dark);
}

.products-cta-box p {
    margin-top: 8px;

    color: var(--gray);

    font-size: 13px;
}


/* =====================================================
   RESPONSIVE PART 2
===================================================== */

@media (max-width: 900px) {

    .about-story-grid {
        gap: 45px;
    }

    .full-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 760px) {

    .inner-hero {
        padding: 65px 0 60px;
    }

    .inner-hero h1 {
        font-size: 42px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-box {
        padding: 45px 25px;
    }

    .product-filter {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }

    .product-filter > div {
        flex-wrap: wrap;
    }

    .full-product-grid {
        grid-template-columns: 1fr;
    }

    .products-cta-box {
        align-items: flex-start;

        flex-direction: column;

        padding: 40px 28px;
    }

}


@media (max-width: 480px) {

    .inner-hero h1 {
        font-size: 36px;
        letter-spacing: -1.5px;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .value-card {
        padding: 25px;
    }

    .products-cta-box .btn {
        width: 100%;
    }

}

/* =====================================================
   PART 3
   CATEGORIES + PROMO
===================================================== */


/* =====================================================
   CATEGORY INTRO
===================================================== */

.category-intro {
    background: var(--white);
}

.category-intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 80px;
    align-items: start;
}

.category-intro-grid h2 {
    margin-top: 9px;

    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.1;

    letter-spacing: -1.8px;
    font-weight: 900;
}

.category-intro-grid h2 span {
    display: block;
    color: var(--primary-dark);
}

.category-intro-grid > div:last-child p {
    margin-bottom: 14px;

    color: var(--gray);

    font-size: 14px;
}


/* =====================================================
   LARGE CATEGORY CARDS
===================================================== */

.category-list-section {
    padding: 0 0 110px;

    background: var(--white);
}

.large-category-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.large-category-card {
    display: grid;
    grid-template-columns: 1fr 1fr;

    overflow: hidden;

    min-height: 390px;

    background: var(--cream);

    border: 1px solid var(--border);
    border-radius: 30px;

    transition: 0.3s ease;
}

.large-category-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.large-category-card.reverse .large-category-image {
    order: 2;
}

.large-category-card.reverse .large-category-content {
    order: 1;
}

.large-category-image {
    overflow: hidden;
}

.large-category-image img {
    width: 100%;
    height: 100%;

    min-height: 390px;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.large-category-card:hover .large-category-image img {
    transform: scale(1.05);
}

.large-category-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 55px;
}

.category-index {
    color: var(--primary-dark);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.large-category-content h2 {
    margin-top: 12px;

    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.05;

    letter-spacing: -1.5px;

    font-weight: 900;
}

.large-category-content p {
    max-width: 470px;

    margin-top: 17px;

    color: var(--gray);

    font-size: 13px;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    width: fit-content;

    margin-top: 25px;

    color: var(--primary-dark);

    font-size: 12px;
    font-weight: 900;

    transition: 0.2s ease;
}

.category-link:hover {
    gap: 14px;
}


/* =====================================================
   CATEGORY CTA
===================================================== */

.category-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 50px;

    background: var(--cream);

    border: 1px solid var(--border);
    border-radius: 30px;
}

.category-cta h2 {
    margin-top: 7px;

    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.1;

    letter-spacing: -1.5px;
}

.category-cta h2 span {
    color: var(--primary-dark);
}

.category-cta p {
    margin-top: 9px;

    color: var(--gray);

    font-size: 13px;
}


/* =====================================================
   PROMO INTRO
===================================================== */

.promo-intro {
    background: var(--white);
}

.promo-intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;

    gap: 80px;
}

.promo-intro-grid h2 {
    margin-top: 8px;

    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.1;

    letter-spacing: -1.8px;

    font-weight: 900;
}

.promo-intro-grid h2 span {
    display: block;

    color: var(--primary-dark);
}

.promo-intro-grid > div:last-child p {
    margin-bottom: 15px;

    color: var(--gray);

    font-size: 14px;
}


/* =====================================================
   PROMO FEATURE
===================================================== */

.promo-feature {
    padding: 0 0 100px;

    background: var(--white);
}

.promo-feature-box {
    display: grid;
    grid-template-columns: 1fr 1fr;

    overflow: hidden;

    background: var(--dark);

    color: var(--white);

    border-radius: 32px;

    box-shadow: var(--shadow-md);
}

.promo-feature-image {
    min-height: 450px;
}

.promo-feature-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.promo-feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 55px;
}

.promo-badge {
    width: fit-content;

    padding: 7px 11px;

    background: rgba(245, 158, 11, 0.14);

    color: var(--primary);

    border-radius: 100px;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 0.7px;
}

.promo-feature-content h2 {
    margin-top: 17px;

    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.05;

    letter-spacing: -1.8px;

    font-weight: 900;
}

.promo-feature-content h2 span {
    color: var(--primary);
}

.promo-feature-content > p {
    max-width: 500px;

    margin-top: 17px;

    color: #d6d3d1;

    font-size: 13px;
}

.promo-feature-content ul {
    display: flex;
    flex-direction: column;
    gap: 9px;

    margin: 23px 0 27px;

    list-style: none;
}

.promo-feature-content li {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #e7e5e4;

    font-size: 12px;
}

.promo-feature-content li span {
    width: 20px;
    height: 20px;

    display: grid;
    place-items: center;

    background: var(--primary);

    color: var(--white);

    border-radius: 50%;

    font-size: 10px;
    font-weight: 900;
}

.promo-feature-content .btn {
    width: fit-content;
}


/* =====================================================
   PROMO LIST
===================================================== */

.promo-list {
    background: var(--cream);
}

.promo-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.promo-card {
    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 25px;

    transition: 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow-md);
}

.promo-image {
    position: relative;

    overflow: hidden;
}

.promo-image img {
    aspect-ratio: 1 / 0.72;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.promo-card:hover .promo-image img {
    transform: scale(1.06);
}

.promo-image > span {
    position: absolute;

    left: 15px;
    top: 15px;

    padding: 6px 10px;

    background: var(--white);

    border-radius: 100px;

    font-size: 9px;
    font-weight: 900;
}

.promo-card-content {
    padding: 24px;
}

.promo-card-content h3 {
    font-size: 21px;
    font-weight: 900;
}

.promo-card-content p {
    min-height: 55px;

    margin-top: 8px;

    color: var(--gray);

    font-size: 12px;
}

.promo-card-content a {
    display: inline-flex;

    margin-top: 18px;

    color: var(--primary-dark);

    font-size: 11px;
    font-weight: 900;
}


/* =====================================================
   PROMO INFO
===================================================== */

.promo-info {
    background: var(--white);
}

.promo-info-box {
    display: grid;

    grid-template-columns: auto 1fr auto;

    align-items: center;

    gap: 25px;

    padding: 35px 40px;

    background: var(--cream);

    border: 1px solid var(--border);

    border-radius: 25px;
}

.promo-info-icon {
    width: 65px;
    height: 65px;

    display: grid;
    place-items: center;

    background: #fff0c8;

    border-radius: 18px;

    font-size: 28px;
}

.promo-info-box h2 {
    font-size: 25px;

    line-height: 1.15;

    font-weight: 900;
}

.promo-info-box h2 span {
    color: var(--primary-dark);
}

.promo-info-box p {
    max-width: 600px;

    margin-top: 6px;

    color: var(--gray);

    font-size: 12px;
}


/* =====================================================
   RESPONSIVE PART 3
===================================================== */

@media (max-width: 900px) {

    .category-intro-grid,
    .promo-intro-grid {
        gap: 40px;
    }

    .large-category-content {
        padding: 40px;
    }

    .promo-feature-content {
        padding: 40px;
    }

    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 760px) {

    .category-intro-grid,
    .promo-intro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .large-category-card {
        grid-template-columns: 1fr;
    }

    .large-category-card.reverse .large-category-image {
        order: 1;
    }

    .large-category-card.reverse .large-category-content {
        order: 2;
    }

    .large-category-image img {
        min-height: 300px;
    }

    .large-category-content {
        padding: 35px 28px;
    }

    .category-cta {
        align-items: flex-start;

        flex-direction: column;

        padding: 35px 28px;
    }

    .promo-feature-box {
        grid-template-columns: 1fr;
    }

    .promo-feature-image {
        min-height: 300px;
    }

    .promo-feature-content {
        padding: 35px 28px;
    }

    .promo-grid {
        grid-template-columns: 1fr;
    }

    .promo-info-box {
        grid-template-columns: auto 1fr;
    }

    .promo-info-box .btn {
        grid-column: 1 / -1;
        width: 100%;
    }

}


@media (max-width: 480px) {

    .large-category-content h2 {
        font-size: 32px;
    }

    .promo-feature-content h2 {
        font-size: 36px;
    }

    .promo-info-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .promo-info-icon {
        margin-inline: auto;
    }

}

/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-hero {
  background: var(--cream);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.contact-hero-content h1 {
  margin: 18px 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 900;
}

.contact-hero-content h1 span {
  color: var(--primary);
}

.contact-hero-content p {
  max-width: 620px;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.8;
}

.contact-hero-image {
  position: relative;
}

.contact-hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
  box-shadow: var(--shadow-md);
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}


/* CONTACT INFORMATION */

.contact-information {
  background: var(--white);
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 45px;
}

.contact-card {
  padding: 30px 24px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  transition: .3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--cream);
  font-size: 26px;
  margin-bottom: 20px;
}

.contact-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.contact-card p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 18px;
}

.contact-card a {
  color: var(--primary-dark);
  font-weight: 800;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card > span {
  color: var(--gray);
  font-weight: 700;
}


/* CONTACT CTA */

.contact-cta {
  background: var(--cream);
}

.contact-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 50px;
  border-radius: 28px;
  background: var(--dark);
  color: var(--white);
}

.contact-cta-box h2 {
  margin: 12px 0;
  font-size: clamp(28px, 4vw, 42px);
}

.contact-cta-box p {
  max-width: 650px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}


/* =========================================================
   FAQ PAGE
========================================================= */

.faq-hero {
  background: var(--cream);
}

.faq-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.faq-hero-content h1 {
  margin: 18px 0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  font-weight: 900;
}

.faq-hero-content h1 span {
  color: var(--primary);
}

.faq-hero-content p {
  max-width: 620px;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.faq-hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
  box-shadow: var(--shadow-md);
}


/* FAQ LIST */

.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 900px;
  margin: 45px auto 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 14px;
  background: var(--white);
  overflow: hidden;
  transition: .3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 23px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-weight: 800;
  font-size: 17px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: .3s ease;
}

.faq-item[open] summary span {
  transform: rotate(45deg);
  background: var(--primary);
  color: var(--white);
}

.faq-answer {
  padding: 0 26px 24px;
}

.faq-answer p {
  color: var(--gray);
  line-height: 1.8;
  margin: 0;
}


/* FAQ BOTTOM CTA */

.faq-bottom-box {
  padding: 50px;
  border-radius: 28px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.faq-bottom-box h2 {
  margin: 10px 0;
  font-size: clamp(28px, 4vw, 42px);
}

.faq-bottom-box p {
  color: var(--gray);
  max-width: 650px;
  line-height: 1.7;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.breadcrumb-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 58px;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--gray);
  text-decoration: none;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span:last-child {
  font-weight: 800;
}


/* =========================================================
   RESPONSIVE CONTACT & FAQ
========================================================= */

@media (max-width: 1100px) {

  .contact-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 900px) {

  .contact-hero-grid,
  .faq-hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-hero-image img,
  .faq-hero-image img {
    height: 420px;
  }

  .contact-cta-box,
  .faq-bottom-box {
    flex-direction: column;
    align-items: flex-start;
  }

}

@media (max-width: 760px) {

  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero-content h1,
  .faq-hero-content h1 {
    font-size: 42px;
  }

  .contact-cta-box,
  .faq-bottom-box {
    padding: 35px 25px;
  }

}

@media (max-width: 480px) {

  .contact-hero-content h1,
  .faq-hero-content h1 {
    font-size: 34px;
  }

  .contact-hero-content p,
  .faq-hero-content p {
    font-size: 15px;
  }

  .contact-hero-image img,
  .faq-hero-image img {
    height: 330px;
    border-radius: 20px;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .contact-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .faq-item summary {
    padding: 20px;
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }

}

/* =========================================================
   REVIEWS PAGE
========================================================= */

.reviews-hero {
  background: var(--cream);
}

.reviews-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.reviews-hero h1 {
  margin: 18px 0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  font-weight: 900;
}

.reviews-hero h1 span {
  color: var(--primary);
}

.reviews-hero p {
  max-width: 620px;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.reviews-hero-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
  box-shadow: var(--shadow-md);
}


/* REVIEW SUMMARY */

.review-summary {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 50px;
  padding: 45px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--white);
}

.review-summary-score {
  text-align: center;
  padding: 25px;
  border-radius: 20px;
  background: var(--cream);
}

.review-summary-score strong {
  display: block;
  font-size: 64px;
  line-height: 1;
  font-weight: 900;
}

.review-summary-score .stars {
  margin: 12px 0;
}

.review-summary-score span {
  color: var(--gray);
  font-size: 14px;
}

.review-summary-text h2 {
  margin-bottom: 15px;
  font-size: 34px;
}

.review-summary-text h2 span {
  color: var(--primary);
}

.review-summary-text p {
  color: var(--gray);
  line-height: 1.8;
}


/* REVIEWS GRID */

.reviews-section {
  background: var(--cream);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 45px;
}

.review-card {
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: .3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.review-top h3 {
  margin: 0 0 3px;
  font-size: 17px;
}

.review-top span {
  color: var(--gray);
  font-size: 13px;
}

.stars {
  letter-spacing: 3px;
  font-size: 17px;
}

.review-card .stars {
  margin-bottom: 15px;
}

.review-card p {
  color: var(--gray);
  line-height: 1.8;
  margin: 0;
}


/* REVIEWS CTA */

.reviews-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 50px;
  border-radius: 28px;
  background: var(--dark);
  color: var(--white);
}

.reviews-cta h2 {
  margin: 10px 0;
  font-size: clamp(28px, 4vw, 42px);
}

.reviews-cta p {
  color: rgba(255,255,255,.75);
  max-width: 650px;
  line-height: 1.7;
}


/* =========================================================
   LEGAL PAGES
========================================================= */

.legal-page {
  background: var(--white);
}

.legal-container {
  max-width: 900px;
}

.legal-container > h1 {
  margin: 15px 0;
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 900;
}

.legal-intro {
  color: var(--gray);
  font-size: 17px;
  line-height: 1.8;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

.legal-content {
  padding-top: 25px;
}

.legal-content h2 {
  margin-top: 35px;
  margin-bottom: 12px;
  font-size: 24px;
}

.legal-content p {
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 15px;
}

.legal-content a {
  color: var(--primary-dark);
  font-weight: 800;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}


/* =========================================================
   RESPONSIVE REVIEWS
========================================================= */

@media (max-width: 900px) {

  .reviews-hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .review-summary {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-cta {
    flex-direction: column;
    align-items: flex-start;
  }

}


@media (max-width: 760px) {

  .reviews-hero h1 {
    font-size: 42px;
  }

  .reviews-hero-image img {
    height: 380px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-summary {
    padding: 28px;
  }

  .review-summary-text h2 {
    font-size: 28px;
  }

  .reviews-cta {
    padding: 35px 25px;
  }

}


@media (max-width: 480px) {

  .reviews-hero h1 {
    font-size: 34px;
  }

  .reviews-hero p {
    font-size: 15px;
  }

  .reviews-hero-image img {
    height: 320px;
    border-radius: 20px;
  }

  .review-summary-score strong {
    font-size: 52px;
  }

  .review-card {
    padding: 23px;
  }

  .legal-container > h1 {
    font-size: 34px;
  }

  .legal-content h2 {
    font-size: 21px;
  }

}

/* =========================================================
   PART 7
   FINAL VISUAL & UX
   ========================================================= */


/* =========================================================
   404 PAGE
   ========================================================= */

.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background:
        radial-gradient(
            circle at top right,
            rgba(245, 158, 11, 0.12),
            transparent 35%
        ),
        var(--cream);
}

.error-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.error-number {
    font-size: clamp(100px, 18vw, 220px);
    line-height: 0.85;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -10px;
    margin-bottom: 30px;
}

.error-content h1 {
    margin: 15px 0 20px;
    font-size: clamp(32px, 5vw, 60px);
    line-height: 1.08;
}

.error-content p {
    max-width: 600px;
    margin: 0 auto 35px;
    color: var(--gray);
    font-size: 17px;
    line-height: 1.8;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}


/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25d366;
    color: #fff;

    border-radius: 50%;

    text-decoration: none;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.18);

    z-index: 999;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.floating-whatsapp span {
    font-size: 25px;
    line-height: 1;
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.22);
}


/* =========================================================
   BACK TO TOP
   ========================================================= */

.back-to-top {
    position: fixed;

    right: 24px;
    bottom: 94px;

    width: 46px;
    height: 46px;

    border: 1px solid var(--border);

    background: var(--white);
    color: var(--dark);

    border-radius: 50%;

    font-size: 20px;
    font-weight: 800;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

    z-index: 998;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}


/* =========================================================
   IMAGE POLISH
   ========================================================= */

img {
    max-width: 100%;
    height: auto;
}

.product-card img,
.category-card img,
.promo-card img,
.review-card img {
    transition:
        transform 0.45s ease;
}

.product-card:hover img,
.category-card:hover img,
.promo-card:hover img,
.review-card:hover img {
    transform: scale(1.04);
}


/* =========================================================
   SMOOTH PAGE EXPERIENCE
   ========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}


/* =========================================================
   LINK TRANSITION
   ========================================================= */

a {
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


/* =========================================================
   BUTTON IMPROVEMENT
   ========================================================= */

.btn {
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .error-page {
        min-height: 65vh;
        padding: 80px 20px;
    }

    .error-number {
        letter-spacing: -5px;
        margin-bottom: 25px;
    }

    .error-content p {
        font-size: 15px;
    }

    .floating-whatsapp {
        width: 54px;
        height: 54px;
        right: 18px;
        bottom: 18px;
    }

    .back-to-top {
        right: 18px;
        bottom: 84px;
        width: 42px;
        height: 42px;
    }

}


@media (max-width: 480px) {

    .error-page {
        padding: 70px 16px;
    }

    .error-number {
        font-size: 110px;
    }

    .error-content h1 {
        font-size: 32px;
    }

    .error-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .error-actions .btn {
        width: 100%;
    }

}