* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #f7f1e9;
    --cream-dark: #eee4d8;
    --gold: #b98538;
    --gold-light: #c99b5a;
    --brown: #28251f;
    --text: #38342e;
    --white: #ffffff;
}

body {
    font-family: "Montserrat", sans-serif;
    background: #e9e0d6;
    color: var(--text);
}


/* ================= NAVBAR ================= */

.verona-navbar {
    background: rgba(255, 255, 255, .9);
    height: 70px;
    border-bottom: 1px solid #eee5dc;
}

.navbar-brand img {
    width: 105px;
}

.navbar-nav {
    gap: 25px;
}

.nav-link {
    color: #333 !important;
    font-size: 13px;
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: .3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


/* ================= BUTTONS ================= */

.gold-btn {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 11px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: .3s;
}

.gold-btn:hover {
    background: #9c6e28;
    color: white;
    transform: translateY(-2px);
}

.outline-btn {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid var(--gold);
    color: var(--brown);
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
}


/* ================= HERO ================= */

.hero {
    min-height: 600px;
    background:
        linear-gradient(90deg,
            rgba(247, 241, 233, .95),
            rgba(247, 241, 233, .35)),
        url("../images/hero.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;

    padding: 70px 8%;

    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 50%;
    z-index: 2;
}

.small-title {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 58px;
    line-height: 1.05;
    color: #25221e;
    margin: 20px 0;
}

.hero p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.hero-image {
    position: absolute;
    right: 8%;
    bottom: 0;
    height: 90%;
}

.hero-image img {
    height: 100%;
    width: auto;
    object-fit: contain;
}


/* ================= ABOUT ================= */

.about-section {
    background: var(--cream);
    padding: 90px 0;
}

.about-section h2 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    line-height: 1.15;
    margin: 15px 0 20px;
}

.about-section p {
    font-size: 13px;
    line-height: 1.9;
    max-width: 420px;
    margin-bottom: 25px;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}


/* ================= WHY ================= */

.why-section {
    background: #f4ede5;
    padding: 70px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    margin-top: 10px;
}

.feature-box {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    width: 55px;
    height: 55px;

    border: 1px solid var(--gold);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 15px;

    color: var(--gold);

    font-size: 20px;
}

.feature-box h5 {
    font-family: "Playfair Display", serif;
    font-size: 16px;
}

.feature-box p {
    font-size: 11px;
    line-height: 1.7;
}


/* ================= PRODUCTS ================= */

.products-section {
    background: var(--cream);
    padding: 80px 0;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;

    transition: .3s;

    border: 1px solid #eee3d8;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.product-image {
    height: 280px;
    background: #eee5db;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    transition: .5s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 18px;
}

.product-info h4 {
    font-family: "Playfair Display", serif;
    font-size: 17px;
}

.product-info p {
    color: #777;
    font-size: 11px;
    line-height: 1.7;
    min-height: 40px;
}

.details-btn {
    display: inline-block;
    color: var(--gold);
    border: 1px solid #dfc7a6;
    padding: 7px 12px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 10px;
}


/* ================= CTA ================= */

.cta-section {
    background: var(--cream);
    padding: 20px 0 50px;
}

.cta-box {
    min-height: 140px;

    background:
        linear-gradient(rgba(30, 25, 20, .65),
            rgba(30, 25, 20, .65)),
        url("../images/hair-bg.jpg");

    background-size: cover;
    background-position: center;

    border-radius: 9px;

    padding: 35px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: white;
}

.cta-box h2 {
    font-family: "Playfair Display", serif;
    margin-bottom: 8px;
}

.cta-box p {
    font-size: 12px;
}


/* ================= FOOTER ================= */

.footer {
    background: #28251f;
    color: #eee;
    padding: 55px 0 15px;
}

.footer-logo {
    width: 110px;
    margin-bottom: 15px;
}

.footer p {
    color: #bbb;
    font-size: 11px;
    line-height: 1.8;
}

.footer h5 {
    color: white;
    font-size: 13px;
    margin-bottom: 20px;
}

.footer a {
    display: block;
    color: #aaa;
    text-decoration: none;
    font-size: 11px;
    margin-bottom: 10px;
}

.footer a:hover {
    color: var(--gold-light);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 28px;
    height: 28px;

    border: 1px solid #777;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    margin: 0;
}

.copyright {
    border-top: 1px solid #49453f;
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    font-size: 10px;
    color: #999;
}

/* =========================================
   PRODUCT DETAILS
========================================= */

.product-details {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 55% 45%;
    background: var(--cream);
}


/* =========================================
   PRODUCT IMAGE
========================================= */

.details-image {
    height: 100vh;
    background: #eee5db;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.details-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* =========================================
   CONTENT
========================================= */

.details-content {
    background: #eee4d8;
    padding: 80px 75px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* =========================================
   DOTS
========================================= */

.details-dots {
    display: flex;
    gap: 14px;
    margin-bottom: 55px;
}

.details-dots span {
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
}


/* =========================================
   SMALL TITLE
========================================= */

.details-small-title {
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 20px;
}


/* =========================================
   PRODUCT TITLE
========================================= */

.details-content h1 {
    font-family: "Playfair Display", serif;
    font-size: 65px;
    line-height: 1.05;
    color: var(--brown);
    margin: 0 0 30px;
    max-width: 500px;
}


/* =========================================
   LINE
========================================= */

.details-line {
    width: 100%;
    height: 1px;
    background: #c99b5a;
    margin-bottom: 35px;
}


/* =========================================
   DESCRIPTION
========================================= */

.details-description {
    font-size: 14px;
    line-height: 2;
    color: #665e54;
    max-width: 500px;
    margin-bottom: 30px;
}


/* =========================================
   PRICE
========================================= */

.details-price {
    font-family: "Playfair Display", serif;
    color: var(--gold);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 35px;
}


/* =========================================
   BUTTONS
========================================= */

.details-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.details-btn-main {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: .3s;
}

.details-btn-main:hover {
    background: #9c6e28;
    color: white;
    transform: translateY(-2px);
}


.back-btn {
    display: inline-block;
    padding: 13px 25px;
    border: 1px solid var(--gold);
    color: var(--brown);
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    transition: .3s;
}

.back-btn:hover {
    background: var(--gold);
    color: white;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .product-details {
        grid-template-columns: 1fr;
    }

    .details-image {
        min-height: 500px;
        height: 500px;
    }

    .details-content {
        min-height: 600px;
        padding: 60px 50px;
    }

    .details-content h1 {
        font-size: 50px;
    }
}


@media (max-width: 767px) {

    .product-details {
        display: block;
    }

    .details-image {
        height: 400px;
        min-height: 400px;
    }

    .details-content {
        padding: 50px 25px;
        min-height: auto;
    }

    .details-dots {
        margin-bottom: 35px;
    }

    .details-content h1 {
        font-size: 42px;
    }

    .details-description {
        font-size: 13px;
    }

    .details-price {
        font-size: 28px;
    }

    .details-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .details-btn-main,
    .back-btn {
        text-align: center;
    }
}


/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .navbar-nav {
        background: white;
        padding: 20px;
        gap: 10px;
    }

    .navbar .gold-btn {
        display: none;
    }

    .hero {
        min-height: 650px;
    }

    .hero-content {
        width: 60%;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero-image {
        right: -5%;
        opacity: .55;
    }

}


@media (max-width: 767px) {

    .verona-navbar {
        height: auto;
        padding: 10px 0;
    }

    .hero {
        min-height: 600px;
        padding: 60px 25px;
        text-align: center;
    }

    .hero-content {
        width: 100%;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-image {
        position: absolute;
        right: -20%;
        height: 75%;
        opacity: .18;
    }

    .hero-content {
        position: relative;
        z-index: 3;
    }

    .about-section {
        padding: 60px 20px;
    }

    .about-section h2 {
        font-size: 35px;
    }

    .about-image {
        margin-top: 35px;
    }

    .products-section {
        padding: 60px 20px;
    }

    .product-image {
        height: 250px;
    }

    .cta-box {
        margin: 0 15px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer {
        padding: 45px 25px 15px;
    }

}
.products-page {
    background: var(--cream);
    min-height: 100vh;
    padding: 80px 0;
}

.products-header {
    text-align: center;
    margin-bottom: 30px;
}

.products-header h1 {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    margin: 12px 0;
}

.products-header p {
    font-size: 13px;
    color: #666;
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-filter a {
    padding: 10px 20px;
    background: #e8dfd5;
    color: #443c33;
    border-radius: 5px;
    text-decoration: none;
    font-size: 11px;
}

.category-filter a.active,
.category-filter a:hover {
    background: var(--gold);
    color: white;
}