/* =====================================================
   ROOT VARIABLES
===================================================== */

:root {
    --primary: #1d1d1d;
    --secondary: #c7a36a;
    --light-bg: #f8f5f0;
    --white: #ffffff;
    --text: #333333;
    --dark:#000;
    --muted: #777777;
    --border: #e8e3dc;
    --heading-font: "Playfair Display", serif;
    --body-font: "DM Sans", sans-serif;
}


/* =====================================================
   GENERAL
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

button {
    border: none;
    background: none;
}

.section-padding {
    padding: 100px 0;
}


/* =====================================================
   PRELOADER
===================================================== */

#preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    transition: 0.5s ease;
}

.loader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.loader-logo img {
    width: 280px;
    max-width: 80%;
    height: auto;
    object-fit: contain;
}

.loader-line {
    width: 80px;
    height: 2px;
    background: var(--secondary);
    margin: 0 auto;

    animation: loaderAnimation 1.2s infinite;
}

@keyframes loaderAnimation {

    0% {
        width: 20px;
    }

    50% {
        width: 100px;
    }

    100% {
        width: 20px;
    }
}
#preloader.hide {
    opacity: 0;
    visibility: hidden;
}


/* =====================================================
   TOP BAR
===================================================== */

.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 9px 0;
    font-size: 12px;
}

.top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-content i {
    color: var(--secondary);
    margin-right: 5px;
}

.top-offer {
    color: #e8c992;
    font-weight: 600;
    letter-spacing: 0.5px;
}


/* =====================================================
   NAVBAR
===================================================== */

.main-navbar {
    background: var(--white);
    padding: 17px 0;
    transition: 0.3s ease;
    z-index: 1000;
}

.main-navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    animation: navSlide 0.4s ease;
}

@keyframes navSlide {

    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }

}

.brand-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-main {
    font-family: var(--heading-font);
    font-size: 25px;
    letter-spacing: 3px;
    color: var(--primary);
}

.site-logo {
    width: 174px;
    height: auto;
    object-fit: contain;
    display: block;
}

.navbar-nav {
    gap: 8px;
}

.nav-link {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 13px !important;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background: var(--secondary);
    bottom: 3px;
    left: 13px;
    transition: 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 26px);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary);
}

.dropdown-menu {
    border: none;
    border-radius: 0;
    padding: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    padding: 9px 15px;
    font-size: 13px;
}

.dropdown-item:hover {
    background: var(--light-bg);
    color: var(--secondary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 17px;
}

.nav-icon {
    font-size: 20px;
    color: var(--primary);
    position: relative;
    transition: 0.3s;
}

.nav-icon:hover {
    color: var(--secondary);
}

.count {
    position: absolute;
    top: -8px;
    right: -9px;

    width: 16px;
    height: 16px;

    background: var(--secondary);
    color: white;

    border-radius: 50%;

    font-size: 9px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =====================================================
   FASHION HERO CAROUSEL
===================================================== */

.fashion-carousel-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}


.fashion-slide {
    height: 720px;

    position: relative;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}


.slide-one {
    background-image:
        url("../images/slider1.jpg");
}

.slide-two {
    background-image:
        url("../images/slider2.jpg");
}

.slide-three {
    background-image:
        url("../images/slider3.jpg");
}

.slide-four {
    background-image:
        url("../images/slider4.jpg");
}



.fashion-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.48) 45%,
            rgba(0, 0, 0, 0.10) 100%
        );
}


.fashion-content {
    position: relative;
    z-index: 5;

    max-width: 650px;

    color: #ffffff;

    padding-left: 40px;
}

.fashion-subtitle {
    display: inline-block;

    color: #d7b57b;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 4px;

    margin-bottom: 20px;
}

.fashion-content h1 {
    font-family: var(--heading-font);

    font-size: clamp(55px, 7vw, 92px);

    font-weight: 600;

    line-height: 1;

    margin: 0 0 25px;
}

.fashion-content h1 span {
    display: block;

    color: #d5b276;
}


.fashion-content p {
    max-width: 500px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 30px;
}


.fashion-buttons {
    display: flex;

    align-items: center;

    gap: 14px;
}


.carousel-btn {
    background: #c7a36a;

    color: #ffffff;

    border-radius: 0;

    padding: 14px 27px;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.5px;

    transition: 0.3s ease;
}

.carousel-btn:hover {
    background: #ffffff;

    color: #1d1d1d;

    transform: translateY(-3px);
}

.carousel-btn i {
    margin-left: 8px;
}


.carousel-outline-btn {
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.8);

    border-radius: 0;

    padding: 13px 27px;

    font-size: 12px;

    transition: 0.3s ease;
}

.carousel-outline-btn:hover {
    background: #ffffff;

    color: #1d1d1d;
}


.carousel-control-prev,
.carousel-control-next {
    width: 70px;

    opacity: 1;

    z-index: 10;
}

.carousel-arrow {
    width: 48px;
    height: 48px;

    border: 1px solid rgba(255, 255, 255, 0.6);

    color: #ffffff;

    display: flex;

    align-items: center;
    justify-content: center;

    transition: 0.3s ease;
}

.carousel-arrow:hover {
    background: #c7a36a;

    border-color: #c7a36a;
}


.fashion-carousel-section .carousel-indicators {
    z-index: 10;

    bottom: 30px;

    margin-bottom: 0;

    justify-content: flex-start;

    left: calc((100% - 1320px) / 2);

    right: auto;

    width: auto;
}

.fashion-carousel-section .carousel-indicators button {
    width: 35px;
    height: 2px;

    margin: 0 5px;

    background-color: rgba(255, 255, 255, 0.5);

    border: none;

    opacity: 1;

    transition: 0.3s ease;
}

.fashion-carousel-section .carousel-indicators button.active {
    width: 65px;

    background-color: #d7b57b;
}

.carousel-fade .carousel-item {
    transition: opacity 1.2s ease-in-out;
}

/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {
    margin-bottom: 50px;
}

.section-heading > span,
.section-label {
    color: var(--secondary);
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
}

.section-heading h2,
.about-content h2,
.trending-content h2 {
    font-family: var(--heading-font);
    font-size: 45px;
    color: var(--primary);
    margin: 12px 0;
}

.section-heading p {
    color: var(--muted);
    max-width: 550px;
    margin: auto;
    line-height: 1.7;
}


/* =====================================================
   CATEGORY
===================================================== */

.category-card {
    height: 430px;
    overflow: hidden;
    position: relative;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7),
        transparent 65%
    );
}

.category-card img {
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-content {
    position: absolute;
    z-index: 2;
    bottom: 25px;
    left: 25px;
    color: white;
}

.category-content span {
    font-size: 11px;
    color: #dfbd80;
}

.category-content h3 {
    font-family: var(--heading-font);
    font-size: 29px;
    margin: 5px 0 10px;
}

.category-content a {
    color: white;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-content a i {
    margin-left: 8px;
}


/* =====================================================
   ABOUT
===================================================== */

.about-section {
    background: var(--light-bg);
}

.about-image-wrapper {
    position: relative;
    padding-right: 35px;
    padding-bottom: 35px;
}

.about-image-wrapper img {
    height: 600px;
    object-fit: cover;
}

.about-image-wrapper::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 80%;
    height: 80%;
    border: 1px solid var(--secondary);
    z-index: 0;
}

.about-image-wrapper img {
    position: relative;
    z-index: 1;
}

.experience-box {
    position: absolute;
    bottom: 10px;
    right: 10px;

    background: var(--primary);
    color: white;

    padding: 20px 25px;
    z-index: 3;

    display: flex;
    align-items: center;
    gap: 15px;
}

.experience-box strong {
    font-family: var(--heading-font);
    font-size: 40px;
    color: var(--secondary);
}

.experience-box span {
    font-size: 11px;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    padding-left: 25px;
}

.about-content h2 span,
.trending-content h2 span {
    color: var(--secondary);
    display: block;
}

.about-content p,
.trending-content p {
    color: var(--muted);
    line-height: 1.9;
    margin: 18px 0;
}

.btn-dark-custom {
    background: var(--primary);
    color: white;
    padding: 14px 25px;
    border-radius: 0;
    font-size: 13px;
    margin-top: 15px;
    transition: 0.3s;
}

.btn-dark-custom:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

.btn-dark-custom i {
    margin-left: 10px;
}


/* =====================================================
   PRODUCTS
===================================================== */

.products-section {
    background: white;
}

.view-all {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding-bottom: 10px;
}

.view-all i {
    margin-left: 8px;
}

.product-card {
    position: relative;
}

.product-image {
    position: relative;
    height: 430px;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image img {
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    z-index: 3;
    top: 15px;
    left: 15px;

    background: var(--primary);
    color: white;

    padding: 7px 11px;
    font-size: 9px;
    letter-spacing: 1px;
}

.product-badge.sale {
    background: #a66a55;
}

.wishlist-btn {
    position: absolute;
    z-index: 3;
    top: 15px;
    right: 15px;

    width: 37px;
    height: 37px;

    background: white;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s;
}

.wishlist-btn:hover {
    background: var(--secondary);
    color: white;
}

.product-overlay {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    padding: 10px;
    transition: 0.4s;
    z-index: 4;
}

.product-card:hover .product-overlay {
    bottom: 0;
}

.product-overlay button {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 13px;
    font-size: 12px;
    transition: 0.3s;
}

.product-overlay button:hover {
    background: var(--secondary);
}

.product-overlay i {
    margin-right: 8px;
}

.product-info {
    padding: 18px 2px;
}

.product-info small {
    color: var(--secondary);
    font-size: 9px;
    letter-spacing: 1.5px;
}

.product-info h3 {
    font-family: var(--heading-font);
    font-size: 20px;
    margin: 6px 0;
    color: var(--primary);
}

.rating {
    color: var(--secondary);
    font-size: 12px;
}

.rating span {
    color: #999;
    margin-left: 5px;
}

.price {
    margin-top: 8px;
    font-weight: 700;
    color: var(--primary);
}

.price del {
    font-weight: 400;
    color: #aaa;
    margin-left: 8px;
    font-size: 12px;
}


/* =====================================================
   OFFER
===================================================== */

.offer-section {
    min-height: 480px;

    background:
        linear-gradient(
            90deg,
            rgba(20, 20, 20, 0.9),
            rgba(20, 20, 20, 0.2)
        ),
        url("../images/offer-img.jpg")
        center / cover;

    display: flex;
    align-items: center;

    color: white;
}

.offer-content span {
    color: #d5b47b;
    font-size: 11px;
    letter-spacing: 4px;
}

.offer-content h2 {
    font-family: var(--heading-font);
    font-size: 60px;
    line-height: 1.1;
    margin: 15px 0;
}

.offer-content p {
    color: #ddd;
    margin-bottom: 25px;
}


/* =====================================================
   WHY CHOOSE US
===================================================== */

.why-section {
    background: var(--light-bg);
}

.feature-card {
    background: white;
    padding: 40px 25px;
    text-align: center;
    height: 100%;
    transition: 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 65px;
    height: 65px;

    border: 1px solid var(--secondary);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: auto auto 20px;

    color: var(--secondary);
    font-size: 26px;
}

.feature-card h3 {
    font-family: var(--heading-font);
    font-size: 22px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}


/* =====================================================
   TRENDING
===================================================== */

.trending-image {
    position: relative;
}

.trending-image img {
    height: 600px;
    object-fit: cover;
}

.floating-tag {
    position: absolute;
    bottom: 25px;
    right: 25px;

    background: white;
    padding: 18px 25px;

    font-size: 11px;
    letter-spacing: 2px;
}

.floating-tag span {
    color: var(--secondary);
    display: block;
    font-family: var(--heading-font);
    font-size: 25px;
    letter-spacing: 0;
}

.trending-content {
    padding-left: 30px;
}

.trending-content ul {
    padding: 0;
    margin: 25px 0;
    list-style: none;
}

.trending-content li {
    margin-bottom: 13px;
    font-size: 14px;
}

.trending-content li i {
    color: var(--secondary);
    margin-right: 10px;
}


/* =====================================================
   TESTIMONIAL
===================================================== */

.testimonial-section {
    background: var(--primary);
    color: white;
}

.testimonial-section .section-heading h2 {
    color: white;
}

.testimonial-card {
    max-width: 750px;
    margin: auto;
    text-align: center;
    padding: 25px 60px 50px;
}

.quote {
    color: var(--secondary);
    font-family: var(--heading-font);
    font-size: 80px;
    line-height: 0.7;
}

.testimonial-card p {
    font-family: var(--heading-font);
    font-size: 25px;
    line-height: 1.7;
    color: #eee;
}

.customer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
    margin-top: 30px;
}

.customer-avatar {
    width: 50px;
    height: 50px;

    background: var(--secondary);
    color: white;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: 700;
}

.customer h4 {
    font-size: 14px;
    margin: 0;
}

.customer span {
    font-size: 10px;
    color: #aaa;
}


/* =====================================================
   NEWSLETTER
===================================================== */

.newsletter-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.newsletter-content {
    max-width: 750px;
    margin: auto;
    text-align: center;
}

.newsletter-content > span {
    color: var(--secondary);
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
}

.newsletter-content h2 {
    font-family: var(--heading-font);
    font-size: 45px;
    margin: 12px 0;
}

.newsletter-content p {
    color: var(--muted);
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 30px auto 0;
}

.newsletter-form input {
    flex: 1;
    height: 52px;
    border: 1px solid var(--border);
    padding: 0 18px;
    outline: none;
    font-size: 13px;
}

.newsletter-form button {
    background: var(--primary);
    color: white;
    padding: 0 25px;
    font-size: 12px;
    font-weight: 600;
}

.newsletter-form button i {
    margin-left: 8px;
}
/* ================= BRAND STATS ================= */

.stats-section {
    padding: 70px 0;
    background: #f8f6f2;
    border-top: 1px solid #e8e3dc;
    border-bottom: 1px solid #e8e3dc;
}

.stat-item {
    text-align: center;
    padding: 15px 25px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15px;
    width: 1px;
    height: 75px;
    background: #ddd6ce;
}

.stat-number {
    font-family: var(--heading-font);
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 15px;
    color: var(--secondary);
}

.stat-number span {
    font-size: 28px;
    font-weight: 500;
}

.stat-item h3 {
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 7px;
    color: var(--primary);
}

.stat-item p {
    font-family: var(--heading-font);
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    color: #777;
}


/* ================= MOBILE ================= */

@media (max-width: 991px) {

    .stat-item {
        padding: 25px 15px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-number {
        font-size: 42px;
    }

}

@media (max-width: 575px) {

    .stats-section {
        padding: 50px 0;
    }

    .stat-item {
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 38px;
    }

    .stat-number span {
        font-size: 24px;
    }

    .stat-item h3 {
        font-size: 14px;
    }

    .stat-item p {
        font-size: 12px;
    }

}

/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #151515;
    color: white;
    padding: 80px 0 0;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 15px;
    background: #fff;
    padding: 3px 14px;
}

.footer-logo img {
    width: 230px;
    height: auto;
    display: block;
    object-fit: contain;
}

.footer p {
    color: #999;
    font-size: 13px;
    line-height: 1.9;
    margin-top: 18px;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.social-links a {
    width: 38px;
    height: 38px;

    border: 1px solid #444;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s;
}

.social-links a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.footer h4 {
    font-family: var(--heading-font);
    font-size: 20px;
    margin-bottom: 22px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    color: #999;
    font-size: 13px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 17px;
    color: #999;
    font-size: 13px;
}

.contact-item i {
    color: var(--secondary);
    font-size: 17px;
}

.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid #292929;
    padding: 20px 0;

    display: flex;
    justify-content: space-between;
}

.footer-bottom p {
    margin: 0;
    font-size: 11px;
}


/* =====================================================
   BACK TO TOP
===================================================== */

#backToTop {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 45px;
    height: 45px;

    background: var(--secondary);
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s;

    z-index: 999;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    background: var(--primary);
}



/* =========================================================
   ABOUT PAGE
========================================================= */


/* ================= PAGE HERO ================= */

.inner-page-hero {
    min-height: 430px;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url("../images/slider2.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 18, 16, 0.58);
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 80px 0;
    color: #fff;
}

.inner-hero-content > span {
    display: inline-block;
    font-family: var(--heading-font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.inner-hero-content h1 {
    font-family: var(--heading-font);
    font-size: 62px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
}

.inner-hero-content h1 em {
    font-style: normal;
    font-weight: 500;
    color: var(--secondary);
}

.inner-hero-content p {
    max-width: 600px;
    font-family: var(--heading-font);
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 25px;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--heading-font);
    font-size: 13px;
}

.breadcrumb-custom a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-custom i {
    font-size: 11px;
    opacity: 0.7;
}

.breadcrumb-custom span {
    opacity: 0.7;
}


/* ================= OUR STORY ================= */

.about-story-section {
    background: #fff;
}

.about-story-image {
    position: relative;
    overflow: hidden;
}

.about-story-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.story-year {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 150px;
    height: 150px;
    background: #1c1c1c;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.story-year strong {
    font-family: var(--heading-font);
    font-size: 38px;
    font-weight: 600;
    line-height: 1;
}

.story-year span {
    font-family: var(--heading-font);
    font-size: 10px;
    letter-spacing: 2px;
    margin-top: 10px;
}

.about-story-content {
    padding-left: 30px;
}

.about-story-content .section-label {
    display: block;
    font-family: var(--heading-font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #777;
    margin-bottom: 18px;
}

.about-story-content h2 {
    font-family: var(--heading-font);
    font-size: 46px;
    font-weight: 600;
    line-height: 1.2;
    color: #1c1c1c;
    margin-bottom: 25px;
}

.about-story-content h2 span {
    display: block;
    font-weight: 500;
}

.about-story-content p {
    font-family: var(--heading-font);
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 16px;
}

.about-story-content .btn {
    margin-top: 12px;
}


/* ================= PHILOSOPHY ================= */

.philosophy-section {
    background: #f8f6f2;
}

.philosophy-card {
    height: 100%;
    background: #fff;
    padding: 40px 35px;
    position: relative;
    border: 1px solid #ebe6df;
    transition: all 0.35s ease;
}

.philosophy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.07);
}

.philosophy-number {
    position: absolute;
    top: 22px;
    right: 25px;
    font-family: var(--heading-font);
    font-size: 15px;
    color: #aaa;
}

.philosophy-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--secondary);
    margin-bottom: 25px;
    font-size: 23px;
    color: var(--secondary);
}

.philosophy-card h3 {
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.philosophy-card p {
    font-family: var(--heading-font);
    font-size: 13px;
    line-height: 1.8;
    color: var(--muted);
    margin: 0;
}


/* ================= MISSION & VISION ================= */

.mission-section {
    background: #fff;
}

.mission-card {
    height: 100%;
    padding: 55px 50px;
    background: #1c1c1c;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.vision-card {
    background: #f8f6f2;
    color: #1c1c1c;
}

.mission-icon {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 28px;
}

 .btn-main{
    color: #fff;
}
.btn-main :hover{
    color: var(--secondary);
}
   


.vision-card .mission-icon {
    border-color: var(--secondary);
    color: var(--secondary);
}

.mission-card > span {
    display: block;
    font-family: var(--heading-font);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    margin-bottom: 16px;
    opacity: 0.65;
}

.mission-card h2 {
    max-width: 480px;
    font-family: var(--heading-font);
    font-size: 38px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 22px;
}

.mission-card h2 em {
    display: block;
    font-style: normal;
    font-weight: 500;
}

.mission-card p {
    max-width: 520px;
    font-family: var(--heading-font);
    font-size: 14px;
    line-height: 1.9;
    margin: 0;
    opacity: 0.72;
}


/* ================= ABOUT CTA ================= */

.about-cta-section {
    min-height: 450px;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url("../images/about-cta.jpg");
    background-size: cover;
    background-position: center;
}

.about-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,15,15,0.62);
}

.about-cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: #fff;
    padding: 80px 0;
}

.about-cta-content > span {
    display: block;
    font-family: var(--heading-font);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.about-cta-content h2 {
    font-family: var(--heading-font);
    font-size: 52px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 18px;
}

.about-cta-content h2 em {
    font-style: normal;
    font-weight: 500;
}

.about-cta-content p {
    max-width: 550px;
    font-family: var(--heading-font);
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
    margin-bottom: 28px;
}


/* ================= ABOUT PAGE RESPONSIVE ================= */

@media (max-width: 991px) {

    .inner-page-hero {
        min-height: 380px;
    }

    .inner-hero-content h1 {
        font-size: 50px;
    }

    .about-story-image img {
        height: 500px;
    }

    .about-story-content {
        padding-left: 0;
    }

    .about-story-content h2 {
        font-size: 40px;
    }

    .mission-card {
        padding: 45px 35px;
    }

    .mission-card h2 {
        font-size: 34px;
    }

    .about-cta-content h2 {
        font-size: 45px;
    }

}


@media (max-width: 767px) {

    .inner-page-hero {
        min-height: 350px;
    }

    .inner-hero-content {
        padding: 60px 0;
    }

    .inner-hero-content h1 {
        font-size: 42px;
    }

    .inner-hero-content p {
        font-size: 14px;
    }

    .about-story-image img {
        height: 430px;
    }

    .story-year {
        width: 125px;
        height: 125px;
    }

    .story-year strong {
        font-size: 32px;
    }

    .about-story-content h2 {
        font-size: 36px;
    }

    .philosophy-card {
        padding: 35px 28px;
    }

    .mission-card {
        padding: 40px 28px;
    }

    .mission-card h2 {
        font-size: 30px;
    }

    .about-cta-section {
        min-height: 400px;
    }

    .about-cta-content {
        padding: 60px 0;
    }

    .about-cta-content h2 {
        font-size: 38px;
    }

}


@media (max-width: 575px) {

    .inner-page-hero {
        min-height: 320px;
    }

    .inner-hero-content h1 {
        font-size: 36px;
    }

    .inner-hero-content > span {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .about-story-image img {
        height: 380px;
    }

    .story-year {
        width: 110px;
        height: 110px;
    }

    .story-year strong {
        font-size: 28px;
    }

    .story-year span {
        font-size: 8px;
    }

    .about-story-content h2 {
        font-size: 32px;
    }

    .mission-card h2 {
        font-size: 27px;
    }

    .about-cta-content h2 {
        font-size: 34px;
    }

}


/* =========================================================
    COLLECTION PAGE
========================================================= */

/* ================= INTRO ================= */

.collection-intro {
    padding-bottom: 55px;
}

.collection-intro .section-heading {
    max-width: 750px;
    margin: auto;
}

.collection-intro .section-heading p {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}


/* ================= CATEGORY ================= */

.collection-category-section {
    padding: 0 0 100px;
}

.collection-category-card {
    height: 500px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.collection-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.collection-category-card:hover img {
    transform: scale(1.06);
}

.collection-category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.72),
        rgba(0,0,0,0.05) 65%
    );
}

.collection-category-content {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    color: #fff;
}

.collection-category-content span {
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    opacity: 0.75;
}

.collection-category-content h3 {
    font-family: "Playfair Display", serif;
    font-size: 31px;
    font-weight: 600;
    margin: 7px 0 12px;
}

.collection-category-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
}

.collection-category-content a i {
    transition: transform 0.3s ease;
}

.collection-category-card:hover .collection-category-content a i {
    transform: translateX(5px);
}


/* ================= FEATURE ================= */

.collection-feature-section {
    background: #f8f6f2;
}

.collection-feature-image {
    position: relative;
    overflow: hidden;
}

.collection-feature-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
}

.collection-feature-tag {
    position: absolute;
    left: 25px;
    bottom: 25px;
    background: #fff;
    padding: 14px 20px;
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
}

.collection-feature-tag span {
    font-weight: 700;
    margin-right: 8px;
}

.collection-feature-content {
    padding: 20px 15px;
}

.collection-feature-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 47px;
    line-height: 1.18;
    font-weight: 600;
    color: #1c1c1c;
    margin-bottom: 22px;
}

.collection-feature-content h2 span {
    display: block;
    font-weight: 500;
}

.collection-feature-content > p {
    font-family: "DM Sans", sans-serif;
    color: #666;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 30px;
}


/* ================= FEATURE POINTS ================= */

.collection-feature-points {
    margin-bottom: 30px;
}

.collection-point {
    display: flex;
    gap: 17px;
    margin-bottom: 20px;
}

.collection-point > i {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    font-size: 19px;
    color: #1c1c1c;
}

.collection-point h4 {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px;
}

.collection-point p {
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #777;
    margin: 0;
}


/* ================= OFFER ================= */

.collection-offer-section {
    min-height: 450px;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url("../images/slider2.jpg");
    background-size: cover;
    background-position: center;
}

.collection-offer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18,18,18,0.58);
}

.collection-offer-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: #fff;
    padding: 80px 0;
}

.collection-offer-content > span {
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 16px;
}

.collection-offer-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.collection-offer-content h2 em {
    display: block;
    font-style: normal;
    font-weight: 500;
}

.collection-offer-content p {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
    margin-bottom: 28px;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .collection-category-card {
        height: 450px;
    }

    .collection-feature-image img {
        height: 550px;
    }

    .collection-feature-content h2 {
        font-size: 40px;
    }

    .collection-offer-content h2 {
        font-size: 45px;
    }

}


@media (max-width: 767px) {

    .collection-category-section {
        padding-bottom: 60px;
    }

    .collection-category-card {
        height: 430px;
    }

    .collection-feature-image img {
        height: 480px;
    }

    .collection-feature-content {
        padding: 10px 0;
    }

    .collection-feature-content h2 {
        font-size: 36px;
    }

    .collection-offer-section {
        min-height: 390px;
    }

    .collection-offer-content {
        padding: 60px 0;
    }

    .collection-offer-content h2 {
        font-size: 38px;
    }

}


@media (max-width: 575px) {

    .collection-breadcrumb {
        font-size: 11px;
        gap: 8px;
    }

    .collection-category-card {
        height: 400px;
    }

    .collection-category-content {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .collection-category-content h3 {
        font-size: 28px;
    }

    .collection-feature-image img {
        height: 430px;
    }

    .collection-feature-content h2 {
        font-size: 32px;
    }

    .collection-point {
        gap: 12px;
    }

    .collection-offer-content h2 {
        font-size: 32px;
    }

}

/* =====================================================
   NEW ARRIVAL PAGE
===================================================== */

/* =====================================================
   PRODUCTS SECTION
===================================================== */

.new-arrivals-products {
    padding: 100px 0;
    background: #fff;
}

.new-arrivals-heading {
    max-width: 700px;

    text-align: center;

    margin: 0 auto 45px;
}

.new-arrivals-heading > span {
    color: #d7b57b;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 4px;
}

.new-arrivals-heading h2 {
    font-family: "Playfair Display", serif;

    font-size: 48px;

    color: #1c1c1c;

    margin: 12px 0;
}

.new-arrivals-heading h2 em {
    color: #d7b57b;
    font-style: italic;
}

.new-arrivals-heading p {
    color: #777;

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================================
   FILTER
===================================================== */

.arrival-filter {
    display: flex;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 45px;
}

.arrival-filter-btn {
    background: transparent;

    border: 1px solid #ddd;

    color: #555;

    padding: 10px 23px;

    font-size: 11px;

    letter-spacing: .5px;

    transition: .3s ease;
}

.arrival-filter-btn:hover,
.arrival-filter-btn.active {
    background: #1c1c1c;

    color: #fff;

    border-color: #1c1c1c;
}


/* =====================================================
   PRODUCT CARD
===================================================== */

.arrival-product-card {
    background: #fff;

    height: 100%;

    transition: .4s ease;
}

.arrival-product-card:hover {
    transform: translateY(-7px);
}


/* =====================================================
   PRODUCT IMAGE
===================================================== */

.arrival-product-image {
    position: relative;

    overflow: hidden;

    aspect-ratio: 3 / 4;

    background: #f4f4f4;
}

.arrival-product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .7s ease;
}

.arrival-product-card:hover
.arrival-product-image img {
    transform: scale(1.06);
}


/* =====================================================
   BADGE
===================================================== */

.arrival-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    background: #1c1c1c;

    color: #fff;

    padding: 7px 12px;

    font-size: 9px;

    letter-spacing: 1.5px;
}


/* =====================================================
   WISHLIST
===================================================== */

.arrival-wishlist {
    position: absolute;

    top: 13px;
    right: 13px;

    width: 38px;
    height: 38px;

    border: none;

    border-radius: 50%;

    background: #fff;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #222;

    transition: .3s ease;
}

.arrival-wishlist:hover {
    background: #d7b57b;
    color: #fff;
}


/* =====================================================
   QUICK VIEW
===================================================== */

.arrival-product-hover {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    justify-content: center;

    padding: 15px;

    transform: translateY(100%);

    transition: .4s ease;
}

.arrival-product-card:hover
.arrival-product-hover {
    transform: translateY(0);
}

.quick-view-btn {
    border: none;

    background: #fff;

    color: #222;

    padding: 11px 24px;

    font-size: 11px;

    transition: .3s ease;
}

.quick-view-btn:hover {
    background: #d7b57b;

    color: #fff;
}


/* =====================================================
   PRODUCT INFO
===================================================== */

.arrival-product-info {
    padding: 20px 2px 5px;
}

.arrival-category {
    font-size: 9px;

    color: #d7b57b;

    letter-spacing: 2px;

    font-weight: 600;
}

.arrival-product-info h3 {
    font-family: "Playfair Display", serif;

    font-size: 19px;

    color: #222;

    margin: 7px 0;
}

.arrival-rating {
    display: flex;

    gap: 3px;

    color: #d7b57b;

    font-size: 10px;

    margin-bottom: 12px;
}

.arrival-product-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;
}

.arrival-price {
    font-size: 15px;

    font-weight: 600;

    color: #222;
}

.arrival-cart {
    width: 38px;
    height: 38px;

    border: 1px solid #ddd;

    background: #fff;

    color: #222;

    transition: .3s ease;
}

.arrival-cart:hover {
    background: #1c1c1c;

    color: #fff;

    border-color: #1c1c1c;
}


/* =====================================================
   VIEW MORE
===================================================== */

.arrival-view-more {
    text-align: center;

    margin-top: 60px;
}

.arrival-view-more a {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    border: 1px solid #222;

    color: #222;

    padding: 14px 30px;

    font-size: 11px;

    letter-spacing: .7px;

    transition: .3s ease;
}

.arrival-view-more a:hover {
    background: #222;

    color: #fff;
}


/* =====================================================
   CTA
===================================================== */

.arrival-cta {
    min-height: 430px;

    position: relative;

    display: flex;

    align-items: center;

    background:
        url("../images/premium-shirt.jpg")
        center/cover no-repeat;
}

.arrival-cta-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,.58);
}

.arrival-cta-content {
    position: relative;

    z-index: 2;

    max-width: 650px;

    color: #fff;
}

.arrival-cta-content span {
    font-size: 10px;

    letter-spacing: 4px;

    color: #d4b078;
}

.arrival-cta-content h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(42px, 5vw, 65px);

    line-height: 1.1;

    margin: 15px 0;
}

.arrival-cta-content h2 em {
    color: #d7b57b;
    font-style: italic;
}

.arrival-cta-content p {
    color: rgba(255,255,255,.8);

    max-width: 500px;

    line-height: 1.8;

    font-size: 14px;

    margin-bottom: 25px;
}

.cta-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: #c7a36a;

    color: #fff;

    padding: 14px 27px;

    font-size: 11px;

    transition: .3s ease;
}

.cta-btn:hover {
    background: #fff;

    color: #222;
}



/* =====================================================
   TRENDING PAGE 
===================================================== */

/* =====================================================
   TRENDING INTRO
===================================================== */

.trending-intro {
    padding: 110px 0;
    background: #fff;
}

.trending-intro-content {
    padding-right: 35px;
}

.section-tag {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.trending-intro-content h2,
.style-spotlight-content h2 {
    margin-bottom: 22px;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 500;
    line-height: 1.2;
}

.trending-intro-content h2 em,
.style-spotlight-content h2 em {
    color: var(--primary-color);
    font-style: italic;
}

.trending-intro-content p {
    max-width: 550px;
    margin-bottom: 15px;
    color: #666;
    font-size: 15px;
    line-height: 1.9;
}

.trending-main-btn,
.spotlight-btn,
.trending-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 14px 26px;
    background: var(--dark);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.35s ease;
}

.trending-main-btn:hover,
.spotlight-btn:hover,
.trending-cta-btn:hover {
    background: var(--secondary);
    color: #fff;
}

.trending-main-btn i,
.spotlight-btn i,
.trending-cta-btn i {
    transition: 0.35s ease;
}

.trending-main-btn:hover i,
.spotlight-btn:hover i,
.trending-cta-btn:hover i {
    transform: translateX(5px);
}

.trending-intro-image {
    position: relative;
    overflow: hidden;
}

.trending-intro-image img {
    width: 100%;
    height: 560px;
    display: block;
    object-fit: cover;
    transition: 0.6s ease;
}

.trending-intro-image:hover img {
    transform: scale(1.04);
}

.trend-image-badge {
    position: absolute;
    right: 25px;
    bottom: 25px;
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.trend-image-badge span {
    color: var(--primary-color);
    font-size: 9px;
    letter-spacing: 2px;
}

.trend-image-badge strong {
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 500;
}


/* =====================================================
   TRENDING PRODUCTS
===================================================== */

.trending-products {
    padding: 110px 0;
    background: #f8f5f2;
}

.section-heading {
    max-width: 650px;
    margin: 0 auto 45px;
}

.section-heading > span {
    display: inline-block;
    margin-bottom: 13px;
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.section-heading h2 {
    margin-bottom: 12px;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 500;
}

.section-heading h2 em {
    color: var(--primary-color);
    font-style: italic;
}

.section-heading p {
    margin-bottom: 0;
    color: #777;
    font-size: 14px;
}


/* =====================================================
   TREND FILTER
===================================================== */

.trending-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 45px;
}

.trending-filter-btn {
    padding: 11px 22px;
    border: 1px solid #e5ded8;
    background: #fff;
    color: #555;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.trending-filter-btn:hover,
.trending-filter-btn.active {
    border-color: var(--dark);
    background: var(--dark);
    color: #fff;
}


/* =====================================================
   TRENDING PRODUCT CARD
===================================================== */

.trending-product-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    transition: 0.4s ease;
}

.trending-product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.trending-product-image {
    position: relative;
    overflow: hidden;
    background: #f1ece7;
}

.trending-product-image img {
    width: 100%;
    height: 390px;
    display: block;
    object-fit: cover;
    transition: 0.6s ease;
}

.trending-product-card:hover .trending-product-image img {
    transform: scale(1.07);
}


/* =====================================================
   BADGE
===================================================== */

.trending-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    padding: 7px 11px;
    background: var(--dark);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.3px;
}


/* =====================================================
   WISHLIST
===================================================== */

.trending-wishlist {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.trending-wishlist:hover {
    background: var(--primary-color);
    color: #fff;
}


/* =====================================================
   PRODUCT OVERLAY
===================================================== */

.trending-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 18px;
    display: flex;
    justify-content: center;
    transform: translateY(100%);
    transition: 0.4s ease;
}

.trending-product-card:hover .trending-overlay {
    transform: translateY(0);
}

.trending-quick-view {
    padding: 12px 22px;
    border: 0;
    background: rgba(25, 22, 20, 0.94);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.trending-quick-view:hover {
    background: var(--primary-color);
}

.trending-quick-view i {
    margin-right: 6px;
}


/* =====================================================
   PRODUCT INFO
===================================================== */

.trending-product-info {
    padding: 21px 20px 20px;
}

.trending-category {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.trending-product-info h3 {
    margin-bottom: 10px;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 500;
}

.trending-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 17px;
}

.trending-rating i {
    color: #c18b45;
    font-size: 11px;
}

.trending-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #ebe4df;
}

.trending-price {
    color: var(--dark);
    font-size: 17px;
    font-weight: 700;
}

.trending-cart {
    width: 39px;
    height: 39px;
    border: 1px solid #e4ddd8;
    background: #fff;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.trending-cart:hover {
    border-color: var(--dark);
    background: var(--dark);
    color: #fff;
}


/* =====================================================
   VIEW MORE
===================================================== */

.trending-view-more {
    margin-top: 50px;
    text-align: center;
}

.trending-view-more a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--dark);
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.trending-view-more a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.trending-view-more i {
    transition: 0.3s ease;
}

.trending-view-more a:hover i {
    transform: translateX(5px);
}


/* =====================================================
   STYLE SPOTLIGHT
===================================================== */

.style-spotlight {
    padding: 110px 0;
    background: #fff;
}

.style-spotlight-image {
    position: relative;
    overflow: hidden;
}

.style-spotlight-image img {
    width: 100%;
    height: 560px;
    display: block;
    object-fit: cover;
    transition: 0.6s ease;
}

.style-spotlight-image:hover img {
    transform: scale(1.04);
}

.spotlight-label {
    position: absolute;
    top: 25px;
    left: 25px;
    padding: 10px 15px;
    background: #fff;
    color: var(--dark);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.style-spotlight-content {
    padding-left: 30px;
}

.style-spotlight-content > span {
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.style-spotlight-content p {
    max-width: 530px;
    margin: 20px 0 25px;
    color: #666;
    font-size: 15px;
    line-height: 1.9;
}


/* =====================================================
   TREND POINTS
===================================================== */

.trend-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
    margin: 25px 0;
}

.trend-point {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 500;
}

.trend-point i {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #f1e8e1;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}


/* =====================================================
   SHOP BY TREND
===================================================== */

.shop-by-trend {
    padding: 110px 0;
    background: #f8f5f2;
}

.trend-category-card {
    position: relative;
    display: block;
    height: 440px;
    overflow: hidden;
    text-decoration: none;
}

.trend-category-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: 0.7s ease;
}

.trend-category-card:hover img {
    transform: scale(1.08);
}

.trend-category-overlay {
    position: absolute;
    inset: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(
        to top,
        rgba(18, 15, 13, 0.85),
        rgba(18, 15, 13, 0.12) 65%,
        transparent
    );
    color: #fff;
}

.trend-category-overlay span {
    margin-bottom: 8px;
    color: #d7b57b;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.trend-category-overlay h3 {
    margin-bottom: 10px;
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-weight: 500;
}

.trend-category-overlay small {
    color: #fff;
    font-size: 11px;
    font-weight: 600;
}

.trend-category-overlay small i {
    margin-left: 6px;
    transition: 0.3s ease;
}

.trend-category-card:hover .trend-category-overlay small i {
    transform: translateX(5px);
}


/* =====================================================
   TRENDING CTA
===================================================== */

.trending-cta {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    text-align: center;
    background: url("../images/shirts.jpg") center / cover no-repeat;
}

.trending-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 17, 15, 0.68);
}

.trending-cta .container {
    position: relative;
    z-index: 2;
}

.trending-cta-content {
    max-width: 700px;
    margin: auto;
    color: #fff;
}

.trending-cta-content > span {
    display: block;
    margin-bottom: 18px;
    color: #d7b57b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.trending-cta-content h2 {
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5vw, 65px);
    font-weight: 500;
    line-height: 1.1;
}

.trending-cta-content h2 em {
    color: #d7b57b;
    font-style: italic;
}

.trending-cta-content p {
    max-width: 550px;
    margin: 0 auto 25px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.8;
}

.trending-cta-btn {
    background: #fff;
    color: var(--dark);
}

.trending-cta-btn:hover {
    background: var(--primary-color);
    color: #fff;
}


/* =====================================================
   FILTER ANIMATION
===================================================== */

.trending-product-item.hide-item {
    display: none;
}

.trending-product-item.show-item {
    animation: trendingProductShow 0.45s ease forwards;
}

@keyframes trendingProductShow {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =====================================================
   CONTACT PAGE
===================================================== */

/* =====================================================
   CONTACT INTRO
===================================================== */

.contact-intro {
    padding: 90px 0 45px;
    background: #fff;
}

.contact-intro .section-heading {
    max-width: 720px;
    margin: 0 auto;
}

.contact-intro .section-heading > span {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.contact-intro .section-heading h2 {
    margin-bottom: 15px;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 4vw, 54px);
    font-weight: 500;
}

.contact-intro .section-heading h2 em {
    color: var(--primary-color);
    font-style: italic;
}

.contact-intro .section-heading p {
    max-width: 650px;
    margin: auto;
    color: #6b6763;
    font-size: 14px;
    line-height: 1.9;
}


/* =====================================================
   CONTACT INFORMATION
===================================================== */

.contact-info-section {
    padding: 45px 0 110px;
    background: #fff;
}

.contact-info-card {
    height: 100%;
    padding: 38px 28px;
    border: 1px solid #ebe4df;
    background: #fff;
    text-align: center;
    transition: 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 18px 40px rgba(35, 28, 24, 0.09);
}

.contact-info-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #f4ebe5;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.35s ease;
}

.contact-info-card:hover .contact-info-icon {
    background: var(--secondary);
    color: #fff;
}

.contact-info-icon i {
    font-size: 22px;
}

.contact-info-card > span {
    display: block;
    margin-bottom: 9px;
    color: var(--primary-color);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-info-card h3 {
    margin-bottom: 12px;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 500;
}

.contact-info-card p {
    min-height: 72px;
    margin-bottom: 18px;
    color: #777;
    font-size: 13px;
    line-height: 1.8;
}

.contact-info-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

.contact-info-card a i {
    transition: 0.3s ease;
}

.contact-info-card a:hover i {
    transform: translateX(5px);
}


/* =====================================================
   CONTACT FORM SECTION
===================================================== */

.contact-form-section {
    padding: 110px 0;
    background: #f8f5f2;
}

.contact-form-section .row {
    background: #fff;
    box-shadow: 0 20px 55px rgba(35, 28, 24, 0.10);
}

.contact-form-image {
    position: relative;
    height: 100%;
    min-height: 650px;
    overflow: hidden;
}

.contact-form-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(20, 17, 15, 0.75),
        rgba(20, 17, 15, 0.05)
    );
}

.contact-form-image img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    display: block;
    object-fit: cover;
    transition: 0.6s ease;
}

.contact-form-image:hover img {
    transform: scale(1.04);
}

.contact-image-content {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 40px;
    z-index: 2;
    color: #fff;
}

.contact-image-content span {
    display: block;
    margin-bottom: 12px;
    color: #dfb99d;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-image-content h2 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.15;
}

.contact-image-content h2 em {
    color: #dfb99d;
    font-style: italic;
}

.contact-form-wrapper {
    height: 100%;
    padding: 55px 50px;
    background: #fff;
}

.contact-form-tag {
    display: block;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.contact-form-wrapper h2 {
    margin-bottom: 12px;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: 42px;
    font-weight: 500;
}

.contact-form-wrapper h2 em {
    color: var(--primary-color);
    font-style: italic;
}

.contact-form-wrapper > p {
    margin-bottom: 30px;
    color: #777;
    font-size: 13px;
    line-height: 1.8;
}

.contact-input label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 11px;
    font-weight: 600;
}

.contact-input input,
.contact-input select,
.contact-input textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid #e5ded8;
    outline: none;
    background: #fff;
    color: var(--dark);
    font-family: inherit;
    font-size: 12px;
    transition: 0.3s ease;
}

.contact-input input,
.contact-input select {
    height: 48px;
}

.contact-input textarea {
    min-height: 125px;
    resize: vertical;
}

.contact-input input::placeholder,
.contact-input textarea::placeholder {
    color: #aaa;
}

.contact-input input:focus,
.contact-input select:focus,
.contact-input textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(155, 107, 75, 0.07);
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border: 0;
    background: var(--dark);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.35s ease;
}

.contact-submit-btn:hover {
    background: var(--primary-color);
}

.contact-submit-btn i {
    transition: 0.3s ease;
}

.contact-submit-btn:hover i {
    transform: translateX(5px);
}


/* =====================================================
   CONTACT SUPPORT
===================================================== */

.contact-support {
    padding: 110px 0;
    background: #fff;
}

.contact-support .section-heading {
    max-width: 700px;
    margin: 0 auto 50px;
}

.contact-support .section-heading > span {
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.contact-support .section-heading h2 {
    margin: 13px 0;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 500;
}

.contact-support .section-heading h2 em {
    color: var(--primary-color);
    font-style: italic;
}

.contact-support .section-heading p {
    color: #777;
    font-size: 14px;
    line-height: 1.8;
}

.support-card {
    position: relative;
    height: 100%;
    padding: 38px 28px;
    border: 1px solid #f0e8e2;
    background: #fde0b3;
    transition: 0.4s ease;
}

.support-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(35, 28, 24, 0.08);
    border-color: var(--primary-color);
}

.support-number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: #121212;
    font-family: "Playfair Display", serif;
    font-size: 30px;
}

.support-card > i {
    display: inline-flex;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: #f4ebe5;
    color: var(--primary-color);
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.support-card h3 {
    margin-bottom: 12px;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: 21px;
    font-weight: 500;
}

.support-card p {
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.8;
}


/* =====================================================
   FIND OUR STORE
===================================================== */

.contact-location {
    padding: 110px 0;
    background: #f8f5f2;
}

.contact-map {
    width: 100%;
    height: 520px;
    overflow: hidden;
    background: #ddd;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-location-content {
    padding-left: 25px;
}

.contact-location-content > span {
    display: block;
    margin-bottom: 13px;
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.contact-location-content h2 {
    margin-bottom: 18px;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 500;
}

.contact-location-content h2 em {
    color: var(--primary-color);
    font-style: italic;
}

.contact-location-content > p {
    margin-bottom: 28px;
    color: #777;
    font-size: 14px;
    line-height: 1.9;
}

.location-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.location-detail > i {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #f0e5dd;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-detail strong {
    display: block;
    margin-bottom: 5px;
    color: var(--dark);
    font-size: 12px;
}

.location-detail p {
    margin: 0;
    color: #777;
    font-size: 12px;
    line-height: 1.7;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-top: 12px;
    padding: 14px 25px;
    background: var(--dark);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.35s ease;
}

.location-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.location-btn i {
    transition: 0.3s ease;
}

.location-btn:hover i {
    transform: translateX(5px);
}


/* =====================================================
   CONTACT FAQ
===================================================== */

.contact-faq {
    padding: 110px 0;
    background: #fff;
}

.contact-faq .section-heading {
    margin-bottom: 45px;
}

.contact-faq .section-heading > span {
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.contact-faq .section-heading h2 {
    margin-top: 13px;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 500;
}

.contact-faq .section-heading h2 em {
    color: var(--primary-color);
    font-style: italic;
}

.faq-wrapper {
    max-width: 850px;
    margin: auto;
}

.faq-wrapper .accordion-item {
    margin-bottom: 12px;
    border: 1px solid #e9e2dd;
    border-radius: 0;
    overflow: hidden;
}

.faq-wrapper .accordion-button {
    padding: 20px 22px;
    border: 0;
    border-radius: 0 !important;
    background: #fff;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: 17px;
    font-weight: 500;
    box-shadow: none;
}

.faq-wrapper .accordion-button:not(.collapsed) {
    background: #f8f3ef;
    color: var(--primary-color);
}

.faq-wrapper .accordion-button:focus {
    box-shadow: none;
}

.faq-wrapper .accordion-button::after {
    background-size: 14px;
}

.faq-wrapper .accordion-body {
    padding: 0 22px 22px;
    background: #f8f3ef;
    color: #777;
    font-size: 13px;
    line-height: 1.8;
}


/* =====================================================
   CONTACT CTA
===================================================== */

.contact-cta {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    text-align: center;
    background: url("../images/women-fashion.jpg") center / cover no-repeat;
}

.contact-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(22, 18, 16, 0.68);
}

.contact-cta .container {
    position: relative;
    z-index: 2;
}

.contact-cta-content {
    max-width: 700px;
    margin: auto;
    color: #fff;
}

.contact-cta-content > span {
    display: block;
    margin-bottom: 17px;
    color: #dfb99d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.contact-cta-content h2 {
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 500;
    line-height: 1.1;
}

.contact-cta-content h2 em {
    color: #dfb99d;
    font-style: italic;
}

.contact-cta-content p {
    max-width: 570px;
    margin: 0 auto 25px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.9;
}

.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 14px 27px;
    background: #fff;
    color: var(--dark);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.35s ease;
}

.contact-cta-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.contact-cta-btn i {
    transition: 0.3s ease;
}

.contact-cta-btn:hover i {
    transform: translateX(5px);
}


/* ADD TO CART Page  */


/* =====================================================
   SHOPPING CART SECTION
===================================================== */

.shopping-cart-section {
    padding: 100px 0;
    background: #fff;
}

.cart-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e1dc;
}

.cart-heading span,
.summary-tag {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.cart-heading h2 {
    margin: 0;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 500;
}

.cart-heading h2 em {
    color: var(--primary-color);
    font-style: italic;
}

.cart-heading p {
    margin: 0;
    color: #777;
    font-size: 12px;
}


/* =====================================================
   CART ITEM
===================================================== */

.cart-item {
    position: relative;
    display: grid;
    grid-template-columns: 145px 1fr auto;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid #e8e1dc;
    transition: .35s ease;
}

.cart-product-image {
    width: 145px;
    height: 175px;
    overflow: hidden;
    background: #f4f1ef;
}

.cart-product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: .5s ease;
}

.cart-item:hover .cart-product-image img {
    transform: scale(1.04);
}

.cart-product-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-product-category {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.cart-product-details h3 {
    margin-bottom: 10px;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: 21px;
    font-weight: 500;
}

.cart-product-size,
.cart-product-color {
    margin: 2px 0;
    color: #777;
    font-size: 12px;
}

.cart-mobile-price {
    display: none;
}

.cart-item-bottom {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 18px;
}


/* =====================================================
   QUANTITY
===================================================== */

.quantity-wrapper {
    display: flex;
    align-items: center;
    width: 115px;
    height: 38px;
    border: 1px solid #ded6d0;
}

.quantity-btn {
    width: 35px;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--dark);
    cursor: pointer;
    transition: .25s ease;
}

.quantity-btn:hover {
    background: #f4eee9;
    color: var(--primary-color);
}

.quantity-input {
    width: 45px;
    height: 100%;
    padding: 0;
    border: 0;
    outline: none;
    background: transparent;
    text-align: center;
    color: var(--dark);
    font-size: 12px;
}

.quantity-input::-webkit-inner-spin-button,
.quantity-input::-webkit-outer-spin-button {
    appearance: none;
    margin: 0;
}

.quantity-input {
    -moz-appearance: textfield;
}


/* =====================================================
   REMOVE BUTTON
===================================================== */

.remove-cart-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #888;
    font-size: 11px;
    cursor: pointer;
    transition: .3s ease;
}

.remove-cart-item:hover {
    color: #b34d4d;
}

.remove-cart-item i {
    font-size: 13px;
}


/* =====================================================
   PRODUCT PRICE
===================================================== */

.cart-product-price {
    display: flex;
    align-items: center;
    padding-top: 5px;
}

.cart-product-price span {
    color: var(--dark);
    font-size: 15px;
    font-weight: 600;
}


/* =====================================================
   CART BOTTOM ACTIONS
===================================================== */

.cart-bottom-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
}

.continue-shopping,
.clear-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 0;
    background: transparent;
    color: var(--dark);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: .3s ease;
}

.continue-shopping:hover,
.clear-cart-btn:hover {
    color: var(--primary-color);
}

.continue-shopping i {
    transition: .3s ease;
}

.continue-shopping:hover i {
    transform: translateX(-5px);
}

.clear-cart-btn {
    color: #999;
}


/* =====================================================
   ORDER SUMMARY
===================================================== */

.cart-summary {
    position: sticky;
    top: 110px;
    padding: 38px 32px;
    background: #f8f4f1;
    border: 1px solid #ebe2dc;
}

.cart-summary h2 {
    margin-bottom: 30px;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: 36px;
    font-weight: 500;
}

.cart-summary h2 em {
    color: var(--primary-color);
    font-style: italic;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 17px;
    color: #777;
    font-size: 13px;
}

.summary-row strong {
    color: var(--dark);
    font-weight: 600;
}

.summary-row .free-shipping {
    color: #63846a;
    font-size: 10px;
    letter-spacing: 1px;
}

.summary-divider {
    height: 1px;
    margin: 22px 0;
    background: #ddd3cc;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-total span {
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: 19px;
}

.summary-total strong {
    color: var(--dark);
    font-size: 21px;
}


/* =====================================================
   PROMO
===================================================== */

.promo-box {
    margin-top: 30px;
}

.promo-box label {
    display: block;
    margin-bottom: 9px;
    color: var(--dark);
    font-size: 11px;
    font-weight: 600;
}

.promo-input {
    display: flex;
    height: 45px;
}

.promo-input input {
    width: 100%;
    min-width: 0;
    padding: 0 13px;
    border: 1px solid #ddd4ce;
    outline: none;
    background: #fff;
    font-size: 11px;
}

.promo-input input:focus {
    border-color: var(--primary-color);
}

.promo-input button {
    width: 75px;
    border: 0;
    background: var(--dark);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s ease;
}

.promo-input button:hover {
    background: var(--primary-color);
}


/* =====================================================
   CHECKOUT BUTTON
===================================================== */

.checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-top: 25px;
    padding: 16px 20px;
    background: var(--dark);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: .35s ease;
}

.checkout-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.checkout-btn i {
    transition: .3s ease;
}

.checkout-btn:hover i {
    transform: translateX(5px);
}


/* =====================================================
   SECURE PAYMENT
===================================================== */

.secure-payment {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ded5ce;
}

.secure-payment > i {
    color: #63846a;
    font-size: 22px;
}

.secure-payment div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.secure-payment strong {
    color: var(--dark);
    font-size: 11px;
}

.secure-payment span {
    color: #888;
    font-size: 9px;
}


/* =====================================================
   CART BENEFITS
===================================================== */

.cart-benefits {
    padding: 75px 0;
    background: #f8f5f2;
}

.cart-benefit-card {
    display: flex;
    align-items: center;
    gap: 17px;
    height: 100%;
    padding: 25px 20px;
    border: 1px solid #e7dfd9;
    background: #fff;
    transition: .35s ease;
}

.cart-benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.cart-benefit-card > i {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f4ebe5;
    color: var(--primary-color);
    font-size: 18px;
}

.cart-benefit-card h3 {
    margin: 0 0 5px;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: 17px;
    font-weight: 500;
}

.cart-benefit-card p {
    margin: 0;
    color: #888;
    font-size: 10px;
}


/* =====================================================
   CART CTA
===================================================== */

.cart-cta {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    overflow: hidden;
    text-align: center;
    background: url("../images/fashion-store.jpg") center / cover no-repeat;
}

.cart-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(25,21,19,.70);
}

.cart-cta .container {
    position: relative;
    z-index: 2;
}

.cart-cta-content {
    max-width: 680px;
    margin: auto;
    color: #fff;
}

.cart-cta-content > span {
    display: block;
    margin-bottom: 15px;
    color: #dfb99d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.cart-cta-content h2 {
    margin-bottom: 18px;
    font-family: "Playfair Display", serif;
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 500;
    line-height: 1.1;
}

.cart-cta-content h2 em {
    color: #dfb99d;
    font-style: italic;
}

.cart-cta-content p {
    max-width: 550px;
    margin: 0 auto 25px;
    color: rgba(255,255,255,.80);
    font-size: 13px;
    line-height: 1.8;
}

.cart-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 27px;
    background: #fff;
    color: var(--dark);
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: .35s ease;
}

.cart-cta-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.cart-cta-btn i {
    transition: .3s ease;
}

.cart-cta-btn:hover i {
    transform: translateX(5px);
}




/* =====================================================
   WISHLIST PAGE 
===================================================== */

/* =====================================================
   WISHLIST SECTION
===================================================== */

.wishlist-section {
    padding: 100px 0;
    background: #fff;
}

.wishlist-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e8e1dc;
}

.wishlist-heading > div > span {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.wishlist-heading h2 {
    margin: 0;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: 42px;
    font-weight: 500;
}

.wishlist-heading h2 em {
    color: var(--primary-color);
    font-style: italic;
}

.wishlist-count {
    margin: 0;
    color: #777;
    font-size: 12px;
}


/* =====================================================
   WISHLIST CARD
===================================================== */

.wishlist-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee8e3;
    transition: .4s ease;
}

.wishlist-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 40px rgba(35, 27, 22, .10);
}

.wishlist-image {
    position: relative;
    height: 410px;
    overflow: hidden;
    background: #f5f2ef;
}

.wishlist-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.wishlist-card:hover .wishlist-image img {
    transform: scale(1.05);
}


/* =====================================================
   WISHLIST BADGE
===================================================== */

.wishlist-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    padding: 7px 11px;
    background: var(--dark);
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


/* =====================================================
   REMOVE HEART
===================================================== */

.wishlist-remove {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    color: #b86f68;
    font-size: 16px;
    cursor: pointer;
    transition: .3s ease;
}

.wishlist-remove:hover {
    background: var(--dark);
    color: #fff;
    transform: scale(1.08);
}


/* =====================================================
   IMAGE OVERLAY
===================================================== */

.wishlist-image-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    padding: 18px;
    background: linear-gradient(
        transparent,
        rgba(20, 17, 15, .72)
    );
    opacity: 0;
    transform: translateY(10px);
    transition: .4s ease;
}

.wishlist-card:hover .wishlist-image-overlay {
    opacity: 1;
    transform: translateY(0);
}

.wishlist-quick-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: #fff;
    color: var(--dark);
    font-size: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s ease;
}

.wishlist-quick-view:hover {
    background: var(--primary-color);
    color: #fff;
}


/* =====================================================
   WISHLIST INFO
===================================================== */

.wishlist-info {
    padding: 22px 20px 20px;
}

.wishlist-category {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.wishlist-info h3 {
    min-height: 52px;
    margin: 0 0 10px;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: 19px;
    font-weight: 500;
}


/* =====================================================
   RATING
===================================================== */

.wishlist-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 18px;
}

.wishlist-rating i {
    color: #c49a62;
    font-size: 10px;
}

.wishlist-rating span {
    margin-left: 5px;
    color: #999;
    font-size: 9px;
}


/* =====================================================
   WISHLIST BOTTOM
===================================================== */

.wishlist-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #eee7e2;
}

.wishlist-bottom strong {
    color: var(--dark);
    font-size: 15px;
    font-weight: 600;
}

.wishlist-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 13px;
    border: 0;
    background: var(--dark);
    color: #fff;
    font-size: 9px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s ease;
}

.wishlist-cart-btn:hover {
    background: var(--primary-color);
}

.wishlist-cart-btn i {
    font-size: 12px;
}


/* =====================================================
   WISHLIST ACTIONS
===================================================== */

.wishlist-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #e8e1dc;
}

.clear-wishlist-btn,
.continue-wishlist {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 0;
    background: transparent;
    color: #777;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: .3s ease;
}

.clear-wishlist-btn:hover {
    color: #b34d4d;
}

.continue-wishlist {
    color: var(--dark);
}

.continue-wishlist:hover {
    color: var(--primary-color);
}

.continue-wishlist i {
    transition: .3s ease;
}

.continue-wishlist:hover i {
    transform: translateX(5px);
}


/* =====================================================
   WISHLIST BENEFITS
===================================================== */

.wishlist-benefits {
    padding: 75px 0;
    background: #f8f5f2;
}

.wishlist-benefit-card {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 22px;
    background: #fff;
    border: 1px solid #e8e0da;
    transition: .35s ease;
}

.wishlist-benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.wishlist-benefit-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f4ebe5;
    color: var(--primary-color);
    font-size: 19px;
}

.wishlist-benefit-card h3 {
    margin: 0 0 6px;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: 17px;
    font-weight: 500;
}

.wishlist-benefit-card p {
    margin: 0;
    color: #888;
    font-size: 10px;
    line-height: 1.7;
}


/* =====================================================
   EMPTY WISHLIST
===================================================== */

.empty-wishlist-section {
    padding: 90px 0;
    background: #fff;
}

.empty-wishlist {
    max-width: 800px;
    margin: auto;
    padding: 80px 30px;
    text-align: center;
    border: 1px solid #ebe4df;
    background: #eac790;
}

.empty-wishlist-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5ece6;
    color: var(--primary-color);
    font-size: 27px;
}

.empty-wishlist > span {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.empty-wishlist h2 {
    margin-bottom: 15px;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: 42px;
    font-weight: 500;
}

.empty-wishlist h2 em {
    color: var(--primary-color);
    font-style: italic;
}

.empty-wishlist p {
    max-width: 530px;
    margin: 0 auto 25px;
    color: #777;
    font-size: 13px;
    line-height: 1.8;
}

.empty-wishlist a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
    background: var(--dark);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s ease;
}

.empty-wishlist a:hover {
    background: var(--primary-color);
}

.empty-wishlist a i {
    transition: .3s ease;
}

.empty-wishlist a:hover i {
    transform: translateX(5px);
}


/* =====================================================
   WISHLIST CTA
===================================================== */

.wishlist-cta {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    overflow: hidden;
    text-align: center;
    background: url("../images/premium-shirt.jpg") center / cover no-repeat;
}

.wishlist-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(25, 21, 19, .72);
}

.wishlist-cta .container {
    position: relative;
    z-index: 2;
}

.wishlist-cta-content {
    max-width: 680px;
    margin: auto;
    color: #fff;
}

.wishlist-cta-content > span {
    display: block;
    margin-bottom: 15px;
    color: #dfb99d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.wishlist-cta-content h2 {
    margin-bottom: 18px;
    font-family: "Playfair Display", serif;
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 500;
    line-height: 1.1;
}

.wishlist-cta-content h2 em {
    color: #dfb99d;
    font-style: italic;
}

.wishlist-cta-content p {
    max-width: 550px;
    margin: 0 auto 25px;
    color: rgba(255, 255, 255, .8);
    font-size: 13px;
    line-height: 1.8;
}

.wishlist-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 27px;
    background: #fff;
    color: var(--dark);
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: .35s ease;
}

.wishlist-cta-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.wishlist-cta-btn i {
    transition: .3s ease;
}

.wishlist-cta-btn:hover i {
    transform: translateX(5px);
}




