:root {
    --ink: #17231d;
    --green: #176b4d;
    --mint: #dff3e8;
    --cream: #faf7f0;
    --coral: #ff7a59;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--ink);
    background: var(--cream);
    font-family: "DM Sans", sans-serif;
}

.navbar {
    padding: 1rem 0;
    transition: 0.25s ease;
}

.navbar.scrolled {
    background: rgba(250, 247, 240, 0.94);
    box-shadow: 0 8px 30px rgba(23, 35, 29, 0.08);
    backdrop-filter: blur(14px);
}

.navbar-brand {
    color: var(--green) !important;
    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
    font-weight: 800;
}

.brand-mark {
    width: 2.25rem;
    height: 2.25rem;
    display: inline-grid;
    place-items: center;
    color: white;
    background: var(--green);
    border-radius: 12px;
}

.hero {
    min-height: 760px;
    padding: 10rem 0 6rem;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 18%,
            #f9d9c7 0 16%,
            transparent 38%
        ),
        linear-gradient(
            140deg,
            #f8f3e8 0%,
            #e8f5ee 100%
        );
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    color: var(--green);
    background: white;
    border-radius: 99px;
    box-shadow: 0 8px 25px rgba(23, 107, 77, 0.1);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2 {
    font-family: "Playfair Display", serif;
}

.hero h1 {
    max-width: 680px;
    margin: 1.5rem 0;
    font-size: clamp(3.2rem, 7vw, 6.8rem);
    line-height: 0.93;
    letter-spacing: -0.055em;
}

.hero h1 em {
    color: var(--green);
    font-style: italic;
}

.hero-copy {
    max-width: 560px;
    color: #53645b;
    font-size: 1.18rem;
}

.btn-brand {
    padding: 0.85rem 1.25rem;
    color: white !important;
    background: var(--green);
    border-color: var(--green);
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(23, 107, 77, 0.2);
    font-weight: 700;
    transition: 0.2s ease;
}

.btn-brand:hover {
    color: white;
    background: #0f553d;
    border-color: #0f553d;
    transform: translateY(-2px);
}

.btn-soft {
    padding: 0.85rem 1.25rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(23, 35, 29, 0.15);
    border-radius: 14px;
    font-weight: 700;
}

.hero-collage {
    position: relative;
    min-height: 480px;
}

.hero-card {
    position: absolute;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    box-shadow: 0 25px 60px rgba(23, 35, 29, 0.18);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card.main {
    top: 15px;
    right: 2%;
    width: 68%;
    height: 390px;
    transform: rotate(3deg);
}

.hero-card.small {
    bottom: 0;
    left: 0;
    width: 43%;
    height: 245px;
    transform: rotate(-7deg);
}

.floating-note {
    position: absolute;
    right: 1%;
    bottom: 16px;
    z-index: 3;
    padding: 0.85rem 1rem;
    background: white;
    border-radius: 18px;
    box-shadow: 0 16px 35px rgba(23, 35, 29, 0.16);
    font-weight: 800;
}

.section-pad {
    padding: 6.5rem 0;
}

.section-title {
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.filter-btn {
    padding: 0.7rem 1rem;
    color: #53645b;
    background: white;
    border: 1px solid #d9ded9;
    border-radius: 99px;
    font-weight: 700;
    transition: 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
    color: white;
    background: var(--ink);
    border-color: var(--ink);
}

.search-box {
    position: relative;
    max-width: 430px;
}

.search-box i {
    position: absolute;
    top: 50%;
    left: 1rem;
    color: #718078;
    transform: translateY(-50%);
}

.search-box input {
    padding: 0.9rem 1rem 0.9rem 2.8rem;
    background: white;
    border: 1px solid #d9ded9;
    border-radius: 14px;
}

.product-card {
    height: 100%;
    overflow: hidden;
    background: white;
    border: 0;
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(23, 35, 29, 0.07);
    transition: 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 22px 45px rgba(23, 35, 29, 0.13);
    transform: translateY(-8px);
}

.product-image {
    position: relative;
    height: 270px;
    overflow: hidden;
    background: #e8ece9;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.7rem;
    color: white;
    background: var(--coral);
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 800;
}

.product-category {
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-price {
    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
    font-weight: 800;
}

.how-card {
    height: 100%;
    padding: 2rem;
    background: #f1eee6;
    border-radius: 24px;
}

.how-icon {
    width: 3.25rem;
    height: 3.25rem;
    display: grid;
    place-items: center;
    color: white;
    background: var(--green);
    border-radius: 16px;
    font-size: 1.35rem;
}

.contact-banner {
    position: relative;
    padding: 4rem;
    overflow: hidden;
    color: white;
    background: var(--green);
    border-radius: 36px;
}

.contact-banner::after {
    position: absolute;
    top: -70px;
    right: -45px;
    width: 260px;
    height: 260px;
    border: 55px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
}

footer {
    color: #b9c3bd;
    background: var(--ink);
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 20;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: white;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-size: 1.65rem;
    text-decoration: none;
}

.whatsapp-float:hover {
    color: white;
    background: #1fb959;
    transform: translateY(-3px);
}

.skeleton {
    height: 420px;
    background:
        linear-gradient(
            90deg,
            #eeeeee 25%,
            #f8f8f8 50%,
            #eeeeee 75%
        );
    background-size: 200% 100%;
    border-radius: 24px;
    animation: shine 1.2s infinite;
}

@keyframes shine {
    to {
        background-position: -200% 0;
    }
}

@media (max-width: 991px) {
    .hero {
        padding-top: 8rem;
    }

    .hero-collage {
        margin-top: 2rem;
    }

    .navbar-collapse {
        padding: 1rem;
        background: rgba(250, 247, 240, 0.97);
        border-radius: 18px;
        box-shadow: 0 15px 35px rgba(23, 35, 29, 0.1);
    }
}

@media (max-width: 575px) {
    .hero {
        min-height: auto;
        padding-bottom: 4rem;
    }

    .hero-collage {
        min-height: 390px;
    }

    .hero-card.main {
        height: 310px;
    }

    .hero-card.small {
        height: 185px;
    }

    .section-pad {
        padding: 4.5rem 0;
    }

    .contact-banner {
        padding: 2.2rem 1.5rem;
    }

    .product-image {
        height: 240px;
    }
}