/* =========================================
   HERO WRAPPER
========================================= */

.hero-wrapper {
    position: relative;
    width: 100%;

    /*
     * How long the sticky hero remains active.
     * Increase this if you want the hero to stay
     * longer before the next section takes over.
     */
    height: calc((100vw * 746 / 2048) + 250px);

    background: #f8f6f1;
}


/* =========================================
   HERO SLIDER
========================================= */

.hero-slider {
    position: sticky;

    /*
     * Your navbar = 72px.
     * Announcement bar scrolls away.
     */
    top: 72px;

    width: 100%;

    /*
     * Your images are 2048 × 746.
     * Keep exactly the same ratio.
     */
    aspect-ratio: 2048 / 746;

    height: auto;

    overflow: hidden;

    background: #0b281a;

    z-index: 1;
}


/* =========================================
   SLIDES
========================================= */

.hero-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}


.hero-slide.active {
    opacity: 1;
    visibility: visible;

    z-index: 1;
}


/* =========================================
   HERO IMAGE
========================================= */

.hero-slide img {
    display: block;

    width: 100%;
    height: 100%;

    /*
     * DO NOT USE cover.
     * cover = cropping.
     */
    object-fit: contain;

    object-position: center;

    background: #0b281a;
}


/* =========================================
   ARROWS
========================================= */

.hero-arrow {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    width: 45px;
    height: 45px;

    padding: 0;

    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 50%;

    background: rgba(0,0,0,0.22);

    color: #fff;

    font-size: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 5;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(0,0,0,0.5);

    transform: translateY(-50%) scale(1.05);
}


.hero-prev {
    left: 25px;
}


.hero-next {
    right: 25px;
}


/* =========================================
   DOTS
========================================= */

.hero-dots {
    position: absolute;

    bottom: 18px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;
    align-items: center;

    gap: 9px;

    z-index: 5;
}


.hero-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: 1px solid #fff;
    border-radius: 50%;

    background: transparent;

    opacity: 0.8;

    cursor: pointer;

    transition:
        width 0.2s ease,
        background 0.2s ease;
}


.hero-dot.active {
    width: 24px;

    border-radius: 10px;

    background: #fff;

    opacity: 1;
}

/* =========================================
   PREMIUM MOTION POLISH
========================================= */

.hero-slider {
    box-shadow: 0 18px 40px rgba(11, 40, 26, 0.08);
}

.hero-arrow,
.hero-dot,
.category-card,
.product-card,
.featured-card,
.video-testimonial,
.testimonial-card,
.blog-card {
    will-change: transform, box-shadow, opacity;
}

@keyframes sectionReveal {
    0% {
        opacity: 0;
        transform: translateY(26px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-sugandhwale,
.shop-category,
.best-sellers,
.featured-business,
.video-testimonials,
.testimonials,
.latest-blog {
    opacity: 0;
    transform: translateY(26px);
    animation: sectionReveal 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.shop-category {
    animation-delay: 0.08s;
}

.best-sellers {
    animation-delay: 0.12s;
}

.featured-business {
    animation-delay: 0.16s;
}

.video-testimonials {
    animation-delay: 0.2s;
}

.testimonials {
    animation-delay: 0.24s;
}

.latest-blog {
    animation-delay: 0.28s;
}

@media (prefers-reduced-motion: reduce) {
    .why-sugandhwale,
    .shop-category,
    .best-sellers,
    .featured-business,
    .video-testimonials,
    .testimonials,
    .latest-blog {
        opacity: 1;
        transform: none;
        animation: none;
    }
}


/* =========================================
   CONTENT AFTER HERO
========================================= */

.home-content {
    position: relative;

    z-index: 10;

    background: #f8f6f1;

    /*
     * This lets the body come over the hero.
     */
    margin-top: -250px;

    padding-top: 80px;

    min-height: 1200px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .hero-wrapper {
        height: calc((100vw * 746 / 2048) + 180px);
    }

    .hero-slider {
        top: 65px;

        aspect-ratio: 2048 / 746;

        height: auto;
    }

    .hero-slide img {
        object-fit: contain;
    }

    .hero-prev {
        left: 15px;
    }

    .hero-next {
        right: 15px;
    }

    .home-content {
        margin-top: -180px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .hero-wrapper {
        height: calc((100vw * 746 / 2048) + 120px);
    }

    .hero-slider {
        top: 65px;

        aspect-ratio: 2048 / 746;

        height: auto;
    }

    .hero-arrow {
        width: 35px;
        height: 35px;

        font-size: 17px;
    }

    .hero-prev {
        left: 10px;
    }

    .hero-next {
        right: 10px;
    }

    .hero-dots {
        bottom: 12px;
    }

    .home-content {
        margin-top: -120px;

        padding-top: 50px;
    }
}
/* =========================================
   WHY SUGANDHWALE
========================================= */

.why-sugandhwale {
    position: relative;

    width: 100%;

    background:
        radial-gradient(
            circle at 10% 40%,
            rgba(154, 113, 45, 0.045),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 65%,
            rgba(154, 113, 45, 0.04),
            transparent 25%
        ),
        #f8f6f1;

    padding: 58px 35px 65px;

    overflow: hidden;
}


/* =========================================
   SUBTLE DECORATIVE BACKGROUND
========================================= */

.why-sugandhwale::before,
.why-sugandhwale::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    border: 1px solid rgba(154, 113, 45, 0.06);

    pointer-events: none;
}

.why-sugandhwale::before {
    left: -90px;
    top: 35%;
}

.why-sugandhwale::after {
    right: -90px;
    bottom: 10%;
}


/* =========================================
   CONTAINER
========================================= */

.why-sugandhwale-container {
    position: relative;

    width: 100%;

    max-width: 1280px;

    margin: 0 auto;

    z-index: 1;
}


/* =========================================
   TITLE
========================================= */

.why-sugandhwale-title {
    margin: 0 0 42px;

    text-align: center;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 34px;

    font-weight: 500;

    line-height: 1.2;

    color: #18251d;

    letter-spacing: 0.2px;
}


/* =========================================
   BENEFITS GRID
========================================= */

.why-sugandhwale-grid {
    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 10px;

    align-items: start;
}


/* =========================================
   BENEFIT ITEM
========================================= */

.why-item {
    text-align: center;

    padding: 0 12px;

    transition:
        transform 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
}


/* =========================================
   ICON AREA
========================================= */

.why-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 16px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(154, 113, 45, 0.10),
            rgba(154, 113, 45, 0.035)
        );

    border: 1px solid rgba(154, 113, 45, 0.15);

    position: relative;
}


/* Small inner ring */

.why-icon::after {
    content: "";

    position: absolute;

    inset: 5px;

    border-radius: 50%;

    border: 1px solid rgba(154, 113, 45, 0.08);
}


/* =========================================
   SVG ICON
========================================= */

.why-icon svg {
    position: relative;

    z-index: 1;

    width: 31px;
    height: 31px;

    fill: none;

    stroke: #9a712d;

    stroke-width: 1.35;

    stroke-linecap: round;

    stroke-linejoin: round;

    transition:
        transform 0.3s ease,
        stroke 0.3s ease;
}

.why-item:hover .why-icon svg {
    transform: scale(1.1);

    stroke: #76521c;
}


/* =========================================
   BENEFIT TITLE
========================================= */

.why-item h3 {
    margin: 0 0 7px;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 15px;

    font-weight: 600;

    line-height: 1.35;

    color: #1c251f;
}


/* =========================================
   DESCRIPTION
========================================= */

.why-item p {
    max-width: 155px;

    margin: 0 auto;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 11.5px;

    line-height: 1.55;

    color: #77756e;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .why-sugandhwale {
        padding: 55px 25px 60px;
    }

    .why-sugandhwale-title {
        margin-bottom: 38px;

        font-size: 32px;
    }

    .why-sugandhwale-grid {
        grid-template-columns:
            repeat(3, 1fr);

        gap: 40px 20px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .why-sugandhwale {
        padding: 48px 18px 55px;
    }

    .why-sugandhwale-title {
        margin-bottom: 34px;

        font-size: 29px;
    }

    .why-sugandhwale-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 35px 10px;
    }

    .why-item {
        padding: 0 5px;
    }

    .why-icon {
        width: 52px;
        height: 52px;

        margin-bottom: 13px;
    }

    .why-icon svg {
        width: 28px;
        height: 28px;
    }

    .why-item h3 {
        font-size: 13.5px;
    }

    .why-item p {
        font-size: 11px;

        line-height: 1.5;
    }

}

/* =========================================
   SHOP BY CATEGORY
========================================= */

.shop-category {
    width: 100%;

    background: #f8f6f1;

    padding: 55px 35px 70px;
}


.shop-category-container {
    width: 100%;

    max-width: 1400px;

    margin: 0 auto;
}


/* =========================================
   SECTION HEADING
========================================= */

.section-heading {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    margin-bottom: 30px;
}


.section-heading h2 {

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 29px;

    font-weight: 500;

    line-height: 1.2;

    color: #18251d;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.heading-accent {

    color: #9a712d;

    font-size: 13px;

    line-height: 1;
}


/* =========================================
   CATEGORY GRID
========================================= */

.category-grid {

    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 13px;
}


/* =========================================
   CATEGORY CARD
========================================= */

.category-card {

    display: block;

    overflow: hidden;

    text-decoration: none;

    background: #fbfaf7;

    border: 1px solid #ddd8cc;

    border-radius: 5px;

    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}


.category-card:hover {

    transform: translateY(-7px);

    border-color: #c8b99a;

    box-shadow:
        0 20px 35px rgba(30, 45, 35, 0.10);
}


/* =========================================
   CATEGORY IMAGE
========================================= */

.category-image {

    width: 100%;

    aspect-ratio: 1.2 / 1;

    overflow: hidden;

    background: #e9e4d9;
}


.category-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


.category-card:hover .category-image img {

    transform: scale(1.05);
}


/* =========================================
   CATEGORY INFORMATION
========================================= */

.category-info {

    min-height: 92px;

    padding: 13px 10px 14px;

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;
}


.category-info h3 {

    margin: 0 0 9px;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 13px;

    font-weight: 600;

    line-height: 1.3;

    color: #202a23;
}


.category-info span {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 10.5px;

    line-height: 1.3;

    color: #9a712d;

    transition:
        color 0.2s ease;
}


.category-card:hover .category-info span {

    color: #76521c;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .shop-category {

        padding:
            50px
            25px
            60px;
    }


    .category-grid {

        grid-template-columns:
            repeat(3, 1fr);

        gap: 15px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .shop-category {

        padding:
            45px
            16px
            55px;
    }


    .section-heading {

        margin-bottom: 24px;

        gap: 10px;
    }


    .section-heading h2 {

        font-size: 23px;

        letter-spacing: 0.6px;
    }


    .category-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 12px;
    }


    .category-info {

        min-height: 82px;

        padding:
            11px
            7px
            12px;
    }


    .category-info h3 {

        font-size: 12px;

        margin-bottom: 7px;
    }


    .category-info span {

        font-size: 9.5px;
    }

}

/* =========================================
   BEST SELLERS
========================================= */

.best-sellers {

    width: 100%;

    background: #f8f6f1;

    padding: 25px 35px 70px;
}


.best-sellers-container {

    width: 100%;

    max-width: 1400px;

    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.best-sellers-heading {

    margin-bottom: 28px;
}


.best-sellers-heading h2 {

    font-size: 26px;

    letter-spacing: 1px;
}


.heading-line {

    width: 45px;

    height: 1px;

    background: #9a712d;

    display: block;
}


/* =========================================
   PRODUCT WRAPPER
========================================= */

.best-sellers-wrapper {

    position: relative;

    display: flex;

    align-items: center;

    width: 100%;
}


/* =========================================
   PRODUCT GRID
========================================= */

.best-sellers-grid {

    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}


/* =========================================
   PRODUCT CARD
========================================= */

.product-card {

    background: #fbfaf7;

    border: 1px solid #e1ddd4;

    border-radius: 6px;

    overflow: hidden;

    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}


.product-card:hover {

    transform: translateY(-7px);

    border-color: #cfc3ac;

    box-shadow:
        0 20px 32px rgba(20, 35, 25, 0.12);
}


/* =========================================
   PRODUCT IMAGE
========================================= */

.product-image {

    display: block;

    width: 100%;

    aspect-ratio: 1.35 / 1;

    overflow: hidden;

    background: #eee9df;
}


.product-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.45s ease;
}


.product-card:hover .product-image img {

    transform: scale(1.04);
}


/* =========================================
   PRODUCT INFO
========================================= */

.product-info {

    padding: 13px 14px 15px;

    text-align: center;
}


.product-info h3 {

    margin: 0 0 7px;

    color: #1c2821;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 13px;

    font-weight: 600;

    line-height: 1.35;

    min-height: 18px;
}


/* =========================================
   RATING
========================================= */

.product-rating {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    margin-bottom: 7px;
}


.stars {

    color: #b17b20;

    font-size: 11px;

    letter-spacing: 1px;
}


.review-count {

    color: #77736c;

    font-size: 9px;
}


/* =========================================
   PRICE
========================================= */

.product-price {

    color: #1b261f;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 12px;
}


/* =========================================
   ADD TO CART
========================================= */

.add-to-cart {

    display: block;

    width: 100%;

    max-width: 150px;

    margin: 0 auto;

    padding: 8px 12px;

    background: #0b281a;

    color: #ffffff;

    border-radius: 3px;

    text-decoration: none;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.7px;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.add-to-cart:hover {

    background: #173d29;

    transform: translateY(-1px);

    color: #ffffff;
}


/* =========================================
   PRODUCT ARROWS
========================================= */

.product-arrow {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 34px;

    height: 34px;

    border: none;

    background: transparent;

    color: #38433d;

    font-size: 18px;

    cursor: pointer;

    z-index: 5;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.product-arrow:hover {

    color: #9a712d;

    transform:
        translateY(-50%)
        scale(1.15);
}


.product-prev {

    left: -38px;
}


.product-next {

    right: -38px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .best-sellers {

        padding:
            25px
            25px
            60px;
    }


    .best-sellers-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 15px;
    }


    .product-prev {

        left: -15px;
    }


    .product-next {

        right: -15px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .best-sellers {

        padding:
            20px
            16px
            50px;
    }


    .best-sellers-heading {

        margin-bottom: 22px;
    }


    .best-sellers-heading h2 {

        font-size: 22px;
    }


    .heading-line {

        width: 25px;
    }


    .best-sellers-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 10px;
    }


    .product-info {

        padding:
            10px
            8px
            12px;
    }


    .product-info h3 {

        font-size: 11px;

        min-height: 30px;
    }


    .stars {

        font-size: 9px;
    }


    .review-count {

        font-size: 8px;
    }


    .product-price {

        font-size: 12px;

        margin-bottom: 9px;
    }


    .add-to-cart {

        font-size: 8px;

        padding: 7px 8px;
    }


    .product-arrow {

        width: 25px;

        height: 25px;

        font-size: 14px;
    }


    .product-prev {

        left: -12px;
    }


    .product-next {

        right: -12px;
    }

}

/* =========================================
   FEATURED BUSINESS SECTIONS
========================================= */

.featured-business {

    width: 100%;

    background: #f8f6f1;

    padding: 0 35px 60px;
}


.featured-business-container {

    max-width: 1400px;

    width: 100%;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}


/* =========================================
   FEATURED CARD
========================================= */

.featured-card {

    min-height: 155px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    overflow: hidden;

    background: #f3f0e9;

    border: 1px solid #ded8cb;

    border-radius: 7px;

    text-decoration: none;

    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}


.featured-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 18px 32px rgba(20, 35, 25, 0.10);
}


/* =========================================
   CONTENT
========================================= */

.featured-content {

    padding: 20px 20px 18px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;
}


.featured-content h3 {

    margin: 0 0 8px;

    color: #1b281f;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;

    font-weight: 600;

    line-height: 1.15;
}


.featured-content p {

    margin: 0 0 14px;

    max-width: 260px;

    color: #55564f;

    font-size: 10.5px;

    line-height: 1.5;
}


/* =========================================
   BUTTON
========================================= */

.featured-button {

    display: inline-block;

    padding: 7px 12px;

    background: #0b281a;

    color: #ffffff;

    border-radius: 3px;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 0.6px;

    transition:
        background 0.2s ease;
}


.featured-card:hover .featured-button {

    background: #173d29;
}


/* =========================================
   IMAGE
========================================= */

.featured-image {

    width: 100%;

    height: 100%;

    overflow: hidden;
}


.featured-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


.featured-card:hover .featured-image img {

    transform: scale(1.04);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .featured-business {

        padding:
            0
            25px
            50px;
    }


    .featured-business-container {

        grid-template-columns: 1fr;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .featured-business {

        padding:
            0
            16px
            45px;
    }


    .featured-card {

        min-height: 150px;

        grid-template-columns:
            1fr 0.9fr;
    }


    .featured-content {

        padding:
            15px 13px;
    }


    .featured-content h3 {

        font-size: 15px;
    }


    .featured-content p {

        font-size: 9px;

        margin-bottom: 10px;
    }

}


/* =========================================
   VIDEO TESTIMONIALS
========================================= */

.video-testimonials {
    width: 100%;

    background: #f8f6f1;

    padding: 10px 35px 65px;
}


.video-testimonials-container {
    width: 100%;

    max-width: 1150px;

    margin: 0 auto;
}


/* =========================================
   VIDEO GRID
========================================= */

.video-testimonial-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

    max-width: 900px;

    margin: 0 auto;
}


/* =========================================
   VIDEO CARD
========================================= */

.video-testimonial {
    position: relative;

    width: 100%;

    aspect-ratio: 9 / 16;

    overflow: hidden;

    border-radius: 8px;

    background: #111;

    box-shadow:
        0 8px 25px rgba(20, 35, 25, 0.08);
}


.testimonial-video {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    background: #111;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 800px) {

    .video-testimonials {
        padding:
            10px
            25px
            55px;
    }


    .video-testimonial-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 16px;
    }

}


/* =========================================
   VIDEO TESTIMONIALS
========================================= */

.video-testimonials {
    background: #f8f6f1;
    padding: 10px 35px 65px;
}

.video-testimonials-container {
    max-width: 1150px;
    margin: 0 auto;
}

.video-testimonials .section-title {
    text-align: center;
}


/* =========================================
   CAROUSEL
========================================= */

.video-testimonial-grid {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 24px;

    width: 100%;
    max-width: 1050px;

    margin: 0 auto;

    overflow: hidden;

    padding: 15px 0 25px;
}


/* =========================================
   VIDEO CARD
========================================= */

.video-testimonial {
    flex: 0 0 30%;
    max-width: 300px;
    transform: scale(0.90);
    opacity: 0.45;
    transition:
        transform 800ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.video-testimonial.active {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
    z-index: 2;
}


/* Video */

.testimonial-video {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    background: #000;
}


/* =========================================
   ARROWS
========================================= */

.video-carousel-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 42px;
    height: 42px;

    border: 1px solid rgba(23, 56, 44, 0.20);

    border-radius: 50%;

    background: #f8f6f1;

    color: #17382c;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;

    cursor: pointer;

    z-index: 10;

    transition:
        background 250ms ease,
        color 250ms ease,
        transform 250ms ease;
}

.video-carousel-arrow:hover {
    background: #17382c;

    color: #f8f6f1;

    transform: translateY(-50%) scale(1.05);
}

.video-carousel-prev {
    left: 10px;
}

.video-carousel-next {
    right: 10px;
}


/* =========================================
   DOTS
========================================= */

.video-carousel-dots {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 9px;

    margin-top: 8px;
}

.video-carousel-dot {
    width: 7px;
    height: 7px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #c9c5bb;

    cursor: pointer;

    transition:
        transform 300ms ease,
        background 300ms ease;
}

.video-carousel-dot.active {
    background: #17382c;

    transform: scale(1.4);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .video-testimonials {
        padding-left: 20px;
        padding-right: 20px;
    }

    .video-testimonial-grid {
        gap: 15px;
    }

    .video-testimonial {
        flex-basis: 31%;
        width: 31%;
    }

    .video-carousel-arrow {
        width: 36px;
        height: 36px;

        font-size: 17px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .video-testimonials {
        padding:
            5px
            16px
            50px;
    }

    .video-testimonial-grid {

        justify-content: flex-start;

        gap: 0;

        overflow: hidden;

        padding:
            10px
            0
            20px;
    }

    .video-testimonial {

        flex: 0 0 100%;

        width: 100%;

        max-width: none;

        display: flex;

        justify-content: center;

        align-items: center;

        transform: scale(0.94);

        opacity: 0.5;

        box-shadow:
            0 12px 30px rgba(0, 0, 0, 0.10);
    }

    .video-testimonial.active {

        transform: scale(1);

        opacity: 1;

        box-shadow:
            0 18px 40px rgba(0, 0, 0, 0.15);
    }

    .video-testimonial .testimonial-video {

        width: 100%;

        max-width: 320px;

        aspect-ratio: 9 / 16;
    }

    .video-carousel-arrow {

        width: 34px;
        height: 34px;

        font-size: 16px;
    }

    .video-carousel-prev {
        left: 4px;
    }

    .video-carousel-next {
        right: 4px;
    }

}

/* =========================================
   TESTIMONIALS
========================================= */

.testimonials {

    width: 100%;

    background: #f8f6f1;

    padding: 5px 35px 60px;
}


.testimonials-container {

    max-width: 1400px;

    margin: 0 auto;
}


.testimonial-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

    max-width: 1250px;

    margin: 0 auto;
}


.testimonial-card {

    position: relative;

    padding: 22px 25px 20px;

    background: #fbfaf7;

    border: 1px solid #ded8cb;

    border-radius: 6px;

    min-height: 155px;

    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(18, 27, 22, 0.08);
}


.quote-mark {

    position: absolute;

    top: 7px;

    left: 15px;

    color: #a47a2c;

    font-family: Georgia, serif;

    font-size: 38px;

    line-height: 1;
}


.testimonial-rating {

    color: #b27c20;

    font-size: 10px;

    letter-spacing: 1px;

    margin:
        8px
        0
        8px;
}


.testimonial-card p {

    margin: 0 0 18px;

    color: #55564f;

    font-size: 10.5px;

    line-height: 1.55;
}


.testimonial-author {

    display: flex;

    align-items: center;

    gap: 9px;
}


.author-avatar {

    width: 27px;

    height: 27px;

    border-radius: 50%;

    background: #d9d1c0;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #27352c;

    font-size: 10px;

    font-weight: 600;
}


.testimonial-author strong {

    color: #263129;

    font-size: 9px;
}


@media (max-width: 800px) {

    .testimonials {

        padding:
            5px
            20px
            50px;
    }


    .testimonial-grid {

        grid-template-columns: 1fr;
    }

}

/* =========================================
   LATEST FROM THE BLOG
========================================= */

.latest-blog {
    width: 100%;

    background: #f8f6f1;

    padding: 5px 35px 75px;
}


.latest-blog-container {
    width: 100%;

    max-width: 1400px;

    margin: 0 auto;
}


/* =========================================
   HEADING ROW
========================================= */

.blog-heading-row {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 30px;
}


.blog-heading-row .section-heading {
    margin: 0;
}


/* =========================================
   VIEW ALL
========================================= */

.view-all {
    color: #7b6030;

    text-decoration: none;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.6px;

    white-space: nowrap;

    transition:
        color 0.2s ease;
}


.view-all:hover {
    color: #18251d;
}


/* =========================================
   BLOG GRID
========================================= */

.blog-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


/* =========================================
   BLOG CARD
========================================= */

.blog-card {
    overflow: hidden;

    background: #fbfaf7;

    border: 1px solid #ded8cb;

    border-radius: 7px;

    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}


.blog-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 30px rgba(20, 35, 25, 0.10);
}


/* =========================================
   BLOG IMAGE
========================================= */

.blog-image {
    display: block;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #e9e4d9;
}


.blog-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


.blog-card:hover .blog-image img {
    transform: scale(1.04);
}


/* =========================================
   BLOG INFORMATION
========================================= */

.blog-info {
    padding: 17px 18px 18px;
}


/* CATEGORY */

.blog-category {
    display: block;

    margin-bottom: 8px;

    color: #9a712d;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1px;
}


/* TITLE */

.blog-info h3 {
    margin: 0 0 8px;

    color: #1d2921;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;

    font-weight: 600;

    line-height: 1.25;
}


/* EXCERPT */

.blog-info p {
    margin: 0 0 14px;

    color: #6f7069;

    font-size: 11px;

    line-height: 1.6;
}


/* READ MORE */

.read-more {
    color: #34463a;

    text-decoration: none;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.6px;

    transition:
        color 0.2s ease;
}


.read-more:hover {
    color: #9a712d;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .latest-blog {
        padding:
            5px
            25px
            60px;
    }

    .blog-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 15px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .latest-blog {
        padding:
            0
            16px
            50px;
    }

    .blog-heading-row {
        margin-bottom: 22px;
    }

    .blog-heading-row .section-heading h2 {
        font-size: 22px;
    }

    .view-all {
        font-size: 8px;
    }

    .blog-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .blog-info {
        padding:
            14px
            15px
            16px;
    }

    .blog-info h3 {
        font-size: 16px;
    }

}

/* =========================================
   CINEMATIC HERO CONTENT
========================================= */

.hero-slide-content {
    position: absolute;

    left: 7.5%;
    top: 50%;

    transform: translateY(-50%);

    z-index: 5;

    width: 390px;

    text-align: left;

    pointer-events: none;
}


/* =========================================
   SMALL CATEGORY
========================================= */

.hero-slide-eyebrow {
    display: flex;

    align-items: center;
    gap: 12px;

    margin-bottom: 22px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;

    color: #c4a15b;
}

.hero-slide-eyebrow::before {
    content: "";

    width: 32px;
    height: 1px;

    background: #c4a15b;

    flex-shrink: 0;
}


/* =========================================
   MAIN TITLE
========================================= */

.hero-slide-content h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(48px, 5vw, 76px);

    font-weight: 400;

    line-height: 0.96;

    letter-spacing: -1.5px;

    text-transform: uppercase;

    color: #ffffff;
}


/* =========================================
   SUBTEXT
========================================= */

.hero-slide-content p {
    margin: 24px 0 0;

    max-width: 270px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    font-weight: 400;

    line-height: 1.6;

    letter-spacing: 0.5px;

    color: rgba(255,255,255,0.78);
}


/* =========================================
   MINIMAL EXPLORE LINK
========================================= */

.hero-slide-button {
    pointer-events: auto;

    display: inline-flex;

    align-items: center;

    gap: 13px;

    margin-top: 28px;

    padding: 0 0 8px;

    border: 0;

    border-bottom: 1px solid rgba(196,161,91,0.8);

    background: transparent;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2.2px;

    text-transform: uppercase;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        gap 0.3s ease;
}

.hero-slide-button::after {
    content: "→";

    font-size: 15px;

    line-height: 1;

    color: #c4a15b;

    transition: transform 0.3s ease;
}

.hero-slide-button:hover {
    color: #c4a15b;

    background: transparent;
}

.hero-slide-button:hover::after {
    transform: translateX(5px);
}


/* =========================================
   CAR FRAGRANCE
========================================= */

.hero-slide-content-car {
    left: 7.5%;
}


/* =========================================
   PERFUME
========================================= */

.hero-slide-content-perfume {
    left: 7.5%;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .hero-slide-content {
        left: 7%;

        width: 300px;
    }

    .hero-slide-content h2 {
        font-size: 48px;
    }

    .hero-slide-eyebrow {
        margin-bottom: 16px;

        font-size: 8px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .hero-slide-content {
        left: 8%;

        width: 220px;
    }

    .hero-slide-eyebrow {
        gap: 8px;

        margin-bottom: 13px;

        font-size: 7px;

        letter-spacing: 2px;
    }

    .hero-slide-eyebrow::before {
        width: 20px;
    }

    .hero-slide-content h2 {
        font-size: 34px;

        line-height: 0.98;

        letter-spacing: -0.5px;
    }

    .hero-slide-content p {
        max-width: 190px;

        margin-top: 15px;

        font-size: 10px;

        line-height: 1.5;
    }

    .hero-slide-button {
        margin-top: 19px;

        font-size: 7px;

        letter-spacing: 1.7px;
    }

}