/* ==========================================================================
   SHREE FASHION CUSTOM STYLING ARCHITECTURE
   ========================================================================== */

/* Design Palette Properties */
:root {
    --gold: #D4AF37;
    --gold-hover: #bfa030;
    --dark: #111111;
    --light-bg: #fdfdfd;
    --section-bg-alt: #f8f6f0;
    --white: #ffffff;
    --body-font: 'Poppins', sans-serif;
    --heading-font: 'Playfair Display', serif;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --glass-bg: rgba(255, 255, 255, 0.75);
    --primary-dark: #111111;
    --text-muted: #6c757d;
    --gold-glow: rgba(212, 175, 55, 0.25);
}

.text-muted {
    color: var(--text-muted) !important;
}

/* Global Standard System Customizations */
html,
body {
    font-family: var(--body-font);
    background-color: var(--light-bg);
    color: var(--dark);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-name,
.section-title {
    font-family: var(--heading-font);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.text-gold {
    color: var(--gold) !important;
}

.section-padding {
    padding: 100px 0;
}

.bg-light-section {
    background-color: var(--section-bg-alt);
}

.sub-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
    color: var(--dark);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--gold);
}

.welcome-section .section-title::after {
    left: 0;
    transform: none;
}

/* --- BUTTON & ACTION COMPONENTS --- */
.btn-whatsapp {
    background-color: #d4af37;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 0;
    transition: var(--transition);
    border: none;
}

.btn-whatsapp:hover {
    background-color: #d4af37;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-gold-filled {
    background-color: var(--gold);
    color: var(--white);
    border-radius: 0;
    padding: 14px 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    border: 1px solid var(--gold);
    transition: var(--transition);
}

.btn-gold-filled:hover {
    background-color: var(--gold);
    color: var(--white);
    border-radius: 0;
    padding: 14px 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    border: 1px solid var(--gold);
    transition: var(--transition);
}



.btn-outline-light-custom {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 0;
    padding: 12px 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline-light-custom:hover {
    background-color: var(--white);
    color: var(--dark);
}

.btn-gold-line {
    background-color: transparent;
    color: var(--dark);
    border: 1px solid var(--dark);
    border-radius: 0;
    padding: 12px 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-gold-line:hover {
    background-color: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.btn-buy-now {
    background-color: var(--dark);
    color: var(--white);
    border-radius: 0;
    font-size: 0.85rem;
    padding: 8px 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-buy-now:hover {
    background-color: var(--gold);
    color: var(--white);
    padding: 8px 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- LOGO MANAGEMENT STYLING --- */
.brand-logo-container {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    transition: var(--transition);
}

.brand-logo-icon {
    transform: rotate(-45deg);
    font-size: 1.2rem;
    color: var(--gold);
}

.brand-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-size: 1.35rem;
    letter-spacing: 1px;
    color: var(--dark);
}

.brand-tagline {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #666;
}

.navbar .logo {
    width: 60px;
}

/* --- NAVBAR CUSTOM DESIGN --- */
.navbar {
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 6px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.navbar-brand .logo {
    width: 60px;
}

.navbar.scrolled {
    padding: 6px 0;
    background-color: rgba(5, 5, 5, 0.95);
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 6px 16px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    width: 0;
    height: 1.5px;
    background-color: var(--gold);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 32px);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold);
}

/* --- HERO SLIDER SYSTEM --- */
.hero-slider-container {
    width: 100%;
    height: 100vh;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.heroSwiper .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-heading {
    font-size: 4rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    letter-spacing: 0.5px;
}

/* Swiper navigation personalization */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    color: var(--white);
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: var(--transition);
}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
    font-size: 1.2rem;
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
    background-color: var(--gold);
    border-color: var(--gold);
}

.heroSwiper .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* --- WELCOME ARTWORK SECTION --- */
.welcome-img-wrapper {
    padding: 0 20px 20px 0;
}

.img-accent-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90%;
    height: 90%;
    border: 2px solid var(--gold);
    z-index: -1;
    transform: translate(15px, 15px);
}

.welcome-lead {
    font-size: 1.25rem;
    color: var(--gold);
    font-weight: 500;
}

/* --- CATEGORY CARDS DYNAMICS --- */
.category-card {
    height: 380px;
}

.cat-img {
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
    transition: var(--transition);
}

.category-name {
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.category-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.category-card:hover .cat-img {
    transform: scale(1.08);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.category-card:hover .category-link {
    opacity: 1;
    letter-spacing: 2px;
}

/* --- PREMIUM PRODUCT CARD STRUCTURE --- */
.product-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(212, 175, 55, 0.2);
}

.product-img-container {
    height: 320px;
    background-color: #f9f9f9;
}

.product-img {
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-name {
    font-size: 1.2rem;
    color: var(--dark);
    line-height: 1.4;
}

.product-desc {
    font-size: 0.88rem;
    line-height: 1.6;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
}

/* --- WHY CHOOSE US --- */
.why-choose-us .feature-item {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    transition: var(--transition);
}

.why-choose-us .feature-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
}

.feature-icon-box i {
    font-size: 2.5rem;
}

.feature-title {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

/* Custom 5-column layout configuration for large screens */
@media (min-width: 992px) {
    .why-choose-us .col-lg-2\.4 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* --- TESTIMONIAL REVIEWS SLIDER --- */
.review-card {
    max-width: 750px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.quote-icon {
    font-size: 2.8rem;
    line-height: 1;
    display: inline-block;
}

.review-text {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.8;
    color: #444;
}

.reviewer-name {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.reviewSwiper .swiper-pagination-bullet-active {
    background: var(--gold);
}

/* --- INSTAGRAM LOOKBOOK OVERLAYS --- */
.insta-item {
    height: 280px;
    position: relative;
    cursor: pointer;
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    color: var(--white);
    font-size: 1.8rem;
    transition: var(--transition);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

/* --- PRIVILEGE CLUB NEWSLETTER --- */
.newsletter-form {
    max-width: 100%;
}

.newsletter-form .form-control {
    border-radius: 0;
    padding: 12px 20px;
    font-size: 0.9rem;
    background-color: var(--white);
    border: solid 1px #e1e1e1;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    border-color: var(--gold);
}

.max-w-500 {
    max-width: 500px;
}

/* --- LUXURY FOOTER BRANDING --- */
.premium-footer {
    border-top: 2px solid var(--gold);
    line-height: 1.8;
}

.premium-footer .navbar-brand .brand-name {
    color: var(--white);
}

.footer-heading {
    font-size: 1.15rem;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 1.5px;
    background-color: var(--gold);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-social-links .social-icon {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social-links .social-icon:hover {
    background-color: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-contact-info a {
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-info a:hover {
    color: var(--gold) !important;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS CONFIGURATION
   ========================================================================== */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 70px 0;
    }

    .navbar-collapse {
        background-color: #000;
        padding: 20px;
        margin-top: 15px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        border-top: 2px solid var(--gold);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .hero-heading {
        font-size: 2.6rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .product-img-container {
        height: 280px;
    }
}

@media (max-width: 575.98px) {
    .hero-heading {
        font-size: 2.1rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        text-center: center;
    }

    .insta-item {
        height: 160px;
    }
}












/* ==========================================================================
   ABOUT PAGE SUPPLEMENTARY DESIGN SYSTEMS
   ========================================================================== */

.font-heading {
    font-family: var(--heading-font);
}

/* --- HERO BANNER & BREADCRUMB --- */
.about-hero-banner {
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.custom-breadcrumb .breadcrumb-item,
.custom-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-breadcrumb .breadcrumb-item a:hover {
    color: var(--gold);
}

.custom-breadcrumb .breadcrumb-item.active {
    color: var(--gold);
}

.custom-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* --- ABOUT BASE CONTENT LAYER --- */
.about-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 400;
    color: #444;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
}

.luxury-frame {
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 6px;
    background-color: var(--white);
    transition: var(--transition);
}

.luxury-frame:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.pointer-zoom {
    transition: var(--transition);
    height: 220px;
}

.pointer-zoom:hover {
    transform: scale(1.04);
}

.mission-vision-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    transition: var(--transition);
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06) !important;
    border-color: rgba(212, 175, 55, 0.25) !important;
}

.card-icon-box i {
    font-size: 2.2rem;
}

/* --- TIMELINE COMPONENT GRAPHICS --- */
.timeline-container {
    max-width: 900px;
    padding: 30px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgb(212, 175, 55);
    transform: translateX(-50%);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.timeline-year {
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.timeline-img-box {
    max-width: 380px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-img-box img {
    height: 180px;
    object-fit: cover;
}

/* --- ANIMATED COUNTER METRICS --- */
.counters-section {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.badge {
    top: 10px;
    left: 10px;
}

.newsletter-section .newsletter-form {
    width: 500px;
}

.tracking-2 {
    letter-spacing: 2px;
}

/* --- WHY CHOOSE US CARDS --- */
.choose-about-card {
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    transition: var(--transition);
}

.choose-about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06) !important;
    border-color: rgba(212, 175, 55, 0.2) !important;
}

.choose-icon-box i {
    font-size: 2.4rem;
}

/* --- TIMELINE RESPONSIVE FIXES --- */
@media (max-width: 767.98px) {
    .timeline-line {
        left: 20px;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-block text-md-end {
        text-align: left !important;
    }

    .timeline-block .col-md-6 {
        padding-left: 45px !important;
    }

    .timeline-img-box {
        max-width: 100%;
    }
}


.products-hero {
    height: 45vh;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.font-heading {
    font-family: var(--font-heading);
}

.text-gold {
    color: var(--gold) !important;
}

.tracking-2 {
    letter-spacing: 2px;
}

.max-w-600 {
    max-width: 600px;
}

/* ==========================================================================
   4. CONTROLS BAR (SEARCH & FILTERS)
   ========================================================================== */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.search-input-group {
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

.search-input-group .form-control {
    border: none;
    padding: 12px 15px;
    font-size: 0.9rem;
}

.search-input-group .form-control:focus {
    box-shadow: none;
}

.filter-dropdown {
    border: 1px solid #e0e0e0;
    padding: 11px 35px 11px 15px;
    font-size: 0.9rem;
    border-radius: 8px;
    background-color: #fff;
    cursor: pointer;
    min-width: 160px;
}

.filter-dropdown:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(197, 168, 128, 0.15);
}

/* ==========================================================================
   5. PRODUCT CARDS & GRID
   ========================================================================== */
.product-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #ffffff;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important;
}

.bg-gold {
    background-color: var(--gold) !important;
    border: 1px solid var(--gold);
    color: var(--white) !important;
    letter-spacing: 1px;
    font-weight: 500;
}

.product-img-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-image {
    transform: scale(1.06);
}

.product-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.btn-outline-gold {
    color: var(--gold);
    border-color: var(--gold);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

/* Load More Button Styling */
#btnLoadMore {
    border: 1px solid var(--gold);
    color: var(--primary-dark);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-radius: 0;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

#btnLoadMore:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

/* ==========================================================================
   6. PREMIUM LUXURY FOOTER
   ========================================================================== */
.premium-footer {
    background-color: var(--primary-dark) !important;
    border-top: 3px solid var(--gold);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: var(--gold);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--gold);
    color: var(--primary-dark);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-payment-badges i {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-payment-badges i:hover {
    opacity: 1;
    color: #fff;
}

/* ==========================================================================
   7. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #000;
        padding: 20px;
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .products-hero {
        height: 35vh;
    }
}

@media (max-width: 575.98px) {
    .products-hero h1 {
        font-size: 1.8rem;
    }

    .filter-dropdown {
        width: 100% !important;
    }
}


.hero-slider-container {
    height: 85vh;
    width: 100%;
    position: relative;
}

.heroSwiper {
    height: 100%;
    width: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    animation: fadeInUp 1s ease forwards;
}

.hero-text {
    font-size: 1.1rem;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   4. LUXURY BUTTONS ARCHITECTURE
   ========================================================================== */
.btn-gold-filled {
    background: var(--gold);
    color: var(--primary-dark) !important;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 14px 20px;
    border-radius: 0;
    font-weight: 600;
    border: 1px solid var(--gold);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}



.btn-outline-light-custom {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 35px;
    border-radius: 0;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.btn-outline-light-custom:hover {
    background: #ffffff;
    color: var(--primary-dark);
}

.btn-gold-line {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--primary-dark);
    padding: 12px 30px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-gold-line:hover {
    background: var(--primary-dark);
    color: #ffffff;
    border-color: var(--primary-dark);
}

.btn-whatsapp {
    background-color: #d4af37;
    color: white !important;
    border-radius: 0;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 150, 37, 0.3);
}

/* ==========================================================================
   5. WELCOME & CATEGORY CARDS DYNAMICS
   ========================================================================== */
.welcome-img-wrapper .img-accent-box {
    position: absolute;
    top: 8px;
    left: 5px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    z-index: -1;
    transition: all 0.5s ease;
}

.welcome-img-wrapper:hover .img-accent-box {
    top: 10px;
    left: -10px;
}

.category-card {
    height: 450px;
    cursor: pointer;
}

.cat-img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover .cat-img {
    transform: scale(1.06);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 15, 17, 0.85) 0%, rgba(0, 0, 0, 0) 60%);
    transition: background 0.4s;
}

.category-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s;
}

.category-card:hover .category-link {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   6. CONTROLS BAR & PRODUCT GRID ARCHITECTURE
   ========================================================================== */
.glass-panel {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(230, 230, 230, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.search-input-group input,
.filter-dropdown {
    border-radius: 0;
    border: 1px solid #e1e1e1;
    padding: 10px 15px;
    font-size: 0.9rem;
}

.search-input-group input:focus,
.filter-dropdown:focus {
    border-color: var(--gold);
    box-shadow: none;
}

.product-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.product-img-container img,
.product-img-wrapper img {
    cursor: pointer;
}

.product-image-modal .modal-dialog {
    max-width: 1100px;
    margin: 1.5rem auto;
}

.product-image-modal .modal-content {
    background: rgba(12, 12, 12, 0.96);
    border-radius: 1.25rem;
    border: none;
    overflow: hidden;
}

.product-image-modal .modal-body {
    padding: 1.5rem;
}

.product-image-modal .popupImageSwiper {
    min-height: 460px;
}

.product-image-modal .popupImageSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 1rem;
}

.product-image-modal .popup-thumbnails {
    min-height: 180px;
}

.product-image-modal .popup-thumbnail {
    width: calc(50% - 0.5rem);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.85rem;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-image-modal .popup-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-image-modal .popup-thumbnail.active {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
}

.product-image-modal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.product-image-modal .modal-title {
    font-size: 1.2rem;
    color: #ffffff;
}

.product-image-modal .btn-close {
    filter: invert(1);
}

.modal-backdrop.show {
    background-color: rgba(0, 0, 0, 0.55) !important;
}

.luxury-frame {
    border: 1px solid var(--border-color);
    padding: 8px;
    background: #ffffff;
    overflow: hidden;
}

.product-img-wrapper {
    position: relative;
    height: 320px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image {
    transform: scale(1.04);
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
}

.product-desc {
    font-size: 0.82rem;
    line-height: 1.5;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.btn-buy-now {
    background: transparent;
    border: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--gold);
    padding: 5px 0;
    position: relative;
}

.btn-buy-now::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--gold);
    transition: transform 0.3s;
    transform-origin: right;
    transform: scaleX(0);
}

.product-card:hover .btn-buy-now::after {
    transform: scaleX(1);
    transform-origin: left;
}

#btnLoadMore {
    border: 1px solid var(--primary-dark);
    border-radius: 0;
    padding: 12px 35px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: all 0.3s;
}

#btnLoadMore:hover {
    background: var(--primary-dark);
    color: #ffffff;
}

/* ==========================================================================
   7. WHY CHOOSE US (Elite 5-Column Grid Setup)
   ========================================================================== */
.why-choose-us {
    background-color: var(--primary-dark) !important;
}

@media (min-width: 992px) {
    .col-lg-2\.4 {
        flex: 0 0 auto;
        width: 20%;
    }
}

.feature-item {
    border: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(255, 255, 255, 0.01);
    transition: all 0.3s;
    height: 100%;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--border-color);
}

.feature-icon-box {
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

/* ==========================================================================
   8. CHRONOLOGICAL TIMELINE STRUCTURE
   ========================================================================== */
.timeline-container {
    max-width: 900px;
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #bfa030;
    transform: translateX(-50%);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transform: translateX(-50%);
    top: 5px;
    box-shadow: 0 0 10px var(--gold);
}

.timeline-img-box {
    max-width: 320px;
}

.timeline-img-box img {
    height: 200px;
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .timeline-line {
        left: 15px;
    }

    .timeline-dot {
        left: 15px;
    }

    .timeline-block {
        padding-left: 35px;
    }

    .text-md-end {
        text-align: left !important;
    }
}

/* ==========================================================================
   9. TESTIMONIALS & LOOKBOOK
   ========================================================================== */
.review-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.quote-icon {
    font-size: 1.8rem;
    display: block;
}

.review-text {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
}

.insta-item {
    position: relative;
    height: 300px;
    cursor: pointer;
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 17, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

/* ==========================================================================
   10. CONTACT ARCHITECTURE & PRIVILEGE FOOTER
   ========================================================================== */
.about-hero-banner {
    height: 45vh;
    background-size: cover;
    background-position: center;
}

.custom-breadcrumb .breadcrumb-item,
.custom-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-breadcrumb .breadcrumb-item.active {
    color: var(--gold);
}

.choose-about-card {
    transition: all 0.3s ease;
}

.choose-about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: rgba(212, 175, 55, 0.4) !important;
}

.choose-icon-box {
    font-size: 1.5rem;
}

.newsletter-form {
    max-width: 100%;

}

.newsletter-form input {
    border: none;
    background: transparent;
    border-radius: 0;
    padding: 12px 0;
}

.newsletter-form input:focus {
    background: transparent;
    box-shadow: none;
}

.contact-page-form .glass-panel {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-color);
}

/* --- Premium Footer --- */
.premium-footer {
    background-color: var(--primary-dark);
    border-top: 1px solid var(--border-color);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.social-icon {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
}


.navbar-toggler {
    padding: 0 !important;
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: var(--bs-navbar-color);
    background-color: #fff;
    border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);

    transition: var(--bs-navbar-toggler-transition);
}

@media (max-width:500px) {
    .welcome-img-wrapper .img-accent-box {
        position: absolute;
        top: 5px;
        left: 12px;
        width: 90%;
        height: 90%;
        border: 1px solid var(--gold);
        z-index: -1;
        transition: all 0.5s ease;
    }

    .category-card {
        height: 300px;
        cursor: pointer;
    }

    .insta-item {
        position: relative;
        height: 150px;
        cursor: pointer;
    }

    .hero-heading {
        font-family: var(--font-heading);
        font-size: 2rem;
        font-weight: 400;
        line-height: 1.1;
        animation: fadeInUp 1s ease forwards;
        margin-top: 30px;
    }
}