
/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    color: #2d2d2d;
    background: #ffffff;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
}


/* =========================
   CONTAINER
========================= */

.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.header {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    font-family: "Playfair Display", serif;
    font-size: 27px;
    letter-spacing: 4px;
    font-weight: 600;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}

.navigation a {
    font-size: 13px;
    font-weight: 500;
    color: #444444;
    transition: 0.3s ease;
}

.navigation a:hover {
    color: #9a7650;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.header-actions button {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 19px;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.98) 0%,
            rgba(255,255,255,0.90) 45%,
            rgba(255,255,255,0.25) 100%
        ),
        url("../images/hero.jpg")
        center/cover no-repeat;
}

.hero-content {
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 620px;
}

.eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
    color: #9a7650;
    margin-bottom: 18px;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.08;
    font-weight: 500;
    margin-bottom: 25px;
}

.hero h1 span {
    display: block;
    color: #9a7650;
}

.hero-description {
    max-width: 560px;
    font-size: 16px;
    color: #555555;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}


/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-block;
    padding: 14px 26px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
}

.btn-primary {
    background: #2d2d2d;
    color: #ffffff;
}

.btn-primary:hover {
    background: #9a7650;
}

.btn-secondary {
    border: 1px solid #2d2d2d;
    color: #2d2d2d;
}

.btn-secondary:hover {
    background: #2d2d2d;
    color: #ffffff;
}


/* =========================
   INTRO
========================= */

.intro {
    padding: 100px 0 70px;
    text-align: center;
}

.intro-container {
    max-width: 800px;
}

.intro h2,
.section-heading h2,
.about h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 20px;
}

.intro p:last-child {
    color: #666666;
    font-size: 16px;
}


/* =========================
   SECTIONS
========================= */

.section {
    padding: 90px 0;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 45px;
}

.section-heading p:last-child {
    color: #666666;
}


/* =========================
   CATEGORIES
========================= */

.categories {
    background: #f8f6f2;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    background: #ffffff;
    transition: 0.3s ease;
    overflow: hidden;
    border: 1px solid #eeeeee;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}


/* =========================
   CATEGORY PRODUCT IMAGE
========================= */

.category-image {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f5f2ed;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.04);
}


/* =========================
   CATEGORY INFO
========================= */

.category-info {
    padding: 25px;
}

.category-info h3 {
    font-family: "Playfair Display", serif;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #2d2d2d;
}

.category-info p {
    font-size: 13px;
    color: #666666;
    margin-bottom: 20px;
}

.category-link {
    font-size: 12px;
    font-weight: 600;
    color: #9a7650;
    transition: 0.3s ease;
}

.category-card:hover .category-link {
    color: #2d2d2d;
}


/* =========================
   SKIN CONCERNS
========================= */

.concerns {
    background: #ffffff;
}

.concern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.concern-grid a {
    padding: 25px;
    border: 1px solid #dddddd;
    font-family: "Playfair Display", serif;
    font-size: 22px;
    transition: 0.3s ease;
}

.concern-grid a:hover {
    background: #2d2d2d;
    color: #ffffff;
    border-color: #2d2d2d;
}


/* =========================
   PRODUCTS
========================= */

.featured {
    background: #f8f6f2;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: #ffffff;
}

.product-image {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eee9e1;
    color: #999999;
    font-size: 12px;
    letter-spacing: 2px;
}

.product-info {
    padding: 25px;
}

.product-category {
    font-size: 10px;
    letter-spacing: 2px;
    color: #9a7650;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-info h3 {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.product-info p:not(.product-category) {
    font-size: 13px;
    color: #666666;
    margin-bottom: 20px;
}

.product-link {
    font-size: 12px;
    font-weight: 600;
    color: #9a7650;
}

.center-button {
    text-align: center;
    margin-top: 45px;
}


/* =========================
   ABOUT
========================= */

.about {
    background: #ffffff;
}

.about-container {
    display: flex;
    justify-content: center;
}

.about-content {
    max-width: 760px;
    text-align: center;
}

.about-content p {
    color: #666666;
    margin-bottom: 18px;
}

.text-link {
    display: inline-block;
    margin-top: 10px;
    color: #9a7650;
    font-size: 13px;
    font-weight: 600;
}


/* =========================

   FOOTER

========================= */

.footer {

    background: #252525;

    color: #ffffff;

}

.footer-container {

    padding: 70px 0;

    display: flex;

    justify-content: space-between;

    gap: 50px;

}

.footer-brand {

    max-width: 350px;

}

.footer-brand .footer-logo {

    display: inline-block;

    margin-bottom: 15px;

}

.footer-brand .footer-logo img {

    width: 200px !important;

    max-width: 200px !important;

    height: auto !important;

    display: block;

}

.footer-brand p {

    color: #bbbbbb;

    font-size: 13px;

}

.footer-links {

    display: flex;

    gap: 90px;

}

.footer-links div {

    display: flex;

    flex-direction: column;

    gap: 10px;

}

.footer-links h4 {

    font-size: 13px;

    margin-bottom: 8px;

}

.footer-links a {

    font-size: 12px;

    color: #bbbbbb;

}

.footer-links a:hover {

    color: #ffffff;

}

.footer-bottom {

    border-top: 1px solid #444444;

    padding: 20px 0;

}

.footer-bottom .container {

    display: flex;

    justify-content: space-between;

    gap: 20px;

}

.footer-bottom p {

    font-size: 11px;

    color: #999999;

}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .navigation {
        display: none;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .concern-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-links {
        gap: 50px;
    }
}


@media (max-width: 600px) {

    .header-container {
        min-height: 70px;
    }

    .logo {
        font-size: 22px;
    }

    .hero {
        min-height: 600px;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero-description {
        font-size: 14px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .concern-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 35px;
    }

    .footer-bottom .container {
        flex-direction: column;
    }
}


/* =========================
PRODUCTS PAGE
========================= */

.products-hero {
padding: 110px 0;
text-align: center;
background: #f8f6f2;
}

.products-hero .container {
max-width: 800px;
}

.products-hero h1 {
font-family: "Playfair Display", serif;
font-size: clamp(42px, 5vw, 65px);
line-height: 1.15;
font-weight: 500;
margin-bottom: 20px;
}

.products-hero p:last-child {
color: #666666;
font-size: 16px;
}


/* =========================
PRODUCT FILTERS
========================= */

.product-filters {
padding: 30px 0;
background: #ffffff;
border-bottom: 1px solid #eeeeee;
}

.filter-buttons {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 10px;
}

.filter-btn {
border: 1px solid #dddddd;
background: #ffffff;
padding: 11px 20px;
font-family: "Montserrat", sans-serif;
font-size: 12px;
font-weight: 500;
cursor: pointer;
transition: 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
background: #2d2d2d;
color: #ffffff;
border-color: #2d2d2d;
}


/* =========================
PRODUCTS SECTION
========================= */

.products-section {
padding: 90px 0;
background: #ffffff;
}

.products-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.products-grid .product-card {
border: 1px solid #eeeeee;
transition: 0.3s ease;
}

.products-grid .product-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.products-grid .product-image {
height: 360px;
}


/* =========================
DISCOVER SECTION
========================= */

.products-discover {
padding: 100px 20px;
text-align: center;
background: #f8f6f2;
}

.products-discover .container {
max-width: 750px;
}

.products-discover h2 {
font-family: "Playfair Display", serif;
font-size: clamp(34px, 4vw, 50px);
line-height: 1.2;
font-weight: 500;
margin-bottom: 20px;
}

.products-discover p:not(.eyebrow) {
color: #666666;
margin-bottom: 30px;
}


/* =========================
PRODUCTS MOBILE
========================= */

@media (max-width: 900px) {

.products-grid {
    grid-template-columns: repeat(2, 1fr);
}

}

@media (max-width: 600px) {

.products-hero {
    padding: 80px 0;
}

.products-hero h1 {
    font-size: 40px;
}

.products-grid {
    grid-template-columns: 1fr;
}

.filter-buttons {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 5px;
}

.filter-btn {
    white-space: nowrap;
}

}


/* ================= LOGO IMAGE ================= */

.logo img {
    width: 180px;
    height: auto;
    display: block;
}
