﻿/* ============================================
   MOHINI BOUTIQUE - MAIN STYLESHEET
   Colors: Soft Cream #F3EDE6 | Deep Maroon #7A2E3A | Gold #C9A15A | Pink Maroon #A94A5E
   ============================================ */

/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #F3EDE6;
    color: #7A2E3A;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}*/

/* ============================================
   TOP BAR - MINIMAL STYLE
   ============================================ */

/*.top-bar-minimal {
    background: #7A2E3A;
    padding: 8px 0;
    font-size: 12px;
}

    .top-bar-minimal .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.contact-info {
    color: #F3EDE6;
}

    .contact-info i {
        color: #C9A15A;
        margin-right: 5px;
    }

.separator {
    margin: 0 10px;
    opacity: 0.5;
}

.user-links {
    display: flex;
    gap: 15px;
}

    .user-links a {
        color: #F3EDE6;
        text-decoration: none;
        transition: 0.3s;
    }

        .user-links a:hover {
            color: #C9A15A;
        }*/

/* ============================================
   HERO BANNER WITH MENU
   ============================================ */

/*.hero-banner {
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(122, 46, 58, 0.5), rgba(122, 46, 58, 0.5)), url('images/banner.png');
    background-size: cover;
    background-position: center;
}*/

/* Menu Overlay */
/*.hero-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;*/
    /*background: rgba(122, 46, 58, 0.85);*/
    /*background: #F3EDE6;
    backdrop-filter: blur(5px);
    z-index: 100;
    padding: 15px 0;
}

.banner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-logo-img {
    height: 50px;
    width: auto;
}*/

/* Banner Navigation */
/*.banner-nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 35px;
}

    .banner-nav li a {
        font-family: 'Playfair Display', serif;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 1px;*/
        /*color: #F3EDE6;*/
        /*color:#000000;
        text-decoration: none;
        padding: 8px 0;
        position: relative;
        transition: 0.3s;
        text-transform: uppercase;
    }

        .banner-nav li a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #C9A15A;
            transition: 0.3s;
        }

        .banner-nav li a:hover:after,
        .banner-nav li a.active:after {
            width: 100%;
        }

        .banner-nav li a:hover,
        .banner-nav li a.active {
            color: #C9A15A;
        }*/

/* Banner Icons */
/*.banner-icons {
    display: flex;
    gap: 15px;
}

    .banner-icons a {
        color: #F3EDE6;
        font-size: 18px;
        transition: 0.3s;
        cursor: pointer;
    }

        .banner-icons a:hover {
            color: #C9A15A;
        }

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}*/

/* Banner Content */
/*.hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: #F3EDE6;
    position: relative;
    z-index: 10;
    padding-top: 100px;
}

.brand-name {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

    .brand-name span {
        font-weight: 300;
        color: #C9A15A;
    }

.brand-subtitle {
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.divider-line {
    width: 50px;
    height: 1px;
    background: #C9A15A;
}

.hero-divider i {
    font-size: 18px;
    color: #C9A15A;
}

.hero-tagline {
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-weight: 300;
}

.hero-title {
    font-size: 34px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}*/

/* ============================================
   HERO BANNER WITH IMG TAG - PROPER LAYERING
   ============================================ */

/*.hero-banner {
    position: relative;
    height: 650px;
    overflow: hidden;
}*/

/* Layer 1: Background Image */
/*.banner-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}*/

/* Layer 2: Dark Overlay */
/*.banner-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}*/

/* Layer 3: Menu Overlay - FIXED SIZE */
/*.hero-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(243, 237, 230, 0.95);
    z-index: 100;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.banner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}*/

/* Logo - FIXED SMALL SIZE */
/*.banner-logo {
    flex-shrink: 0;
}

.banner-logo-img {
    height: 45px;*/ /* CHHOTA KAR DIYA */
    /*width: auto;
    max-width: 150px;
    display: block;
}*/

/* Navigation Menu */
/*.banner-nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 30px;
}

    .banner-nav li a {
        font-family: 'Playfair Display', serif;
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 1px;
        color: #000000;
        text-decoration: none;
        padding: 8px 0;
        position: relative;
        transition: 0.3s;
        text-transform: uppercase;
        white-space: nowrap;
    }

        .banner-nav li a:after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background: #C9A15A;
            transition: 0.3s;
        }

        .banner-nav li a:hover:after,
        .banner-nav li a.active:after {
            width: 100%;
        }

        .banner-nav li a:hover,
        .banner-nav li a.active {
            color: #C9A15A;
        }*/

/* Banner Icons */
/*.banner-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

    .banner-icons a {
        color: #000000;
        font-size: 18px;
        transition: 0.3s;
        cursor: pointer;
    }

        .banner-icons a:hover {
            color: #C9A15A;
        }

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 22px;
    color: #000000;
}*/

/* Layer 4: Banner Text Content */
/*.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    padding-top: 80px;*/ /* Menu ke liye space */
/*}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #F3EDE6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    padding: 20px;
}

.brand-name {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
    color: #F3EDE6;
}

    .brand-name span {
        font-weight: 300;
        color: #C9A15A;
    }

.brand-subtitle {
    font-size: 11px;
    letter-spacing: 4px;
    margin-bottom: 15px;
    opacity: 0.9;
    color: #F3EDE6;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.divider-line {
    width: 40px;
    height: 1px;
    background: #C9A15A;
}

.hero-divider i {
    font-size: 16px;
    color: #C9A15A;
}

.hero-tagline {
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-weight: 300;
    color: #F3EDE6;
}

.hero-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    color: #F3EDE6;
}*/

/* Button */
/*.btn-primary {
    background: #C9A15A;
    color: #7A2E3A;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 40px;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

    .btn-primary:hover {
        background: #A94A5E;
        color: #F3EDE6;
        transform: translateY(-2px);
    }*/

/* ============================================
   RESPONSIVE
   ============================================ */

/*@media (max-width: 992px) {
    .banner-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .banner-logo-img {
        height: 40px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 500px;
    }

    .banner-logo-img {
        height: 35px;
    }

    .brand-name {
        font-size: 32px;
    }

    .hero-title {
        font-size: 20px;
    }

    .hero-tagline {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .hero-content {
        padding-top: 60px;
    }

    .banner-overlay {
        padding-top: 60px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 450px;
    }

    .banner-logo-img {
        height: 30px;
    }

    .banner-header {
        gap: 10px;
    }

    .brand-name {
        font-size: 24px;
    }

    .hero-title {
        font-size: 16px;
    }

    .hero-tagline {
        font-size: 9px;
    }

    .hero-divider {
        gap: 10px;
        margin-bottom: 12px;
    }

    .divider-line {
        width: 25px;
    }

    .btn-primary {
        padding: 8px 20px;
        font-size: 12px;
    }
}*/

/*.hero-banner {
    position: relative;
    height: 650px;
    overflow: hidden;
}*/

/* Layer 1: Background Image (Lowest) */
/*.banner-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}*/

/* Layer 2: Dark Overlay on Image (Optional - for better text visibility) */
/*.banner-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}*/

/* Layer 3: Menu Overlay (On top of image) */
/*.hero-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(243, 237, 230);
    background: linear-gradient(180deg, rgba(243,237,230,0.95) 0%, rgba(243,237,230,0.9) 100%);
    z-index: 100;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}*/

/* Layer 4: Banner Text Content (Highest) */
/*.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
}*/

/* Banner Text Styling */
/*.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #F3EDE6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-name {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
    color: #F3EDE6;
}

    .brand-name span {
        font-weight: 300;
        color: #C9A15A;
    }

.brand-subtitle {
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 20px;
    opacity: 0.9;
    color: #F3EDE6;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.divider-line {
    width: 50px;
    height: 1px;
    background: #C9A15A;
}

.hero-divider i {
    font-size: 18px;
    color: #C9A15A;
}

.hero-tagline {
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-weight: 300;
    color: #F3EDE6;
}

.hero-title {
    font-size: 34px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    color: #F3EDE6;
}*/

/* Menu Navigation Links */
/*.banner-nav li a {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #000000;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: 0.3s;
    text-transform: uppercase;
}

    .banner-nav li a:after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #C9A15A;
        transition: 0.3s;
    }

    .banner-nav li a:hover:after,
    .banner-nav li a.active:after {
        width: 100%;
    }

    .banner-nav li a:hover,
    .banner-nav li a.active {
        color: #C9A15A;
    }*/

/* Responsive */
/*@media (max-width: 768px) {
    .hero-banner {
        height: 500px;
    }

    .brand-name {
        font-size: 36px;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-tagline {
        font-size: 12px;
    }

    .banner-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 450px;
    }

    .brand-name {
        font-size: 28px;
    }

    .hero-title {
        font-size: 18px;
    }

    .hero-tagline {
        font-size: 10px;
    }
}*/

/* ============================================
   BUTTONS
   ============================================ */

/*.btn-primary {
    background: #C9A15A;
    color: #7A2E3A;
    padding: 12px 35px;
    text-decoration: none;
    border-radius: 40px;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

    .btn-primary:hover {
        background: #A94A5E;
        color: #F3EDE6;
        transform: translateY(-2px);
    }

.btn-outline {
    background: transparent;
    color: #7A2E3A;
    border: 2px solid #C9A15A;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 25px;
    display: inline-block;
    transition: 0.3s;
}

    .btn-outline:hover {
        background: #C9A15A;
        color: #7A2E3A;
    }

.btn-category {
    background: #C9A15A;
    color: #7A2E3A;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
    font-weight: 500;
}

    .btn-category:hover {
        background: #A94A5E;
        color: #F3EDE6;
        transform: scale(1.05);
    }*/

/* ============================================
   SEARCH OVERLAY
   ============================================ */

/*.search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(243, 237, 230, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1000;
}

    .search-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.search-container {
    width: 60%;
    display: flex;
    gap: 10px;
    position: relative;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    font-size: 16px;
    border: 2px solid #C9A15A;
    border-radius: 50px;
    background: #F3EDE6;
    color: #7A2E3A;
    font-family: 'Poppins', sans-serif;
}

    .search-input:focus {
        outline: none;
        border-color: #A94A5E;
    }

.search-btn {
    padding: 15px 30px;
    background: #C9A15A;
    color: #7A2E3A;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

    .search-btn:hover {
        background: #A94A5E;
        color: #F3EDE6;
    }

.close-search {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 40px;
    cursor: pointer;
    color: #7A2E3A;
}*/

/* ============================================
   MOBILE NAVIGATION
   ============================================ */

/*.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #7A2E3A;
    z-index: 2000;
    transition: 0.3s;
    padding: 80px 20px 20px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

    .mobile-nav.active {
        right: 0;
    }

    .mobile-nav ul {
        list-style: none;
        padding: 0;
    }

        .mobile-nav ul li {
            margin-bottom: 15px;
        }

            .mobile-nav ul li a {
                color: #F3EDE6;
                text-decoration: none;
                font-size: 16px;
                font-weight: 500;
                display: block;
                padding: 10px 0;
                border-bottom: 1px solid rgba(243, 237, 230, 0.1);
                transition: 0.3s;
            }

                .mobile-nav ul li a:hover {
                    color: #C9A15A;
                    padding-left: 10px;
                }*/

/* ============================================
   FEATURES SECTION
   ============================================ */

/*.features {
    padding: 60px 0;
    background: #F3EDE6;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: #FFFFFF;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 3px solid #C9A15A;
}

    .feature-card:hover {
        transform: translateY(-5px);
        border-bottom-color: #A94A5E;
    }

    .feature-card i {
        font-size: 40px;
        color: #C9A15A;
        margin-bottom: 15px;
    }

    .feature-card h4 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #7A2E3A;
    }

    .feature-card p {
        color: #A94A5E;
        font-size: 14px;
    }*/

/* ============================================
   SECTION TITLES
   ============================================ */

/*.section-title {
    text-align: center;
    font-size: 36px;
    color: #7A2E3A;
    margin-bottom: 50px;
    position: relative;
}

    .section-title:after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: #C9A15A;
        margin: 15px auto 0;
    }*/

/* ============================================
   CATEGORY SECTION
   ============================================ */

/*.featured-categories, .featured-products, .new-arrivals, .testimonials {
    padding: 60px 0;
}

.featured-products {*/
    /*background: #FFFFFF;*/
    /*background: #eac7cd;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
}

.category-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

    .category-image img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: 0.5s;
    }

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(122, 46, 58, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-card h3 {
    margin-top: 15px;
    font-size: 18px;
    color: #7A2E3A;
}*/

/* ============================================
   PRODUCT CARDS
   ============================================ */

/*.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.product-card {
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
    position: relative;
    padding: 20px;
    text-align: center;
    border: 1px solid #F3EDE6;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(122, 46, 58, 0.15);
        border-color: #C9A15A;
    }

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
}

.sale-badge {
    background: #A94A5E;
    color: #F3EDE6;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
}

.new-badge {
    background: #C9A15A;
    color: #7A2E3A;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    height: 45px;
    overflow: hidden;
    color: #7A2E3A;
}

.price {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #A94A5E;
    font-size: 14px;
    margin-right: 10px;
}

.sale-price {
    color: #C9A15A;
    font-weight: bold;
}

.regular-price {
    color: #7A2E3A;
}

.rating {
    color: #C9A15A;
    margin-bottom: 15px;
}

.view-all {
    text-align: center;
    margin-top: 40px;
}*/

/* ============================================
   TESTIMONIALS
   ============================================ */

/*.testimonials {
    background: #F3EDE6;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-top: 4px solid #C9A15A;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 40px;
    color: #C9A15A;
    opacity: 0.5;
}

.stars {
    margin-bottom: 15px;
}

    .stars i {
        color: #C9A15A;
    }

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #7A2E3A;
}

.customer-info h4 {
    color: #A94A5E;
}*/

/* ============================================
   NEWSLETTER
   ============================================ */

/*.newsletter {
    background: #7A2E3A;
    color: #F3EDE6;
    padding: 60px 0;
    text-align: center;
}

    .newsletter h3 {
        font-size: 28px;
        margin-bottom: 15px;
        color: #C9A15A;
    }

.newsletter-form {
    margin-top: 30px;
}

    .newsletter-form input {
        padding: 12px 20px;
        width: 350px;
        border: none;
        border-radius: 30px;
        margin-right: 10px;
        background: #F3EDE6;
        color: #7A2E3A;
    }

        .newsletter-form input:focus {
            outline: none;
            border: 2px solid #C9A15A;
        }

    .newsletter-form button {
        padding: 12px 30px;
        background: #C9A15A;
        color: #7A2E3A;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        transition: 0.3s;
        font-weight: 600;
    }

        .newsletter-form button:hover {
            background: #A94A5E;
            color: #F3EDE6;
        }*/

/* ============================================
   FOOTER
   ============================================ */

/*footer {
    background: #7A2E3A;
    color: #C9A15A;
    padding: 60px 0 20px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 24px;
    font-weight: 700;
    color: #C9A15A;
    margin-bottom: 15px;
}

    .footer-col h3 span {
        font-weight: 300;
        color: #F3EDE6;
    }

.footer-col p {
    color: #F3EDE6;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-colors {
    display: flex;
    gap: 12px;
}

.color-dot {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

    .color-dot.maroon {
        background: #7A2E3A;
    }

    .color-dot.gold {
        background: #C9A15A;
    }

    .color-dot.pink {
        background: #A94A5E;
    }

    .color-dot:hover {
        transform: scale(1.15);
    }

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    color: #C9A15A;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

    .footer-col h4:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 45px;
        height: 2px;
        background: #A94A5E;
    }

.footer-col ul {
    list-style: none;
    padding: 0;
}

    .footer-col ul li {
        margin-bottom: 12px;
    }

        .footer-col ul li a {
            color: #F3EDE6;
            opacity: 0.75;
            text-decoration: none;
            transition: 0.3s;
            font-size: 14px;
        }

            .footer-col ul li a:hover {
                color: #C9A15A;
                opacity: 1;
                transform: translateX(5px);
            }

.contact-list li {
    color: #F3EDE6;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 12px;
}

    .contact-list li i {
        width: 22px;
        color: #C9A15A;
    }

.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(201, 161, 90, 0.3);
    font-size: 13px;
    color: #F3EDE6;
    opacity: 0.6;
}

    .copyright i {
        color: #A94A5E;
    }*/

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/*@media (max-width: 992px) {
    .banner-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-container {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 500px;
    }

    .brand-name {
        font-size: 36px;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-tagline {
        font-size: 12px;
    }

    .hero-content {
        padding-top: 80px;
    }

    .section-title {
        font-size: 28px;
    }

    .product-grid, .category-grid, .testimonial-grid, .feature-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form input {
        width: 250px;
        margin-bottom: 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-colors {
        justify-content: center;
    }

    .contact-list li {
        justify-content: center;
    }

    .top-bar-minimal .container {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 28px;
    }

    .hero-title {
        font-size: 18px;
    }

    .btn-primary {
        padding: 8px 25px;
        font-size: 12px;
    }

    .banner-logo-img {
        height: 40px;
    }
}*/
/* ============================================
   MOHINI BOUTIQUE - MAIN STYLESHEET
   Colors: Soft Cream #F3EDE6 | Deep Maroon #7A2E3A | Gold #C9A15A | Pink Maroon #A94A5E
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #F3EDE6;
    color: #7A2E3A;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TOP BAR
   ============================================ */

.top-bar-minimal {
    background: #7A2E3A;
    padding: 8px 0;
    font-size: 12px;
}

    .top-bar-minimal .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.contact-info {
    color: #F3EDE6;
}

    .contact-info i {
        color: #C9A15A;
        margin-right: 5px;
    }

.separator {
    margin: 0 10px;
    opacity: 0.5;
}

.user-links {
    display: flex;
    gap: 15px;
}

    .user-links a {
        color: #F3EDE6;
        text-decoration: none;
        transition: 0.3s;
    }

        .user-links a:hover {
            color: #C9A15A;
        }

/* ============================================
   STICKY HEADER
   ============================================ */

.sticky-header {
    position: sticky;
    top: 0;
    background: #F3EDE6;
    z-index: 1000;
    padding: 5px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

    .sticky-header.scrolled {
        padding: 10px 0;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
/*.logo-img {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}*/

.logo {
    display: flex;
    align-items: center;
}

    .logo a {
        display: flex;
        align-items: center;
        text-decoration: none;
        gap: 12px;
    }

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 20px;
    font-weight: 700;
    color: #7A2E3A;
    margin: 0;
    line-height: 1.2;
}

    .logo-text h1 span {
        font-weight: 300;
        color: #C9A15A;
    }

.logo-text p {
    font-size: 10px;
    color: #A94A5E;
    margin: 0;
    letter-spacing: 1px;
}

/* Main Navigation */
/*.main-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

    .main-nav ul li a {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 1px;
        color: #7A2E3A;
        text-decoration: none;
        padding: 8px 0;
        position: relative;
        transition: 0.3s;
    }

        .main-nav ul li a:after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background: #C9A15A;
            transition: 0.3s;
        }

        .main-nav ul li a:hover:after,
        .main-nav ul li a.active:after {
            width: 100%;
        }

        .main-nav ul li a:hover,
        .main-nav ul li a.active {
            color: #C9A15A;
        }*/

/* ============================================
   MAIN NAVIGATION - WITH ACTIVE STATE
   ============================================ */

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

    .main-nav ul li a {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 1px;
        color: #7A2E3A;
        text-decoration: none;
        padding: 8px 0;
        position: relative;
        transition: 0.3s;
    }

        /* Underline effect */
        .main-nav ul li a:after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background: #C9A15A;
            transition: 0.3s;
        }

        /* Hover effect */
        .main-nav ul li a:hover:after {
            width: 100%;
        }

        .main-nav ul li a:hover {
            color: #C9A15A;
        }

        /* ========== ACTIVE MENU STATE - CURRENT PAGE ========== */
        .main-nav ul li a.active {
            color: #C9A15A !important;
            font-weight: 600;
        }

            .main-nav ul li a.active:after {
                width: 100% !important;
            }
HERO BANNER - RESPONSIVE (NO EXTRA SPACE)
============================================ */

.hero-banner {
    position: relative;
    width: 100%;
    line-height: 0;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
}

/* Banner Image */
.banner-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

/* Dark Overlay */
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   /* background: rgba(122, 46, 58, 0.4);*/
    z-index: 1;
}

/* Container for Text */
.hero-banner .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

/* Text Content */
.hero-content {
    max-width: 600px;
    text-align: left;
    color: #F3EDE6;
}

.brand-name {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    color: #F3EDE6;
}

    .brand-name span {
        font-weight: 300;
        color: #C9A15A;
    }

.hero-description {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #F3EDE6;
}

.btn-primary {
    background: #C9A15A;
    color: #7A2E3A;
    padding: 12px 35px;
    text-decoration: none;
    border-radius: 40px;
    display: inline-block;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

    .btn-primary:hover {
        background: #A94A5E;
        color: #F3EDE6;
        transform: translateY(-2px);
    }

    .btn-primary i {
        margin-left: 8px;
    }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .brand-name {
        font-size: 48px;
    }

    .hero-description {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .brand-name {
        font-size: 40px;
    }

    .hero-description {
        font-size: 18px;
    }

    .btn-primary {
        padding: 10px 28px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .brand-name {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .btn-primary {
        padding: 8px 22px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 28px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .btn-primary {
        padding: 6px 18px;
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .brand-name {
        font-size: 24px;
    }

    .hero-description {
        font-size: 12px;
    }

    .btn-primary {
        padding: 5px 14px;
        font-size: 11px;
    }
}
/* ============================================
   SEARCH OVERLAY
   ============================================ */

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(243, 237, 230, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 2000;
}

    .search-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.search-container {
    width: 60%;
    display: flex;
    gap: 10px;
    position: relative;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    font-size: 16px;
    border: 2px solid #C9A15A;
    border-radius: 50px;
    background: #F3EDE6;
    color: #7A2E3A;
    font-family: 'Poppins', sans-serif;
}

    .search-input:focus {
        outline: none;
        border-color: #A94A5E;
    }

.search-btn {
    padding: 15px 30px;
    background: #C9A15A;
    color: #7A2E3A;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

    .search-btn:hover {
        background: #A94A5E;
        color: #F3EDE6;
    }

.close-search {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 40px;
    cursor: pointer;
    color: #7A2E3A;
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #7A2E3A;
    z-index: 3000;
    transition: 0.3s;
    padding: 80px 20px 20px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

    .mobile-nav.active {
        right: 0;
    }

    .mobile-nav ul {
        list-style: none;
        padding: 0;
    }

        .mobile-nav ul li {
            margin-bottom: 15px;
        }

            .mobile-nav ul li a {
                color: #F3EDE6;
                text-decoration: none;
                font-size: 16px;
                font-weight: 500;
                display: block;
                padding: 10px 0;
                border-bottom: 1px solid rgba(243, 237, 230, 0.1);
                transition: 0.3s;
            }

                .mobile-nav ul li a:hover {
                    color: #C9A15A;
                    padding-left: 10px;
                }

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    padding: 60px 0;
    background: #F3EDE6;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: #FFFFFF;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 3px solid #C9A15A;
}

    .feature-card:hover {
        transform: translateY(-5px);
        border-bottom-color: #A94A5E;
    }

    .feature-card i {
        font-size: 40px;
        color: #C9A15A;
        margin-bottom: 15px;
    }

    .feature-card h4 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #7A2E3A;
    }

    .feature-card p {
        color: #A94A5E;
        font-size: 14px;
    }

/* ============================================
   SECTION TITLES
   ============================================ */

.section-title {
    text-align: center;
    font-size: 36px;
    color: #7A2E3A;
    margin-bottom: 50px;
    position: relative;
}

    .section-title:after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: #C9A15A;
        margin: 15px auto 0;
    }

/* ============================================
   CATEGORY SECTION
   ============================================ */

.featured-categories, .featured-products, .new-arrivals, .testimonials {
    padding: 60px 0;
}

.featured-products {
    background: #eac7cd;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
}

/* Image Wrapper - For better overlay control */
.category-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

    .category-image-wrapper img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        transition: transform 0.5s ease;
        display: block;
    }

.category-card:hover .category-image-wrapper img {
    transform: scale(1.08);
}

/* Overlay - Initially Hidden */
.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(122, 46, 58, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: 12px;
}

/* Show overlay on hover */
.category-image-wrapper:hover .category-overlay {
    opacity: 1;
    visibility: visible;
}

/* Shop Now Button */
.shop-now-btn {
    background: #C9A15A;
    color: #7A2E3A;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

    .shop-now-btn:hover {
        background: #A94A5E;
        color: #F3EDE6;
        transform: scale(1.05);
    }

    .shop-now-btn i {
        transition: transform 0.3s ease;
    }

    .shop-now-btn:hover i {
        transform: translateX(5px);
    }

/* Category Title */
.category-card h3 {
    margin-top: 18px;
    font-size: 18px;
    font-weight: 600;
    color: #7A2E3A;
    transition: 0.3s;
}

.category-card:hover h3 {
    color: #C9A15A;
}

/* Responsive */
@media (max-width: 768px) {
    .category-image-wrapper img {
        height: 280px;
    }

    .shop-now-btn {
        padding: 10px 22px;
        font-size: 12px;
    }

    .category-card h3 {
        font-size: 16px;
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .category-image-wrapper img {
        height: 240px;
    }

    .shop-now-btn {
        padding: 8px 18px;
        font-size: 11px;
    }
}

/* ============================================
   PRODUCT CARDS
   ============================================ */

.featured-products {
    background: #eac7cd;
    padding: 60px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(201, 161, 90, 0.2);
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        border-color: #C9A15A;
    }

/* Product Badges */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

.sale-badge {
    background: #A94A5E;
    color: #F3EDE6;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.new-badge {
    background: #C9A15A;
    color: #7A2E3A;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-left: 5px;
}

/* Product Image */
.product-image-wrapper {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

/* Product Title */
.product-title {
    font-size: 15px;
    font-weight: 600;
    color: #7A2E3A;
    margin-bottom: 10px;
    line-height: 1.35;
    min-height: 40px;
    height: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
    white-space: normal;
}

/* Product Details Page Title */
.product-detail-title {
    font-size: 28px;
    font-weight: 700;
    color: #7A2E3A;
    margin: 0 0 15px 0;
    line-height: 1.3;
    word-break: break-word;
    white-space: normal;
}

/* Related Products Title */
.related-product-name {
    font-size: 14px;
    font-weight: 600;
    color: #7A2E3A;
    margin-bottom: 8px;
    line-height: 1.4;
    min-height: 40px;
    height: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
    white-space: normal;
}

/* Cart Page Product Title */
.cart-product-title {
    font-size: 14px;
    font-weight: 500;
    color: #7A2E3A;
    line-height: 1.4;
    word-break: break-word;
}

/* Responsive */
@media (max-width: 768px) {
    .product-title {
        font-size: 13px;
        min-height: 36px;
    }

    .product-detail-title {
        font-size: 22px;
    }

    .related-product-name {
        font-size: 12px;
        min-height: 36px;
    }
}


/* Product Price */
.product-price {
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #A94A5E;
    font-size: 14px;
    margin-right: 8px;
}

.sale-price {
    color: #C9A15A;
    font-size: 20px;
    font-weight: 700;
}

.regular-price {
    color: #7A2E3A;
    font-size: 20px;
    font-weight: 700;
}

/* Product Link - Link Style (Not Button) */
.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #7A2E3A;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

    .product-link i {
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .product-link:hover {
        color: #C9A15A;
        border-bottom-color: #C9A15A;
    }

        .product-link:hover i {
            transform: translateX(5px);
        }

/* View All Button */
.view-all {
    text-align: center;
    margin-top: 40px;
}

.btn-primary {
    background: #C9A15A;
    color: #7A2E3A;
    padding: 12px 35px;
    text-decoration: none;
    border-radius: 40px;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

    .btn-primary:hover {
        background: #A94A5E;
        color: #F3EDE6;
        transform: translateY(-2px);
    }

    .btn-primary i {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .btn-primary:hover i {
        transform: translateX(5px);
    }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .product-card img {
        height: 240px;
    }

    .product-title {
        font-size: 14px;
        height: 40px;
    }

    .sale-price, .regular-price {
        font-size: 18px;
    }

    .product-link {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        max-width: 320px;
        margin: 0 auto;
    }
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
    background: #F3EDE6;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-top: 4px solid #C9A15A;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 40px;
    color: #C9A15A;
    opacity: 0.5;
}

.stars {
    margin-bottom: 15px;
}

    .stars i {
        color: #C9A15A;
    }

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #7A2E3A;
}

.customer-info h4 {
    color: #A94A5E;
}

/* ============================================
   NEWSLETTER
   ============================================ */

.newsletter {
    background: #7A2E3A;
    color: #F3EDE6;
    padding: 60px 0;
    text-align: center;
}

    .newsletter h3 {
        font-size: 28px;
        margin-bottom: 15px;
        color: #C9A15A;
    }

.newsletter-form {
    margin-top: 30px;
}

    .newsletter-form input {
        padding: 12px 20px;
        width: 350px;
        border: none;
        border-radius: 30px;
        margin-right: 10px;
        background: #F3EDE6;
        color: #7A2E3A;
    }

        .newsletter-form input:focus {
            outline: none;
            border: 2px solid #C9A15A;
        }

    .newsletter-form button {
        padding: 12px 30px;
        background: #C9A15A;
        color: #7A2E3A;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        transition: 0.3s;
        font-weight: 600;
    }

        .newsletter-form button:hover {
            background: #A94A5E;
            color: #F3EDE6;
        }

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: #7A2E3A;
    color: #C9A15A;
    padding: 60px 0 20px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

/* Column 1 - Logo Column */
.footer-logo-col {
    text-align: left;
}

.footer-logo {
    margin-bottom: 20px;
}

    .footer-logo a {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
    }

.footer-logo-img {
    height: 300px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #C9A15A;
    margin: 0;
    line-height: 1.2;
}

    .footer-logo-text h3 span {
        font-weight: 300;
        color: #F3EDE6;
    }

.footer-logo-text p {
    font-size: 10px;
    color: #F3EDE6;
    margin: 0;
    letter-spacing: 1px;
}

.footer-tagline {
    color: #F3EDE6;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 13px;
}

/* Social Icons */
.footer-social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(243, 237, 230, 0.15);
    border-radius: 50%;
    color: #F3EDE6;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .social-icon:hover {
        transform: translateY(-3px);
    }

    .social-icon.facebook:hover {
        background: #1877F2;
        color: #fff;
    }

    .social-icon.instagram:hover {
        background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
        color: #fff;
    }

    .social-icon.twitter:hover {
        background: #1DA1F2;
        color: #fff;
    }

    .social-icon.pinterest:hover {
        background: #BD081C;
        color: #fff;
    }

    .social-icon.youtube:hover {
        background: #FF0000;
        color: #fff;
    }

/* Other Footer Columns */
.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    color: #C9A15A;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

    .footer-col h4:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 45px;
        height: 2px;
        background: #A94A5E;
    }

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-col ul li {
        margin-bottom: 12px;
    }

        .footer-col ul li a {
            color: #F3EDE6;
            opacity: 0.75;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 14px;
        }

            .footer-col ul li a:hover {
                color: #C9A15A;
                opacity: 1;
                transform: translateX(5px);
            }

/* Contact List */
.contact-list li {
    color: #F3EDE6;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 12px;
}

    .contact-list li i {
        width: 22px;
        color: #C9A15A;
        font-size: 14px;
    }

/* Copyright */
.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(201, 161, 90, 0.3);
    font-size: 13px;
    color: #F3EDE6;
    opacity: 0.6;
}

    .copyright i {
        color: #A94A5E;
        margin: 0 3px;
    }

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo-col {
        text-align: center;
    }

    .footer-logo a {
        justify-content: center;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-col h4:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-list li {
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-container {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 400px;
        padding: 60px 0;
    }

    .brand-name {
        font-size: 36px;
    }

    .hero-description {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .product-grid, .category-grid, .testimonial-grid, .feature-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form input {
        width: 250px;
        margin-bottom: 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-colors {
        justify-content: center;
    }

    .contact-list li {
        justify-content: center;
    }

    .top-bar-minimal .container {
        flex-direction: column;
        gap: 8px;
    }

    .logo-img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 28px;
    }

    .hero-description {
        font-size: 16px;
    }

    .btn-primary {
        padding: 8px 25px;
        font-size: 12px;
    }

    .logo-img {
        height: 35px;
    }
}
/* ============================================
   DESIGNER CREDIT LINE
   ============================================ */

.designer-credit {
    text-align: center;
    padding: 10px 0 20px;
    font-size: 12px;
    color: #F3EDE6;
    opacity: 0.6;
    letter-spacing: 0.5px;
}

    .designer-credit i {
        color: #A94A5E;
        margin: 0 3px;
    }

    .designer-credit a {
        color: #C9A15A; /* Theme Gold Color */
        text-decoration: none;
        transition: all 0.3s ease;
        font-weight: 500;
    }

        .designer-credit a:hover {
            color: #F3EDE6; /* Light color on hover */
            text-decoration: underline;
        }

/* Responsive */
@media (max-width: 768px) {
    .designer-credit {
        font-size: 10px;
        padding: 12px 0 5px;
    }
    .designer-credit {
        font-size: 10px;
        padding: 8px 0 15px;
    }
}
@media (max-width: 480px) {
    .copyright {
        font-size: 9px;
    }

    .designer-credit {
        font-size: 9px;
    }
}
