/* UX/UI Fix CSS - Comprehensive Layout and Spacing Fixes */

/* TICKER BAR - FIXED HEIGHT AND SCROLLING */
.ticker-bar {
    background: linear-gradient(135deg, #D4AF37 0%, #E6C866 100%) !important;
    color: #12202F !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    position: relative !important;
    height: 2rem !important;
    display: flex !important;
    align-items: center !important;
    z-index: 1001 !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.5px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.ticker-content {
    display: inline-block !important;
    padding-left: 100% !important;
    animation: ticker-scroll 25s linear infinite !important;
    white-space: nowrap !important;
    margin: 0 !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.5px !important;
    visibility: visible !important;
    opacity: 1 !important;
    line-height: 2rem !important;
    will-change: transform !important;
    text-indent: 0 !important;
    word-wrap: normal !important;
    overflow: visible !important;
    transform: translateZ(0) !important;
    backface-visibility: hidden !important;
    perspective: 1000px !important;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(100%) !important;
    }

    100% {
        transform: translateX(-100%) !important;
    }
}

/* Reset and Base Layout */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #2c3e50;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Header - Fixed */
.site-header {
    background: #12202F;
    border-bottom: 3px solid #D4AF37;
    padding: 0;
    box-shadow: 0 4px 20px rgba(18, 32, 47, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    min-height: 70px;
}

/* Mobile Navigation - FIXED */
.mobile-nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    background: #12202F;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    min-height: 60px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    margin: 0;
    flex-wrap: nowrap;
    gap: 0.5rem;
}

/* Mobile Nav Menu - FIXED */
.mobile-nav-menu {
    display: none;
    flex-direction: column;
    padding: 1.5rem;
    background: #12202F;
    gap: 1rem;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    width: 100%;
    box-sizing: border-box;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin: 0;
}

/* Mobile Nav Menu - SHOW WHEN ACTIVE */
.mobile-nav-menu.show {
    display: flex !important;
}

/* Bootstrap Collapse Override for Mobile Menu */
.collapse.show {
    display: block !important;
}

#mobileNav.show {
    display: block !important;
}

#mobileNav.collapse.show {
    display: block !important;
}

/* CRITICAL: Force mobile menu to show when active */
#mobileNav.show .mobile-nav-menu {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#mobileNav.collapse.show .mobile-nav-menu {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Additional mobile menu visibility fixes */
.mobile-nav-menu[style*="display: block"] {
    display: flex !important;
}

.mobile-nav-menu[style*="visibility: visible"] {
    display: flex !important;
}

.mobile-nav-link {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin: 0;
}

.mobile-nav-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    transform: translateX(5px);
    text-decoration: none;
}

/* Navigation Icons - Fixed */
.nav-icon {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.3rem;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    margin: 0;
    box-sizing: border-box;
    flex-shrink: 0;
}

.nav-icon:hover {
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.1);
    text-decoration: none;
}

/* Desktop Navigation - Fixed */
.main-nav {
    display: flex;
    gap: 2.5rem;
    flex: 1;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

/* Desktop Navigation Container - Fixed Height */
.container.d-none.d-lg-flex {
    min-height: 70px;
    padding: 1rem 0;
}

.nav-link {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    margin: 0;
}

.nav-link:hover {
    color: #D4AF37;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Cart Badge - Fixed */
.cart-count {
    background: #D4AF37;
    color: #12202F;
    font-weight: 700;
    font-size: 0.75rem;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #12202F;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
}

/* Bootstrap Overrides - Fixed */
.collapse {
    display: none;
}

.collapse.show {
    display: block;
}

/* Dropdown Styles - Fixed */
.dropdown-menu {
    background: #FFFFFF;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    margin: 0;
    position: absolute;
    z-index: 1000;
}

.dropdown-item {
    color: #343A40;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    margin: 0;
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #12202F;
    text-decoration: none;
}

/* Responsive Behavior - FIXED AND AGGRESSIVE */
@media (max-width: 991.98px) {

    /* Hide desktop navigation completely */
    .main-nav {
        display: none !important;
    }

    .d-none.d-lg-flex {
        display: none !important;
    }

    /* Show mobile navigation */
    .mobile-nav-bar {
        display: flex !important;
    }

    .d-lg-none {
        display: flex !important;
    }

    /* Hide mobile nav menu by default */
    .mobile-nav-menu {
        display: none !important;
    }

    /* Show mobile nav menu only when active */
    .mobile-nav-menu.show {
        display: flex !important;
    }

    /* Hide desktop container on mobile */
    .container.d-none.d-lg-flex {
        display: none !important;
    }
}

@media (min-width: 992px) {

    /* Hide mobile navigation completely */
    .mobile-nav-bar {
        display: none !important;
    }

    .d-lg-none {
        display: none !important;
    }

    /* Show desktop navigation */
    .d-none.d-lg-flex {
        display: flex !important;
    }

    .main-nav {
        display: flex !important;
    }

    /* Hide mobile nav menu on desktop */
    .mobile-nav-menu {
        display: none !important;
    }

    /* Show desktop container */
    .container.d-none.d-lg-flex {
        display: flex !important;
    }
}

/* Container Styles - Fixed */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

/* Navbar Brand - Fixed */
.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

.navbar-brand img {
    height: 44px;
    width: auto;
    margin: 0;
    max-width: 200px;
}

/* Nav Icons Container - Fixed */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

/* Mobile Logo - Fixed */
.mobile-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.mobile-logo img {
    height: 28px;
    width: auto;
    margin: 0;
}

/* Dropdown Toggle - Fixed */
.dropdown-toggle::after {
    display: none;
}

/* Position Utilities - Fixed */
.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.top-0 {
    top: 0;
}

.start-100 {
    left: 100%;
}

.translate-middle {
    transform: translate(-50%, -50%);
}

/* Badge Styles - Fixed */
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 50%;
    padding: 0.25rem 0.5rem;
    margin: 0;
}

.rounded-pill {
    border-radius: 50rem;
}

/* Visibility Utilities - Fixed */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Dropdown Divider - Fixed */
.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Main Content - FIXED (No unwanted spacing) */
.main-content {
    flex: 1 0 auto;
    padding: 0;
    /* Removed padding to eliminate space between nav and hero */
    width: 100%;
    box-sizing: border-box;
}

/* Footer - Fixed and Elegant */
.site-footer {
    background: linear-gradient(135deg, #12202F 0%, #1A2F42 100%);
    color: #FFFFFF;
    padding: 3rem 0 1.5rem 0;
    margin-top: auto;
    width: 100%;
    flex-shrink: 0;
    border-top: 3px solid #D4AF37;
}

/* Footer Brand - Reduced Logo Size */
.footer-brand img {
    height: 32px !important;
    width: auto;
    margin-bottom: 1rem !important;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

/* Footer Section Titles - More Elegant */
.footer-section-title {
    color: #D4AF37;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #D4AF37;
    border-radius: 1px;
}

/* Footer Links - More Elegant */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    padding: 0.25rem 0;
    border-radius: 4px;
}

.footer-links a:hover {
    color: #D4AF37;
    transform: translateX(5px);
    background: rgba(212, 175, 55, 0.1);
    padding-left: 0.5rem;
}

.footer-links i {
    color: #D4AF37;
    width: 16px;
    text-align: center;
}

/* Social Links - More Elegant */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-link:hover {
    background: #D4AF37;
    color: #12202F;
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Contact Info - More Elegant */
.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: #D4AF37;
    width: 16px;
    text-align: center;
}

/* Footer Divider - More Elegant */
.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    margin: 2rem 0 1.5rem 0;
}

/* Footer Bottom - More Elegant */
.footer-bottom {
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: #D4AF37;
    text-decoration: none;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

/* Spacing Fixes */
.row {
    margin: 0;
    padding: 0;
}

.col,
.col-md-6,
.col-lg-4,
.col-lg-3 {
    padding: 0.5rem;
    margin: 0;
}

/* Card Spacing Fixes */
.card {
    margin-bottom: 1rem;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.card-body {
    padding: 1.5rem;
}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Button Spacing Fixes */
.btn {
    margin: 0.25rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Form Spacing Fixes */
.form-control {
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.form-label {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Alert Spacing Fixes */
.alert {
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 6px;
    border: none;
}

/* Modal Spacing Fixes */
.modal-content {
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #dee2e6;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #dee2e6;
}

/* Product Grid Fixes */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

.product-card {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Image Fixes */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Text Spacing Fixes */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 1rem;
    margin-top: 0;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* List Spacing Fixes */
ul,
ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Table Spacing Fixes */
.table {
    margin-bottom: 1rem;
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: middle;
}

/* Navigation Spacing Fixes */
.navbar {
    padding: 0;
    margin: 0;
}

.navbar-nav {
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0;
    padding: 0;
}

/* Footer Spacing Fixes */
.footer-content {
    margin-bottom: 2rem;
}

.footer-section-title {
    color: #D4AF37;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.footer-links a:hover {
    color: #D4AF37;
    transform: translateX(5px);
}

/* Social Links Fixes */
.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-decoration: none;
}

.social-link:hover {
    background: #D4AF37;
    color: #12202F;
    transform: scale(1.1);
}

/* WhatsApp Float Fixes */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    color: #FFFFFF;
}

/* Utility Classes */
.text-gold {
    color: #D4AF37;
}

.bg-gold {
    background-color: #D4AF37;
}

.border-gold {
    border-color: #D4AF37;
}

/* Mobile Specific Fixes */
@media (max-width: 767.98px) {
    .ticker-bar {
        height: 1.8rem !important;
        font-size: 0.8rem !important;
    }

    /* Mobile Banner Image Positioning */
    .flex-column-reverse .col-md-6:first-child {
        order: 2 !important;
    }

    .flex-column-reverse .col-md-6:last-child {
        order: 1 !important;
    }

    /* Ensure wallet banner image appears above heading on mobile */
    .row.align-items-center.mb-5.flex-md-row.flex-column-reverse .col-md-6:first-child {
        order: 2 !important;
    }

    .row.align-items-center.mb-5.flex-md-row.flex-column-reverse .col-md-6:last-child {
        order: 1 !important;
    }

    /* Mobile Text Color Fixes */
    @media (max-width: 767.98px) {

        /* Ensure hero text is white on mobile */
        .hero-section h1.display-2 {
            color: #fff !important;
        }

        /* Ensure jacket heading is white on mobile */
        .jacket-banner-section h1.display-2 {
            color: #fff !important;
        }

        /* Ensure jacket text is white on mobile */
        .jacket-banner-section .lead {
            color: #f8f9fa !important;
        }
    }

    /* Elegant Jacket Button Styling */
    .jacket-btn {
        background: #D5AF34 !important;
        color: #13202E !important;
        font-family: 'Inter', sans-serif !important;
        box-shadow: 0 4px 20px rgba(213, 175, 52, 0.3) !important;
        border-radius: 12px !important;
        border: none !important;
        transition: all 0.3s ease !important;
        font-size: 1.1rem !important;
        letter-spacing: 0.5px !important;
        min-width: 180px !important;
        text-transform: uppercase !important;
        font-weight: 700 !important;
        padding: 1rem 2rem !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .jacket-btn:hover {
        background: #E6C866 !important;
        color: #13202E !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 30px rgba(213, 175, 52, 0.4) !important;
        text-decoration: none !important;
    }

    .jacket-btn:active {
        transform: translateY(0) !important;
        box-shadow: 0 4px 20px rgba(213, 175, 52, 0.3) !important;
    }

    /* Mobile Responsive Button */
    @media (max-width: 767.98px) {
        .jacket-btn {
            font-size: 1rem !important;
            padding: 0.875rem 1.5rem !important;
            min-width: 160px !important;
            letter-spacing: 0.3px !important;
        }
    }

    @media (max-width: 575.98px) {
        .jacket-btn {
            font-size: 0.95rem !important;
            padding: 0.75rem 1.25rem !important;
            min-width: 140px !important;
        }
    }

    .site-header {
        padding: 0;
    }

    .mobile-nav-bar {
        padding: 0.4rem 1rem;
        min-height: 45px;
    }

    .nav-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    .mobile-logo img {
        height: 24px;
    }

    /* Mobile Footer - Elegant Redesign */
    .footer-content {
        text-align: center;
    }

    /* Logo center alignment on mobile */
    .footer-brand {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-logo {
        display: block;
        margin: 0 auto 1rem auto;
    }

    .footer-description {
        text-align: center;
        max-width: 280px;
        margin: 0 auto;
        color: #ffffff !important;
        /* Pure white for mobile view */
    }

    /* Override desktop styles with higher specificity for mobile */
    @media (max-width: 768px) {

        .site-footer .footer-description,
        .footer .footer-description,
        .site-footer p.footer-description {
            color: #ffffff !important;
            /* Pure white for mobile view */
        }

        .site-footer .contact-info p,
        .footer .contact-info p,
        .site-footer .contact-info p {
            color: #ffffff !important;
            /* Pure white for mobile view */
        }
    }

    /* Shop and Customer Service side by side */
    .footer-section-title {
        text-align: left;
        font-size: 1rem;
        margin-bottom: 1rem;
        color: #D4AF37 !important;
        /* Match web view gold color for headings */
    }

    /* Remove underline from section titles on mobile */
    .footer-section-title::after {
        display: none;
    }

    .footer-links {
        text-align: left;
    }

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        justify-content: flex-start;
        font-size: 0.85rem;
        padding: 0.25rem 0;
        color: rgba(255, 255, 255, 0.8) !important;
        /* Match web view exactly */
    }

    .footer-links a:hover {
        transform: translateY(-2px);
        padding-left: 0.25rem;
        color: #D4AF37 !important;
        /* Match web view gold color on hover */
    }

    .footer-links i {
        color: #D4AF37 !important;
        /* Match web view gold color for icons */
    }

    .footer-links a:hover i {
        color: #D4AF37 !important;
        /* Match web view gold color on hover */
    }

    /* Connect With Us section center aligned */
    .social-links {
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .social-link {
        color: #D4AF37 !important;
        /* Match web view gold color */
        background: rgba(212, 175, 55, 0.1) !important;
        /* Match web view background */
    }

    .social-link:hover {
        color: #12202F !important;
        /* Match web view dark blue on hover */
        background: #D4AF37 !important;
        /* Match web view gold background on hover */
    }

    .contact-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Center align "Connect With Us" heading specifically */
    .col-lg-3:last-child .footer-section-title {
        text-align: center !important;
    }

    .contact-info p {
        justify-content: center;
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
        text-align: center;
        width: 100%;
        color: #ffffff !important;
        /* Pure white for mobile view */
    }

    .contact-info i {
        color: #D4AF37 !important;
        /* Match web view gold color for icons */
    }

    /* Enhanced mobile footer spacing and typography */
    .site-footer {
        padding: 2.5rem 0 1rem 0;
    }

    .footer-content {
        gap: 2rem;
    }

    /* Improved social links spacing on mobile */
    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    /* Better spacing for footer sections */
    .col-6 {
        padding: 0 0.5rem;
    }

    /* Footer bottom improvements */
    .footer-bottom {
        margin-top: 1.5rem;
    }

    .footer-bottom .copyright {
        color: rgba(255, 255, 255, 0.7) !important;
        /* Match web view exactly */
    }

    .footer-legal {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-legal .footer-link {
        color: rgba(255, 255, 255, 0.7) !important;
        /* Match web view exactly */
    }

    .footer-legal .footer-link:hover {
        color: #D4AF37 !important;
        /* Match web view gold color on hover */
    }

    /* Enhanced mobile footer divider */
    .footer-divider {
        margin: 1.5rem 0 1rem 0;
    }

    /* ===== ENHANCED PAGE STYLING ===== */
    /* Contact Us, Shipping & Returns, FAQ, Privacy Policy, Terms of Service */

    /* Page Headers - Black, Bold */
    .page-header h1,
    .page-header h2,
    .page-header h3,
    .page-header h4,
    .page-header h5,
    .page-header h6 {
        color: #000000 !important;
        font-weight: 700 !important;
        font-family: 'Playfair Display', serif !important;
    }

    /* Main Page Titles */
    .display-5,
    .display-6,
    h1,
    h2 {
        color: #000000 !important;
        font-weight: 700 !important;
        font-family: 'Playfair Display', serif !important;
    }

    /* Section Headers */
    .h3,
    .h4,
    .h5,
    h3,
    h4,
    h5 {
        color: #000000 !important;
        font-weight: 700 !important;
        font-family: 'Playfair Display', serif !important;
        margin-bottom: 1rem !important;
    }

    /* Body Text - Dark Gray for better readability */
    p,
    .lead,
    .text-muted,
    small,
    .accordion-body,
    .card-body p,
    ul li,
    ol li {
        color: #333333 !important;
        font-weight: 400 !important;
        font-family: 'Inter', sans-serif !important;
        line-height: 1.6 !important;
    }

    /* Form Labels */
    .form-label {
        color: #000000 !important;
        font-weight: 600 !important;
        font-family: 'Inter', sans-serif !important;
    }

    /* Ensure all text elements have proper contrast */
    .text-white {
        color: #ffffff !important;
    }

    .text-dark {
        color: #000000 !important;
    }

    .text-muted {
        color: #6c757d !important;
    }

    /* Override any white text on white background */
    .card-body,
    .accordion-body,
    .shipping-section,
    .legal-section {
        color: #000000 !important;
    }

    .card-body p,
    .accordion-body p,
    .shipping-section p,
    .legal-section p {
        color: #000000 !important;
    }

    .legal-section h2,
    .legal-section h3,
    .legal-section h4,
    .legal-section h5 {
        color: #000000 !important;
        font-family: 'Playfair Display', serif !important;
        font-weight: 700 !important;
    }

    .legal-section ul,
    .legal-section ol,
    .legal-section li {
        color: #000000 !important;
    }

    .legal-section .enhanced-list,
    .legal-section .enhanced-list li {
        color: #000000 !important;
    }

    /* Fix page-header text color - ensure it's dark on white background */
    .page-header {
        color: #12202F !important;
    }

    /* Fix Our Story page body text - ensure dark color on white background */
    section.container .lead,
    section.container p {
        color: #333333 !important;
    }

    section.container h2,
    section.container h3,
    section.container h4,
    section.container h5 {
        color: #12202F !important;
    }

    /* Fix checkout page COD and payment instruction text */
    .payment-instruction,
    .payment-instruction p {
        color: #374151 !important;
    }

    .payment-option-text,
    .payment-option-text strong {
        color: #111827 !important;
    }

    /* Ensure all text in payment details sections is visible */
    .payment-details,
    .payment-details p,
    .payment-details strong {
        color: #374151 !important;
    }

    .bank-detail-item,
    .bank-detail-item strong {
        color: #1e293b !important;
    }

    .payment-reference,
    .payment-reference p,
    .payment-reference strong {
        color: #92400e !important;
    }

    /* Fix enhanced-list items to ensure dark text */
    .enhanced-list,
    .enhanced-list li {
        color: #333333 !important;
    }

    /* Fix list-unstyled items */
    .list-unstyled,
    .list-unstyled li {
        color: #333333 !important;
    }

    /* Ensure all text in shipping section is visible */
    .shipping-section h2,
    .shipping-section h3,
    .shipping-section h4 {
        color: #12202F !important;
    }

    .shipping-section ul,
    .shipping-section ol,
    .shipping-section li {
        color: #333333 !important;
    }

    .shipping-section p {
        color: #333333 !important;
    }

    /* Fix contact page text colors */
    .contact-form h2,
    .contact-form h3 {
        color: #12202F !important;
    }

    .contact-info-card h3,
    .contact-info-card h5 {
        color: #12202F !important;
        font-family: 'Playfair Display', serif !important;
        font-weight: 700 !important;
    }

    .contact-info-card p {
        color: #12202F !important;
        font-weight: 600 !important;
    }

    .contact-info-card small {
        color: #6c757d !important;
    }

    /* Why Choose Regal Section - Dark Background */
    .card[style*="background: linear-gradient(135deg, #12202F"],
    .card[style*="background: linear-gradient(135deg, #1a223a"] {
        color: #ffffff !important;
    }

    .card[style*="background: linear-gradient(135deg, #12202F"] h3,
    .card[style*="background: linear-gradient(135deg, #12202F"] h4,
    .card[style*="background: linear-gradient(135deg, #12202F"] h5,
    .card[style*="background: linear-gradient(135deg, #1a223a"] h3,
    .card[style*="background: linear-gradient(135deg, #1a223a"] h4,
    .card[style*="background: linear-gradient(135deg, #1a223a"] h5 {
        color: #ffffff !important;
    }

    .card[style*="background: linear-gradient(135deg, #12202F"] p,
    .card[style*="background: linear-gradient(135deg, #1a223a"] p {
        color: #e9ecef !important;
    }

    /* Ensure Our Story page text is visible */
    section.container h2,
    section.container h3,
    section.container h4,
    section.container h5 {
        color: #12202F !important;
    }

    section.container .lead,
    section.container p {
        color: #333333 !important;
    }

    /* Account/Profile Pages - Fix white text on white background */
    .container .card {
        background: #ffffff !important;
        color: #12202F !important;
    }

    .container .card .card-title,
    .container .card h5,
    .container .card h4,
    .container .card h3 {
        color: #12202F !important;
        font-family: 'Playfair Display', serif !important;
        font-weight: 700 !important;
    }

    .container .card .card-body {
        color: #12202F !important;
    }

    .container .card .card-body p {
        color: #12202F !important;
    }

    .container .card .card-body strong {
        color: #12202F !important;
    }

    .container .card .card-body a {
        color: #12202F !important;
    }

    .container .card .card-body a:hover {
        color: #D4AF37 !important;
    }

    .container .card .list-unstyled li {
        color: #12202F !important;
    }

    .container .card .list-unstyled li a {
        color: #12202F !important;
    }

    .container .card .list-unstyled li a:hover {
        color: #D4AF37 !important;
    }

    /* Specific fixes for Contact Us page */
    .contact-info-card .card-body {
        color: #333333 !important;
    }

    .contact-info-card .card-body p,
    .contact-info-card .card-body small {
        color: #333333 !important;
    }

    /* Ensure proper contrast for all text elements */
    .container p,
    .container li,
    .container small,
    .container .lead {
        color: #333333 !important;
    }

    /* Dark background sections should have white text */
    .card[style*="background: linear-gradient(135deg, #1a223a"],
    .card[style*="background: linear-gradient(135deg, #1a223a 0%, #2a3441 100%)"] {
        color: #ffffff !important;
    }

    .card[style*="background: linear-gradient(135deg, #1a223a"] p,
    .card[style*="background: linear-gradient(135deg, #1a223a"] h3,
    .card[style*="background: linear-gradient(135deg, #1a223a"] h4,
    .card[style*="background: linear-gradient(135deg, #1a223a"] h5 {
        color: #ffffff !important;
    }

    /* Comprehensive text color fixes for all pages */
    /* Ensure all regular text is dark and readable */
    .py-5 p,
    .py-5 li,
    .py-5 small,
    .py-5 .lead {
        color: #333333 !important;
    }

    /* Headings should be black with brand fonts */
    .py-5 h1,
    .py-5 h2,
    .py-5 h3,
    .py-5 h4,
    .py-5 h5,
    .py-5 h6 {
        color: #000000 !important;
        font-family: 'Playfair Display', serif !important;
        font-weight: 700 !important;
    }

    /* Specific page fixes */
    /* Contact Us page */
    .contact-form .form-control {
        color: #333333 !important;
    }

    /* FAQ page */
    .faq-accordion .accordion-body {
        color: #333333 !important;
    }

    .faq-accordion .accordion-body p,
    .faq-accordion .accordion-body li {
        color: #333333 !important;
    }

    /* Shipping & Returns page */
    .shipping-section p,
    .shipping-section li {
        color: #333333 !important;
    }

    /* Privacy & Terms pages */
    .legal-section p,
    .legal-section li {
        color: #333333 !important;
    }

    /* Hero Banner Text - Ensure White Color */
    /* Wallets, Belts, Jackets, Contact pages hero banners */
    section[style*="background: url"] .text-white,
    section[style*="background: url"] h2,
    section[style*="background: url"] p,
    section[style*="background: url"] .lead,
    section[style*="background: url"] .display-6 {
        color: #ffffff !important;
    }

    /* Specific hero banner text overrides */
    .position-relative.mb-5 .text-white,
    .position-relative.mb-5 h2,
    .position-relative.mb-5 p,
    .position-relative.mb-5 .lead,
    .position-relative.mb-5 .display-6 {
        color: #ffffff !important;
    }

    /* Ensure hero banner text is always white */
    section[style*="craftsmanship-banner.jpg"] .text-white,
    section[style*="craftsmanship-banner.jpg"] h2,
    section[style*="craftsmanship-banner.jpg"] p,
    section[style*="craftsmanship-banner.jpg"] .lead,
    section[style*="craftsmanship-banner.jpg"] .display-6 {
        color: #ffffff !important;
    }

    /* Force white text on all hero banner elements - More specific */
    .position-relative.mb-5 .container .text-white,
    .position-relative.mb-5 .container h2,
    .position-relative.mb-5 .container p,
    .position-relative.mb-5 .container .lead,
    .position-relative.mb-5 .container .display-6,
    .position-relative.mb-5 .container .fw-bold {
        color: #ffffff !important;
    }

    /* Override any inline styles that might be setting dark colors */
    .position-relative.mb-5 .container * {
        color: #ffffff !important;
    }

    /* Specific targeting for hero banner text elements */
    .position-relative.mb-5 .container .display-6.fw-bold,
    .position-relative.mb-5 .container .lead,
    .position-relative.mb-5 .container h2.display-6,
    .position-relative.mb-5 .container p.lead {
        color: #ffffff !important;
    }

    /* Force white color on all text within hero banner sections */
    section.position-relative.mb-5 .container .text-white,
    section.position-relative.mb-5 .container h2,
    section.position-relative.mb-5 .container p,
    section.position-relative.mb-5 .container .lead,
    section.position-relative.mb-5 .container .display-6,
    section.position-relative.mb-5 .container .fw-bold,
    section.position-relative.mb-5 .container span,
    section.position-relative.mb-5 .container div {
        color: #ffffff !important;
    }

    /* Enhanced Hero Banner Text Styling - Elegant and Centered */
    section.position-relative.mb-5 .container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        min-height: 260px !important;
        padding: 3rem 1rem !important;
    }

    /* Hero Banner Headings - Elegant Typography */
    section.position-relative.mb-5 .container h2.display-6 {
        font-family: 'Playfair Display', serif !important;
        font-size: 2.5rem !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5) !important;
        letter-spacing: -0.5px !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
    }

    /* Hero Banner Paragraphs - Elegant Typography */
    section.position-relative.mb-5 .container p.lead {
        font-family: 'Inter', sans-serif !important;
        font-size: 1.1rem !important;
        font-weight: 400 !important;
        color: #f8f9fa !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
        line-height: 1.6 !important;
        margin-bottom: 0 !important;
        max-width: 600px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Mobile Responsive Hero Banner Text */
    @media (max-width: 768px) {
        section.position-relative.mb-5 .container {
            padding: 2rem 1rem !important;
            min-height: 200px !important;
        }

        section.position-relative.mb-5 .container h2.display-6 {
            font-size: 2rem !important;
            margin-bottom: 0.75rem !important;
        }

        section.position-relative.mb-5 .container p.lead {
            font-size: 1rem !important;
            padding: 0 1rem !important;
        }
    }

    @media (max-width: 576px) {
        section.position-relative.mb-5 .container {
            padding: 1.5rem 1rem !important;
            min-height: 180px !important;
        }

        section.position-relative.mb-5 .container h2.display-6 {
            font-size: 1.75rem !important;
            margin-bottom: 0.5rem !important;
        }

        section.position-relative.mb-5 .container p.lead {
            font-size: 0.95rem !important;
        }
    }

    /* Maximum specificity override for hero banner text */
    section.position-relative.mb-5 .container .text-white,
    section.position-relative.mb-5 .container h2.display-6.fw-bold,
    section.position-relative.mb-5 .container p.lead,
    section.position-relative.mb-5 .container .display-6,
    section.position-relative.mb-5 .container .lead {
        color: #ffffff !important;
        color: #ffffff !important;
        color: #ffffff !important;
    }

    /* Override any potential conflicting styles with maximum specificity */
    body section.position-relative.mb-5 .container .text-white,
    body section.position-relative.mb-5 .container h2,
    body section.position-relative.mb-5 .container p,
    body section.position-relative.mb-5 .container .lead,
    body section.position-relative.mb-5 .container .display-6,
    body section.position-relative.mb-5 .container .fw-bold {
        color: #ffffff !important;
    }

    /* Force white color with !important and multiple declarations */
    .position-relative.mb-5 .container h2[style*="font-family"],
    .position-relative.mb-5 .container p[style*="font-family"] {
        color: #ffffff !important;
        color: #ffffff !important;
    }

    /* Accordion Headers */
    .accordion-button {
        color: #000000 !important;
        font-weight: 700 !important;
        font-family: 'Playfair Display', serif !important;
        background-color: #f8f9fa !important;
        border: 1px solid #dee2e6 !important;
    }

    .accordion-button:not(.collapsed) {
        color: #000000 !important;
        background-color: #e9ecef !important;
        box-shadow: none !important;
    }

    .accordion-button:focus {
        box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.1) !important;
        border-color: #000000 !important;
    }

    /* Card Headers */
    .card-header {
        background-color: #f8f9fa !important;
        border-bottom: 2px solid #000000 !important;
    }

    .card-header h3,
    .card-header h4,
    .card-header h5 {
        color: #000000 !important;
        font-weight: 700 !important;
        margin: 0 !important;
    }

    /* Contact Form Enhancements */
    .contact-form .form-control {
        border: 2px solid #e9ecef !important;
        border-radius: 8px !important;
        padding: 12px !important;
        color: #000000 !important;
        font-family: 'Inter', sans-serif !important;
    }

    .contact-form .form-control:focus {
        border-color: #000000 !important;
        box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1) !important;
    }

    /* Contact Info Cards */
    .contact-info-card {
        background: white !important;
        border: 2px solid #e9ecef !important;
        border-radius: 16px !important;
        transition: all 0.3s ease !important;
    }

    .contact-info-card:hover {
        border-color: #000000 !important;
        transform: translateY(-5px) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    }

    .contact-info-card h3,
    .contact-info-card h4,
    .contact-info-card h5 {
        color: #000000 !important;
        font-weight: 700 !important;
    }

    .contact-info-card p {
        color: #333333 !important;
        font-weight: 400 !important;
    }

    /* FAQ Accordion Enhancements */
    .faq-accordion .accordion-item {
        border: 1px solid #dee2e6 !important;
        border-radius: 8px !important;
        margin-bottom: 1rem !important;
        overflow: hidden !important;
    }

    .faq-accordion .accordion-button {
        padding: 1.25rem !important;
        font-size: 1.1rem !important;
    }

    .faq-accordion .accordion-body {
        padding: 1.5rem !important;
        background-color: #f8f9fa !important;
    }

    /* Shipping & Returns Enhancements */
    .shipping-section {
        background: white !important;
        padding: 2rem !important;
        border-radius: 16px !important;
        border: 2px solid #e9ecef !important;
        margin-bottom: 2rem !important;
    }

    .shipping-section h2,
    .shipping-section h3,
    .shipping-section h4 {
        color: #000000 !important;
        font-weight: 700 !important;
        border-bottom: 2px solid #000000 !important;
        padding-bottom: 0.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    /* Privacy & Terms Enhancements */
    .legal-section {
        background: white !important;
        padding: 2rem !important;
        border-radius: 16px !important;
        border: 2px solid #e9ecef !important;
        margin-bottom: 2rem !important;
    }

    .legal-section h2,
    .legal-section h3,
    .legal-section h4 {
        color: #000000 !important;
        font-weight: 700 !important;
        border-bottom: 2px solid #000000 !important;
        padding-bottom: 0.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    /* List Enhancements */
    .enhanced-list {
        list-style: none !important;
        padding-left: 0 !important;
    }

    .enhanced-list li {
        color: #333333 !important;
        font-weight: 400 !important;
        padding: 0.5rem 0 !important;
        border-bottom: 1px solid #e9ecef !important;
    }

    .enhanced-list li:last-child {
        border-bottom: none !important;
    }

    /* Button Enhancements */
    .enhanced-btn {
        background: #000000 !important;
        color: white !important;
        border: 2px solid #000000 !important;
        font-weight: 600 !important;
        padding: 0.75rem 2rem !important;
        border-radius: 8px !important;
        transition: all 0.3s ease !important;
    }

    .enhanced-btn:hover {
        background: white !important;
        color: #000000 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    }

    /* Mobile Responsive Enhancements */
    @media (max-width: 768px) {

        .page-header h1,
        .display-5,
        .display-6 {
            font-size: 2rem !important;
            text-align: center !important;
        }

        .shipping-section,
        .legal-section {
            padding: 1.5rem !important;
            margin-bottom: 1.5rem !important;
        }

        .faq-accordion .accordion-button {
            padding: 1rem !important;
            font-size: 1rem !important;
        }

        .contact-info-card {
            margin-bottom: 1.5rem !important;
        }
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    .card-body {
        padding: 1rem;
    }

    .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}

/* Navigation Element Control - ADDITIONAL FIXES */
/* Ensure proper hiding/showing of navigation elements */
.mobile-nav-bar {
    display: none;
    /* Default state */
}

.d-lg-none {
    display: none;
    /* Default state */
}

.d-none.d-lg-flex {
    display: none;
    /* Default state */
}

.main-nav {
    display: none;
    /* Default state */
}

/* Force proper responsive behavior */
@media (max-width: 991.98px) {
    .mobile-nav-bar {
        display: flex !important;
    }

    .d-lg-none {
        display: flex !important;
    }

    .d-none.d-lg-flex {
        display: none !important;
    }

    .main-nav {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .mobile-nav-bar {
        display: none !important;
    }

    .d-lg-none {
        display: none !important;
    }

    .d-none.d-lg-flex {
        display: flex !important;
    }

    .main-nav {
        display: flex !important;
    }
}

/* ===== HOME PAGE FEATURED PRODUCTS FIXES ===== */

/* Desktop Horizontal Layout for Featured Products */
@media (min-width: 992px) {
    .featured-products-section .row.g-4.d-none.d-lg-flex {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 1.5rem !important;
        padding: 1rem 0 !important;
        margin: 0 !important;
    }

    .featured-products-section .col-lg-3.col-md-6 {
        flex: 0 0 auto !important;
        width: 280px !important;
        max-width: 280px !important;
        scroll-snap-align: start !important;
    }

    /* Elegant Product Card Sizing */
    .featured-products-section .product-card {
        width: 100% !important;
        max-width: 280px !important;
        height: 420px !important;
        margin: 0 !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s ease !important;
    }

    .featured-products-section .product-card:hover {
        transform: translateY(-8px) !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
    }

    /* Product Image Container */
    .featured-products-section .product-image-container {
        height: 200px !important;
        width: 100% !important;
        border-radius: 12px 12px 0 0 !important;
        overflow: hidden !important;
    }

    /* Product Info Section */
    .featured-products-section .product-info {
        padding: 1.25rem !important;
        height: 220px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }

    /* Product Title */
    .featured-products-section .product-title {
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        color: #13202E !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.3 !important;
        height: 2.6rem !important;
        overflow: hidden !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }

    /* Price Display Fix - Ensure Proper Visibility */
    .featured-products-section .product-price {
        text-align: center !important;
        margin-bottom: 0.75rem !important;
        min-height: 2rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.25rem !important;
    }

    .featured-products-section .product-price span {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
    }

    .featured-products-section .product-price span:first-child {
        font-size: 1.2rem !important;
        font-weight: 700 !important;
        color: #D5AF34 !important;
        line-height: 1.2 !important;
    }

    .featured-products-section .product-price span:last-child {
        font-size: 0.9rem !important;
        color: #888 !important;
        text-decoration: line-through !important;
        line-height: 1.2 !important;
    }

    /* Colors/Sizes Display */
    .featured-products-section .product-colors,
    .featured-products-section .product-sizes {
        display: flex !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        margin-bottom: 0.75rem !important;
        min-height: 1.5rem !important;
    }

    /* View Details Button */
    .featured-products-section .btn {
        width: 100% !important;
        padding: 0.75rem 1rem !important;
        font-weight: 600 !important;
        border-radius: 8px !important;
        background: #13202E !important;
        color: white !important;
        border: none !important;
        transition: all 0.3s ease !important;
        margin-top: auto !important;
    }

    .featured-products-section .btn:hover {
        background: #D5AF34 !important;
        color: #13202E !important;
        transform: translateY(-2px) !important;
    }
}

/* ===== MOBILE HORIZONTAL SCROLLING FIXES ===== */

/* Mobile Featured Products Horizontal Layout */
@media (max-width: 991.98px) {
    .featured-products-mobile {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 1rem !important;
        padding: 0.5rem 0 !important;
        margin: 0 -0.5rem !important;
        scrollbar-width: none !important;
        /* Firefox */
        -ms-overflow-style: none !important;
        /* IE and Edge */
    }

    .featured-products-mobile::-webkit-scrollbar {
        display: none !important;
        /* Chrome, Safari, Opera */
    }

    .mobile-product-card {
        flex: 0 0 auto !important;
        width: 200px !important;
        max-width: 200px !important;
        scroll-snap-align: start !important;
        margin-right: 0 !important;
    }

    /* Mobile Product Card Styling */
    .mobile-product-card .product-card {
        width: 100% !important;
        height: 320px !important;
        border-radius: 10px !important;
        overflow: hidden !important;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s ease !important;
    }

    .mobile-product-card .product-card:hover {
        transform: translateY(-4px) !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
    }

    /* Mobile Product Image */
    .mobile-product-card .product-image-container {
        height: 140px !important;
        width: 100% !important;
        border-radius: 10px 10px 0 0 !important;
        overflow: hidden !important;
    }

    /* Mobile Product Info */
    .mobile-product-card .product-info {
        padding: 0.75rem !important;
        height: 180px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }

    /* Mobile Product Title */
    .mobile-product-card .product-title {
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        color: #13202E !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
        height: 2.4rem !important;
        overflow: hidden !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }

    /* Mobile Price Display */
    .mobile-product-card .product-price {
        text-align: center !important;
        margin-bottom: 0.5rem !important;
        min-height: 1.5rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.2rem !important;
    }

    .mobile-product-card .product-price span:first-child {
        font-size: 1rem !important;
        font-weight: 700 !important;
        color: #D5AF34 !important;
        line-height: 1.2 !important;
    }

    .mobile-product-card .product-price span:last-child {
        font-size: 0.8rem !important;
        color: #888 !important;
        text-decoration: line-through !important;
        line-height: 1.2 !important;
    }

    /* Mobile Colors/Sizes */
    .mobile-product-card .product-colors,
    .mobile-product-card .product-sizes {
        display: flex !important;
        justify-content: center !important;
        gap: 0.3rem !important;
        margin-bottom: 0.5rem !important;
        min-height: 1.2rem !important;
    }

    /* Mobile Button */
    .mobile-product-card .btn {
        width: 100% !important;
        padding: 0.5rem 0.75rem !important;
        font-size: 0.8rem !important;
        font-weight: 600 !important;
        border-radius: 6px !important;
        background: #13202E !important;
        color: white !important;
        border: none !important;
        transition: all 0.3s ease !important;
        margin-top: auto !important;
    }

    .mobile-product-card .btn:hover {
        background: #D5AF34 !important;
        color: #13202E !important;
    }
}

/* ===== TESTIMONIALS SECTION FIXES ===== */

/* Desktop Testimonials Grid */
@media (min-width: 992px) {
    .testimonials-section .row.g-4.justify-content-center.d-none.d-lg-flex {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 2rem !important;
        margin: 0 !important;
    }

    .testimonials-section .col-lg-4.col-md-6 {
        flex: 0 0 calc(33.333% - 1.33rem) !important;
        max-width: calc(33.333% - 1.33rem) !important;
        margin-bottom: 2rem !important;
    }

    .testimonial-card {
        height: 320px !important;
        padding: 2rem !important;
        border-radius: 16px !important;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s ease !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }

    .testimonial-card:hover {
        transform: translateY(-5px) !important;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15) !important;
    }

    .testimonial-card blockquote {
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
        color: #444 !important;
        margin-bottom: 1.5rem !important;
        flex-grow: 1 !important;
    }

    .testimonial-card footer {
        text-align: center !important;
    }

    .testimonial-card footer span:first-child {
        color: #D4AF37 !important;
        font-weight: 700 !important;
        font-size: 1.1rem !important;
        font-family: 'Playfair Display', serif !important;
        display: block !important;
        margin-bottom: 0.25rem !important;
    }

    .testimonial-card footer span:last-child {
        color: #888 !important;
        font-size: 0.9rem !important;
        display: block !important;
    }
}

/* Desktop Testimonials Horizontal Layout */
@media (min-width: 992px) {
    .testimonials-section .row.g-4.justify-content-center.d-none.d-lg-flex {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 1.5rem !important;
        padding: 0.5rem 0 !important;
        margin: 0 -0.5rem !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        flex-wrap: nowrap !important;
    }

    .testimonials-section .row.g-4.justify-content-center.d-none.d-lg-flex::-webkit-scrollbar {
        display: none !important;
    }

    .testimonials-section .row.g-4.justify-content-center.d-none.d-lg-flex .col-lg-4 {
        flex: 0 0 auto !important;
        width: 350px !important;
        max-width: 350px !important;
        scroll-snap-align: start !important;
        margin-right: 0 !important;
    }

    .testimonials-section .row.g-4.justify-content-center.d-none.d-lg-flex .testimonial-card {
        height: 320px !important;
        padding: 2rem !important;
        border-radius: 16px !important;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s ease !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }

    .testimonials-section .row.g-4.justify-content-center.d-none.d-lg-flex .testimonial-card:hover {
        transform: translateY(-5px) !important;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15) !important;
    }

    .testimonials-section .row.g-4.justify-content-center.d-none.d-lg-flex .testimonial-card blockquote {
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
        color: #444 !important;
        margin-bottom: 1.5rem !important;
        flex-grow: 1 !important;
    }

    .testimonials-section .row.g-4.justify-content-center.d-none.d-lg-flex .testimonial-card footer {
        text-align: center !important;
    }

    .testimonials-section .row.g-4.justify-content-center.d-none.d-lg-flex .testimonial-card footer span:first-child {
        color: #D4AF37 !important;
        font-weight: 700 !important;
        font-size: 1.1rem !important;
        font-family: 'Playfair Display', serif !important;
        display: block !important;
        margin-bottom: 0.3rem !important;
    }

    .testimonials-section .row.g-4.justify-content-center.d-none.d-lg-flex .testimonial-card footer span:last-child {
        color: #888 !important;
        font-size: 0.95rem !important;
        display: block !important;
    }
}

/* Mobile Testimonials Horizontal Layout */
@media (max-width: 991.98px) {
    .testimonials-mobile {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 1rem !important;
        padding: 0.5rem 0 !important;
        margin: 0 -0.5rem !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    .testimonials-mobile::-webkit-scrollbar {
        display: none !important;
    }

    .mobile-testimonial-card {
        flex: 0 0 auto !important;
        width: 280px !important;
        max-width: 280px !important;
        scroll-snap-align: start !important;
        margin-right: 0 !important;
    }

    .mobile-testimonial-card .testimonial-card {
        height: 280px !important;
        padding: 1.5rem !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s ease !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }

    .mobile-testimonial-card .testimonial-card:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15) !important;
    }

    .mobile-testimonial-card .testimonial-card blockquote {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        color: #444 !important;
        margin-bottom: 1rem !important;
        flex-grow: 1 !important;
    }

    .mobile-testimonial-card .testimonial-card footer {
        text-align: center !important;
    }

    .mobile-testimonial-card .testimonial-card footer span:first-child {
        color: #D4AF37 !important;
        font-weight: 700 !important;
        font-size: 1rem !important;
        font-family: 'Playfair Display', serif !important;
        display: block !important;
        margin-bottom: 0.2rem !important;
    }

    .mobile-testimonial-card .testimonial-card footer span:last-child {
        color: #888 !important;
        font-size: 0.85rem !important;
        display: block !important;
    }
}

/* ===== SCROLL INDICATORS ===== */

/* Add subtle scroll indicators for horizontal scrolling */
.featured-products-mobile::after,
.testimonials-mobile::after,
.testimonials-section .row.g-4.justify-content-center.d-none.d-lg-flex::after {
    content: '' !important;
    flex: 0 0 1rem !important;
    width: 1rem !important;
}

/* ===== RESPONSIVE CONTAINER FIXES ===== */

/* Ensure proper container behavior */
.container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
    box-sizing: border-box !important;
}

@media (max-width: 767.98px) {
    .container {
        padding: 0 0.75rem !important;
    }
}

/* ===== PRICE DISPLAY GLOBAL FIXES ===== */

/* Ensure price visibility across all screen sizes */
.product-price {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.product-price span {
    visibility: visible !important;
    opacity: 1 !important;
    display: inline-block !important;
}

/* ===== HORIZONTAL SCROLL CONTAINMENT ===== */

/* Prevent horizontal scroll from breaking layout */
.featured-products-mobile,
.testimonials-mobile {
    max-width: 100vw !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-behavior: smooth !important;
}

/* ===== ELEGANT SPACING AND TYPOGRAPHY ===== */

/* Enhanced typography for product titles */
.product-title {
    font-family: 'Playfair Display', serif !important;
    font-weight: 600 !important;
    color: #13202E !important;
    line-height: 1.3 !important;
}

/* Enhanced price styling */
.product-price span:first-child {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    color: #D5AF34 !important;
}

/* Enhanced button styling */
.btn {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}