﻿/* ============================================
   HMC TRUSTNEVER FADE - MAIN STYLESHEET
   Colors: Navy #1a1a2e | Gold #D4AF37 | White #FFFFFF | Rose Gold #E8B4B8
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #FFFFFF;
    color: #1a1a2e;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TOP BAR
   ============================================ */

.top-bar-minimal {
    background: #1a1a2e;
    padding: 8px 0;
    font-size: 12px;
}

    .top-bar-minimal .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.contact-info {
    color: #FFFFFF;
}

    .contact-info i {
        color: #D4AF37;
        margin-right: 5px;
    }

.separator {
    margin: 0 10px;
    opacity: 0.5;
}

.user-links {
    display: flex;
    gap: 15px;
}

    .user-links a {
        color: #FFFFFF;
        text-decoration: none;
        transition: 0.3s;
    }

        .user-links a:hover {
            color: #D4AF37;
        }

/* ============================================
   STICKY HEADER
   ============================================ */

.sticky-header {
    position: sticky;
    top: 0;
    background: #FFFFFF;
    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 {
    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: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.2;
}

    .logo-text h1 span {
        font-weight: 300;
        color: #D4AF37;
    }

.logo-text p {
    font-size: 10px;
    color: #666666;
    margin: 0;
    letter-spacing: 1px;
}

/* ============================================
   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: #1a1a2e;
        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: #FFC2B0;
            transition: 0.3s;
        }

        /* Hover effect */
        .main-nav ul li a:hover:after {
            width: 100%;
        }

        .main-nav ul li a:hover {
            color: #FFC2B0;
        }

        /* ========== ACTIVE MENU STATE - CURRENT PAGE ========== */
        .main-nav ul li a.active {
            color: #FFC2B0 !important;
            font-weight: 600;
        }

            .main-nav ul li a.active:after {
                width: 100% !important;
            }

/* ============================================
   HERO BANNER - RESPONSIVE
   ============================================ */

.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;
}

/* 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: #FFFFFF;
}

.brand-name {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    color: #FFFFFF;
}

    .brand-name span {
        font-weight: 300;
        color: #D4AF37;
    }

.hero-description {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.btn-primary {
    background: #D4AF37;
    color: #1a1a2e;
    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: #1a1a2e;
        color: #D4AF37;
        border: 1px solid #D4AF37;
        transform: translateY(-2px);
    }

    .btn-primary i {
        margin-left: 8px;
    }

/* ============================================
   SEARCH OVERLAY
   ============================================ */

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 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 #D4AF37;
    border-radius: 50px;
    background: #FFFFFF;
    color: #1a1a2e;
    font-family: 'Poppins', sans-serif;
}

    .search-input:focus {
        outline: none;
        border-color: #E8B4B8;
    }

.search-btn {
    padding: 15px 30px;
    background: #D4AF37;
    color: #1a1a2e;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

    .search-btn:hover {
        background: #1a1a2e;
        color: #D4AF37;
    }

.close-search {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 40px;
    cursor: pointer;
    color: #1a1a2e;
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #1a1a2e;
    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: #FFFFFF;
                text-decoration: none;
                font-size: 16px;
                font-weight: 500;
                display: block;
                padding: 10px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
                transition: 0.3s;
            }

                .mobile-nav ul li a:hover {
                    color: #D4AF37;
                    padding-left: 10px;
                }

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    padding: 60px 0;
    background: #FAFAFA;
}

.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 #D4AF37;
}

    .feature-card:hover {
        transform: translateY(-5px);
        border-bottom-color: #E8B4B8;
    }

    .feature-card i {
        font-size: 40px;
        color: #D4AF37;
        margin-bottom: 15px;
    }

    .feature-card h4 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #1a1a2e;
    }

    .feature-card p {
        color: #666666;
        font-size: 14px;
    }

/* ============================================
   SECTION TITLES
   ============================================ */

.section-title {
    text-align: center;
    font-size: 36px;
    color: #1a1a2e;
    margin-bottom: 50px;
    position: relative;
}

    .section-title:after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: #FFC2B0;
        margin: 15px auto 0;
    }

    .section-title span {
        color: #FFC2B0;
    }

/* ============================================
   CATEGORY SECTION
   ============================================ */

/*.featured-categories, .featured-products, .new-arrivals, .testimonials {
    padding: 60px 0;
}

.featured-products {
    background: #FDF5E6;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    margin-bottom: 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: 250px;
        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(26, 26, 46, 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: #D4AF37;
    color: #1a1a2e;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 12px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

    .shop-now-btn:hover {
        background: #1a1a2e;
        color: #D4AF37;
        border: 1px solid #D4AF37;
        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: #1a1a2e;
    transition: 0.3s;
}

.category-card:hover h3 {
    color: #D4AF37;
}*/

/* Category Description */
/*.category-desc {
    font-size: 13px;
    color: #666666;
    margin-top: 5px;
}*/

/* 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;
    }
}*/

/* ============================================
   OUR COLLECTION SECTION - 4 CARDS PER ROW
   ============================================ */

/*.our-collection-section {
    padding: 60px 0;
    background: #FFFFFF;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

    .section-title span {
        color: #D4AF37;
        font-weight: 700;
    }

.section-subtitle {
    font-size: 16px;
    color: #666666;
    letter-spacing: 1px;
}*/

/* 4 CARDS PER ROW ON DESKTOP */
/*.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);*/ /* Fixed 4 columns */
    /*gap: 25px;
}

.category-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .category-card:hover {
        transform: translateY(-5px);
    }*/

/* Image Wrapper */
/*.category-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.category-card:hover .category-img {
    transform: scale(1.08);
}*/

/* Overlay Content - Title on Image */
/*.category-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3), transparent);
    padding: 30px 20px 20px;
    text-align: center;
    transition: all 0.3s ease;
}*/

/* Category Title - Overlay on Image */
/*.category-title {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.category-card:hover .category-title {
    color: #D4AF37;
}*/

/* Shop Now Button - Hidden initially, appears on hover */
/*.shop-now-btn {
    display: inline-block;
    background: #D4AF37;
    color: #1a1a2e;
    padding: 6px 16px;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
}

.category-card:hover .shop-now-btn {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.shop-now-btn:hover {
    background: #1a1a2e;
    color: #D4AF37;
    border: 1px solid #D4AF37;
}

.shop-now-btn i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.shop-now-btn:hover i {
    transform: translateX(5px);
}*/

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Laptop (1024px - 1200px) - 3 cards */
/*@media (max-width: 1100px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}*/

/* Tablet (768px - 1024px) - 2 cards */
/*@media (max-width: 900px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}*/

/* Mobile (576px - 768px) - 2 cards */
/*@media (max-width: 768px) {
    .our-collection-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .category-title {
        font-size: 16px;
    }

    .shop-now-btn {
        padding: 5px 12px;
        font-size: 11px;
    }
}*/

/* Small Mobile (up to 576px) - 1 card */
/*@media (max-width: 576px) {
    .category-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }
}*/

/* ============================================
   MASONRY 3D CATEGORIES
   ============================================ */

.categories-3d {
    padding: 80px 0;
    background: #0a0a0a;
}

/* Add this new section for the heading */
.section-header-3d {
    text-align: center;
    margin-bottom: 48px;
}

    .section-header-3d h2 {
        font-size: 42px;
        font-weight: 700;
        background: linear-gradient(135deg, #ffffff 0%, #FFC2B0 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
        position: relative;
        display: inline-block;
    }

        .section-header-3d h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #FFC2B0, #FFC2B0);
            border-radius: 2px;
        }

    .section-header-3d p {
        font-size: 18px;
        color: #888;
        margin-top: 24px;
        font-weight: 400;
    }

.masonry-3d {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.masonry-card-3d {
    height: 320px;
    perspective: 1000px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 20px;
}

.masonry-card-3d:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

    .card-front img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.card-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 30px;
}

    .card-badge span {
        color: #FFC2B0;
        font-weight: 600;
        font-size: 14px;
    }

.card-back {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-back-content {
    text-align: center;
    padding: 20px;
}

    .card-back-content h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

.card-back-icon {
    font-size: 40px;
    color: #FFC2B0;
    margin: 20px 0;
}

.explore-btn {
    display: inline-block;
    color: #FFC2B0;
    text-decoration: none;
    border-bottom: 2px solid #FFC2B0;
    padding-bottom: 5px;
    transition: 0.3s;
}

    .explore-btn:hover {
        letter-spacing: 2px;
    }
/* ============================================
   MOBILE RESPONSIVE - 3D CATEGORIES
   ============================================ */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .masonry-3d {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .masonry-card-3d {
        height: 300px;
    }

    .card-back-content h3 {
        font-size: 20px;
    }

    .card-back-icon {
        font-size: 32px;
        margin: 15px 0;
    }

    .explore-btn {
        font-size: 14px;
    }
}

/* Mobile Large (576px - 768px) */
@media (max-width: 768px) {
    .categories-3d {
        padding: 50px 0;
    }

    .masonry-3d {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .masonry-card-3d {
        height: 260px;
    }

    .card-badge {
        bottom: 12px;
        left: 12px;
        padding: 5px 12px;
    }

        .card-badge span {
            font-size: 11px;
        }

    .card-back-content {
        padding: 15px;
    }

        .card-back-content h3 {
            font-size: 16px;
            margin-bottom: 8px;
        }

    .card-back-icon {
        font-size: 24px;
        margin: 10px 0;
    }

    .explore-btn {
        font-size: 11px;
        padding-bottom: 3px;
    }
}

/* Mobile Small (up to 576px) - 1 card per row */
@media (max-width: 576px) {
    .categories-3d {
        padding: 40px 0;
    }

    .masonry-3d {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 320px;
        margin: 0 auto;
    }

    .masonry-card-3d {
        height: 320px;
    }

    .card-back-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .card-back-icon {
        font-size: 32px;
        margin: 15px 0;
    }

    .explore-btn {
        font-size: 13px;
    }
}

/* Landscape Mode for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .masonry-card-3d {
        height: 280px;
    }

    .masonry-3d {
        gap: 12px;
    }

    .card-back-content h3 {
        font-size: 16px;
    }

    .card-back-icon {
        font-size: 24px;
        margin: 8px 0;
    }
}
/* ============================================
   PRODUCT CARDS
   ============================================ */

/*.featured-products {
    padding: 60px 0;
    background: #FDF5E6;
}*/

/* 4 CARDS PER ROW ON DESKTOP */
/*.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        border-color: #D4AF37;
    }*/

/* Product Badges */
/*.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

.sale-badge {
    background: #E8B4B8;
    color: #1a1a2e;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.new-badge {
    background: #D4AF37;
    color: #1a1a2e;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 5px;
}*/

/* Product Image - Edge to Edge (No White Space) */
/*.product-image-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;*/ /* Edge to edge with cover */
    /*object-position: center;
    transition: transform 0.5s ease;
    display: block;
}

.product-card:hover img {
    transform: scale(1.05);
}*/

/* Product Content - Padding only here */
/*.product-card-content {
    padding: 15px 15px 20px 15px;
}*/

/* Product Title */
/*.product-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.35;
    min-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}*/

/* Product Price */
/*.product-price {
    margin-bottom: 12px;
}

.old-price {
    text-decoration: line-through;
    color: #E8B4B8;
    font-size: 14px;
    margin-right: 8px;
}

.sale-price {
    color: #D4AF37;
    font-size: 20px;
    font-weight: 700;
}

.regular-price {
    color: #1a1a2e;
    font-size: 20px;
    font-weight: 700;
}*/

/* Product Link */
/*.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1a1a2e;
    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: #D4AF37;
        border-bottom-color: #D4AF37;
    }

        .product-link:hover i {
            transform: translateX(5px);
        }*/

/* View All Button */
/*.view-all {
    text-align: center;
    margin-top: 40px;
}

.btn-primary {
    background: #D4AF37;
    color: #1a1a2e;
    padding: 12px 35px;
    text-decoration: none;
    border-radius: 40px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

    .btn-primary:hover {
        background: #1a1a2e;
        color: #D4AF37;
        border: 1px solid #D4AF37;
        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: 1100px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .featured-products {
        padding: 40px 0;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-card img {
        height: 220px;
    }

    .product-title {
        font-size: 13px;
    }

    .sale-price, .regular-price {
        font-size: 16px;
    }

    .product-link {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .product-card img {
        height: 240px;
    }
}*/
/* Masonry Grid CSS */
.products-masonry {
    padding: 80px 0;
    background: #f8f8f8;
}

.masonry-head {
    text-align: center;
    margin-bottom: 50px;
}

    .masonry-head h2 {
        font-size: 36px;
        font-weight: 600;
    }

        .masonry-head h2 span {
            color: #FFC2B0;
        }

    .masonry-head p {
        color: #666;
        margin-top: 10px;
    }

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-auto-rows: 280px;
}

.masonry-item {
    overflow: hidden;
    border-radius: 20px;
}

    .masonry-item.tall {
        grid-row: span 2;
    }

    .masonry-item.wide {
        grid-column: span 2;
    }

.masonry-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

    .masonry-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
    }

    .masonry-card:hover img {
        transform: scale(1.05);
    }

.masonry-card-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 30px 20px 20px;
    transition: 0.4s;
}

.masonry-card:hover .masonry-card-overlay {
    bottom: 0;
}

.masonry-card-content {
    color: #fff;
}

.masonry-tag {
    font-size: 11px;
    color: #FFC2B0;
    letter-spacing: 2px;
}

.masonry-card-content h3 {
    font-size: 18px;
    margin: 8px 0;
}

.masonry-price .sale-price {
    color: #FFC2B0;
    font-size: 20px;
    font-weight: 600;
}

.masonry-price .regular-price {
    color: #fff;
    font-size: 18px;
}

.masonry-link {
    display: inline-block;
    color: #FFC2B0;
    text-decoration: none;
    margin-top: 10px;
    font-size: 13px;
}

.masonry-footer {
    text-align: center;
    margin-top: 40px;
}

.btn-masonry {
    display: inline-block;
    background: #1a1a2e;
    color: #fff;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
}

@media (max-width: 992px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .masonry-grid {
        grid-template-columns: 1fr;
    }

    .masonry-item.wide {
        grid-column: span 1;
    }
}
/* ============================================
   TESTIMONIALS
   ============================================ */

/*.testimonials {
    background: #FFFFFF;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #FAFAFA;
    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 #D4AF37;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 40px;
    color: #D4AF37;
    opacity: 0.5;
}

.stars {
    margin-bottom: 15px;
}

    .stars i {
        color: #D4AF37;
    }

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #1a1a2e;
}

.customer-info h4 {
    color: #E8B4B8;
}*/

.testimonials {
    padding: 60px 0;
    background: #FFFFFF;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

    .section-title span {
        color: #FFC2B0;
        font-weight: 700;
    }

.section-subtitle {
    font-size: 16px;
    color: #666666;
    letter-spacing: 1px;
}

/* Testimonials Wrapper */
.testimonials-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Scrollable Container - Hide Scrollbar */
.testimonials-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

    .testimonials-scroll::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome/Safari */
    }

/* Testimonials Track */
.testimonials-track {
    display: flex;
    gap: 25px;
    padding: 20px 5px 30px 5px;
}

/* Testimonial Card */
.testimonial-card {
    min-width: 350px;
    max-width: 350px;
    background: #FAFAFA;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    flex-shrink: 0;
}

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-color: #D4AF37;
    }

/* Testimonial Quote Icon */
.testimonial-quote {
    background: #FFC2B0;
    padding: 20px;
    text-align: center;
}

    .testimonial-quote i {
        font-size: 40px;
        color: #1a1a2e;
        opacity: 0.7;
    }

/* Testimonial Content */
.testimonial-content {
    padding: 25px;
    text-align: center;
}

.stars {
    margin-bottom: 15px;
}

    .stars i {
        color: #FFC2B0;
        font-size: 16px;
        margin: 0 2px;
    }

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: #1a1a2e;
    font-style: italic;
    margin-bottom: 20px;
    min-height: 80px;
}

/* Testimonial Author */
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.author-avatar i {
    font-size: 45px;
    color: #FFC2B0;
}

.author-info {
    text-align: left;
}

    .author-info h4 {
        font-size: 16px;
        font-weight: 600;
        color: #1a1a2e;
        margin-bottom: 3px;
    }

    .author-info span {
        font-size: 12px;
        color: #666666;
    }

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    background: #FFC2B0;
    color: #1a1a2e;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

    .nav-btn:hover {
        background: #1a1a2e;
        color: #D4AF37;
        transform: scale(1.1);
    }

/* Scroll Indicators (Dots) */
.scroll-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .indicator-dot.active {
        background: #FFC2B0;
        width: 25px;
        border-radius: 5px;
    }

    .indicator-dot:hover {
        background: #1a1a2e;
    }

/* Pause indicator on hover */
.testimonials-scroll:hover ~ .nav-buttons .auto-scroll-indicator,
.testimonials-wrapper:hover ~ .nav-buttons .auto-scroll-indicator {
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials {
        padding: 40px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .testimonials-wrapper {
        padding: 0 15px;
    }

    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
    }

    .testimonial-text {
        font-size: 13px;
        min-height: 70px;
    }

    .author-avatar i {
        font-size: 35px;
    }

    .author-info h4 {
        font-size: 14px;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        min-width: 260px;
        max-width: 260px;
    }

    .testimonial-content {
        padding: 20px;
    }

    .stars i {
        font-size: 12px;
    }
}

/* ============================================
   NEWSLETTER
   ============================================ */

.newsletter {
    background: #1a1a2e;
    color: #FFFFFF;
    padding: 60px 0;
    text-align: center;
}

    .newsletter h3 {
        font-size: 28px;
        margin-bottom: 15px;
        color: #D4AF37;
    }

.newsletter-form {
    margin-top: 30px;
}

    .newsletter-form input {
        padding: 12px 20px;
        width: 350px;
        border: none;
        border-radius: 30px;
        margin-right: 10px;
        background: #FFFFFF;
        color: #1a1a2e;
    }

        .newsletter-form input:focus {
            outline: none;
            border: 2px solid #D4AF37;
        }

    .newsletter-form button {
        padding: 12px 30px;
        background: #D4AF37;
        color: #1a1a2e;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        transition: 0.3s;
        font-weight: 600;
    }

        .newsletter-form button:hover {
            background: #1a1a2e;
            color: #D4AF37;
            border: 1px solid #D4AF37;
        }

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: #0f0f1a;
    color: #FFC2B0;
    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: 215px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #D4AF37;
    margin: 0;
    line-height: 1.2;
}

    .footer-logo-text h3 span {
        font-weight: 300;
        color: #FFFFFF;
    }

.footer-logo-text p {
    font-size: 10px;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: 1px;
}

.footer-tagline {
    color: #FFFFFF;
    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(255,255,255,0.1);
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .social-icon:hover {
        transform: translateY(-3px);
        background: #D4AF37;
        color: #1a1a2e;
    }

/* Other Footer Columns */
.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    color: #FFC2B0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

    .footer-col h4:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 45px;
        height: 2px;
        background: #FFC2B0;
    }

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-col ul li {
        margin-bottom: 12px;
    }

        .footer-col ul li a {
            color: #FFFFFF;
            opacity: 0.75;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 14px;
        }

            .footer-col ul li a:hover {
                color: #D4AF37;
                opacity: 1;
                transform: translateX(5px);
            }

/* Contact List */
.contact-list li {
    color: #FFFFFF;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 12px;
}

    .contact-list li i {
        width: 22px;
        color: #FFC2B0;
        font-size: 14px;
    }

/* Copyright */
.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 13px;
    color: #FFFFFF;
    opacity: 0.6;
}

    .copyright i {
        color: #E8B4B8;
        margin: 0 3px;
    }

/* ============================================
   DESIGNER CREDIT LINE
   ============================================ */

.designer-credit {
    text-align: center;
    padding: 10px 0 20px;
    font-size: 12px;
    color: #FFFFFF;
    opacity: 0.6;
    letter-spacing: 0.5px;
}

    .designer-credit i {
        color: #E8B4B8;
        margin: 0 3px;
    }

    .designer-credit a {
        color: #D4AF37;
        text-decoration: none;
        transition: all 0.3s ease;
        font-weight: 500;
    }

        .designer-credit a:hover {
            color: #FFFFFF;
            text-decoration: underline;
        }

/* ============================================
   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-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;
    }

    .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;
    }

    .copyright {
        font-size: 9px;
    }

    .designer-credit {
        font-size: 9px;
    }
}
/* ============================================
   SHOPMY EXACT LOOK - COMPLETE
   ============================================ */

/* Hero Section */
.shopmy-hero {
    padding: 80px 0 60px;
    background: #ffffff;
    text-align: center;
}

    .shopmy-hero h1 {
        font-size: 52px;
        font-weight: 700;
        line-height: 1.2;
        color: #000;
        margin-bottom: 20px;
    }

    .shopmy-hero p {
        font-size: 18px;
        color: #555;
        max-width: 600px;
        margin: 0 auto;
    }

/* Shop by Section */
.shopmy-shopby {
    padding: 40px 0 60px;
    background: #faf9f8;
}

.shopby-grid {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.shopby-card {
    flex: 1;
    background: #fff;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.shopby-tag {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    letter-spacing: 1px;
}

.shopby-card h3 {
    font-size: 28px;
    margin: 10px 0 15px;
    font-weight: 500;
}

.shopby-card p {
    color: #444;
    line-height: 1.5;
    margin-bottom: 20px;
}

.shopby-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 1px solid #ccc;
    padding: 8px 20px;
    border-radius: 40px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

.btn-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

/* Curated By Section */
.shopmy-curated {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.curated-tag {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    letter-spacing: 2px;
}

.curated-profiles {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.profile {
    text-align: center;
}

.profile-avatar i {
    font-size: 80px;
    color: #D4AF37;
}

.profile h4 {
    margin-top: 12px;
    font-size: 18px;
    font-weight: 500;
}

/* Our Collection - Keep existing styles */
.our-collection-section {
    padding: 60px 0;
    background: #fff;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Featured Products */
.featured-products {
    padding: 60px 0;
    background: #faf9f8;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
}

.product-image-wrapper img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.product-card-content {
    padding: 15px;
}

.product-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.view-all {
    text-align: center;
    margin-top: 40px;
}

.btn-primary {
    background: #000;
    color: #fff;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
    .shopby-grid, .category-grid, .product-grid {
        grid-template-columns: repeat(2, 1fr);
        flex-direction: column;
    }

    .shopmy-hero h1 {
        font-size: 40px;
    }

    .curated-profiles {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .category-grid, .product-grid {
        grid-template-columns: 1fr;
    }

    .shopmy-hero h1 {
        font-size: 32px;
    }

    .shopby-card {
        padding: 24px;
    }
}

.shopmy-nav {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.nav-links {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    align-items: center;
}

    .nav-links a {
        text-decoration: none;
        color: #333;
        font-size: 14px;
    }

.signup-btn {
    background: #000;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 40px;
}
/* ============================================
   PRIVACY POLICY PAGE STYLES
   ============================================ */

/* Page Header */
.policy-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #fafafa, #f0f0f0);
    text-align: center;
    border-bottom: 1px solid #eee;
}

.policy-header-content {
    max-width: 700px;
    margin: 0 auto;
}

.policy-badge {
    font-size: 11px;
    letter-spacing: 4px;
    color: #D4AF37;
    display: inline-block;
    margin-bottom: 15px;
}

.policy-header h1 {
    font-size: 42px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.policy-header p {
    font-size: 16px;
    color: #666;
}

/* Policy Content */
.policy-content {
    padding: 60px 0 80px;
    background: #fff;
}

.policy-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* Policy Introduction */
.policy-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    padding: 25px;
    background: #fafafa;
    border-radius: 12px;
    border-left: 4px solid #D4AF37;
}

    .policy-intro strong {
        color: #1a1a2e;
    }

/* Policy Section */
.policy-section {
    margin-bottom: 45px;
    padding-bottom: 35px;
    border-bottom: 1px solid #f0f0f0;
}

    .policy-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .policy-section h2 {
        font-size: 24px;
        font-weight: 600;
        color: #1a1a2e;
        margin-bottom: 20px;
        font-family: 'Playfair Display', serif;
    }

    .policy-section p {
        font-size: 15px;
        line-height: 1.8;
        color: #444;
        margin-bottom: 15px;
    }

    .policy-section ul {
        margin: 15px 0 20px 25px;
    }

        .policy-section ul li {
            font-size: 15px;
            line-height: 1.8;
            color: #444;
            margin-bottom: 8px;
            position: relative;
            padding-left: 10px;
            list-style: none;
        }

            .policy-section ul li::before {
                content: '✦';
                color: #D4AF37;
                position: absolute;
                left: -18px;
                font-size: 10px;
            }

.policy-note {
    font-size: 13px;
    color: #999;
    font-style: italic;
}

/* Security Badges */
.security-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.security-badge {
    text-align: center;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 10px;
    transition: 0.3s;
}

    .security-badge:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .security-badge i {
        font-size: 32px;
        color: #D4AF37;
        margin-bottom: 10px;
    }

    .security-badge span {
        display: block;
        font-size: 13px;
        color: #555;
    }

/* Contact Details */
.contact-section {
    background: #fafafa;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid #eee;
    margin-top: 10px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

    .contact-detail i {
        font-size: 20px;
        color: #D4AF37;
        margin-top: 3px;
        width: 24px;
    }

    .contact-detail strong {
        display: block;
        font-size: 13px;
        color: #666;
    }

    .contact-detail span,
    .contact-detail a {
        font-size: 14px;
        color: #1a1a2e;
        text-decoration: none;
    }

        .contact-detail a:hover {
            color: #D4AF37;
        }

/* Policy Acceptance */
.policy-acceptance {
    margin-top: 40px;
    padding: 25px;
    background: #1a1a2e;
    border-radius: 12px;
    text-align: center;
    color: #fff;
}

    .policy-acceptance p {
        font-size: 15px;
        color: #fff;
        margin-bottom: 10px;
    }

.policy-acceptance-date {
    font-size: 13px;
    color: #94a3b8;
}

    .policy-acceptance-date strong {
        color: #D4AF37;
    }

/* ============================================
   RESPONSIVE - PRIVACY POLICY
   ============================================ */

@media (max-width: 992px) {
    .policy-header {
        padding: 60px 0 40px;
    }

        .policy-header h1 {
            font-size: 36px;
        }

    .security-badges {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .policy-header {
        padding: 50px 0 30px;
    }

        .policy-header h1 {
            font-size: 30px;
        }

        .policy-header p {
            font-size: 14px;
        }

    .policy-intro {
        font-size: 14px;
        padding: 18px;
    }

    .policy-section h2 {
        font-size: 20px;
    }

    .policy-section p,
    .policy-section ul li {
        font-size: 14px;
    }

    .policy-wrapper {
        padding: 0 15px;
    }

    .security-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .contact-section {
        padding: 25px;
    }

    .contact-detail {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

        .contact-detail i {
            margin: 0 auto;
        }
}

@media (max-width: 576px) {
    .policy-header h1 {
        font-size: 26px;
    }

    .policy-header p {
        font-size: 12px;
    }

    .policy-section {
        margin-bottom: 30px;
        padding-bottom: 25px;
    }

        .policy-section h2 {
            font-size: 18px;
        }

    .security-badges {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .security-badge {
        padding: 15px;
    }

        .security-badge i {
            font-size: 24px;
        }

    .contact-section {
        padding: 20px;
    }

    .policy-acceptance {
        padding: 20px;
    }
}
/* ===== OVERLAY HEADER - Base Styles ===== */
.overlay-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 0;
    transition: all 0.3s ease;
}

    .overlay-header .header-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Overlay header links white */
    .overlay-header .main-nav ul li a {
        color: #ffffff;
        text-shadow: 0 2px 8px rgba(0,0,0,0.6);
        font-weight: 500;
    }

        .overlay-header .main-nav ul li a:hover,
        .overlay-header .main-nav ul li a.active {
            color: #FFD700;
        }

    .overlay-header .logo-text h1 span {
        color: #ffffff;
    }

    .overlay-header .logo-text p {
        color: #FFD700;
    }

    .overlay-header .header-icons a {
        color: #ffffff;
    }

    /* Scrolled state */
    .overlay-header.scrolled {
        position: fixed !important;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.9) !important;
        box-shadow: 0 2px 20px rgba(0,0,0,0.3);
        padding: 5px 0;
        animation: slideDown 0.3s ease;
    }

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* ===== NORMAL HEADER (Other Pages) ===== 
.normal-header {
    background: #1a1a2e;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

    .normal-header .main-nav ul li a {
        color: #ffffff;
    }

        .normal-header .main-nav ul li a:hover,
        .normal-header .main-nav ul li a.active {
            color: #FFD700;
        }*/

/* ============================================
   NORMAL HEADER (Other Pages) - WHITE BACKGROUND
   ============================================ */
.normal-header {
    background: #ffffff !important; /* White background */
    padding: 10px 0 !important;
    position: sticky !important;
    top: 0px !important; /* Top bar ke neeche */
    z-index: 999 !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08) !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

    /* Logo text - Dark */
    .normal-header .logo-text h1 span {
        color: #1a1a2e !important;
    }

    .normal-header .logo-text p {
        color: #FFD700 !important;
    }

    /* Menu links - Dark */
    .normal-header .main-nav ul li a {
        color: #1a1a2e !important;
        font-weight: 600 !important;
        text-shadow: none !important;
    }

        .normal-header .main-nav ul li a:hover,
        .normal-header .main-nav ul li a.active {
            color: #FFD700 !important;
        }

    /* Header icons - Dark */
    .normal-header .header-icons a {
        color: #1a1a2e !important;
        text-shadow: none !important;
    }

        .normal-header .header-icons a:hover {
            color: #FFD700 !important;
        }

    /* Search icon in header */
    .normal-header .header-icons .search-icon {
        color: #1a1a2e !important;
    }

        .normal-header .header-icons .search-icon:hover {
            color: #FFD700 !important;
        }

    /* Mobile menu toggle - Dark */
    .normal-header .mobile-menu-toggle {
        color: #1a1a2e !important;
    }

        .normal-header .mobile-menu-toggle:hover {
            color: #FFD700 !important;
        }

/* ===== HOME PAGE CONTENT ===== */
.home-content {
    margin-top: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .overlay-header .logo-text h1 {
        font-size: 18px;
    }

    .overlay-header .logo-text p {
        font-size: 8px;
    }

    .overlay-header .main-nav ul li a {
        font-size: 11px;
        padding: 5px 8px;
    }

    .overlay-header .header-icons a {
        font-size: 14px;
    }
}
/* ============================================
   CATEGORY CHECKBOX LIST - FIXED UI
   ============================================ */

.category-checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    list-style: none;
    padding: 0;
}

    .category-checkbox-list label {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        cursor: pointer;
        color: #555;
        font-size: 14px;
        font-weight: normal;
        padding: 0 !important;
        margin: 0 !important;
    }

    .category-checkbox-list input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin: 0 !important;
        padding: 0 !important;
        cursor: pointer;
        accent-color: #C9A15A;
        flex-shrink: 0;
    }

    /* Fix for ASP.NET CheckBoxList generated table (if any) */
    .category-checkbox-list table {
        border-collapse: collapse;
        width: 100%;
    }

    .category-checkbox-list td {
        padding: 0 !important;
        margin: 0 !important;
    }