 @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
     
}
body{
    font-family: "Open Sans", sans-serif;
}
.top-bar {
    background: #f8f9fa;
    padding: 8px 0;
    font-size: 14px;
    text-align: center;
    color: #666;
}

.top-bar .offer {
    font-weight: 600;
    color: #e74c3c;
}

.main-header {
    padding: 15px 0;
}

.container {
    width: 100%;
    /* max-width: 1200px; */
    /* margin: 0 60px; */
    /* padding: 30px 5px; */
    position: relative;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.logo span {
    color: #966F54;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.search-bar input:focus {
    border-color: #966F54;
}

.search-bar button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #966F54;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-actions a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.header-actions a:hover {
    color: #966F54;
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: relative;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation */
.nav {
    background: #2c3e50;
    padding: 0;
}

.nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav li {
    position: relative;
}

.nav a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    transition: background 0.3s;
}

.nav a:hover {
    background: #34495e;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
}

.nav li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    color: #333;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown a:hover {
    background: #f8f9fa;
    color: #966F54;
}

.dropdown a.active {
    background: #f0ebe8;
    color: #966F54;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(135deg, #8B5A3C 0%, #966F54 50%, #A07A5C 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 90, 60, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #966F54 0%, #A07A5C 50%, #CD853F 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(150, 111, 84, 0.4);
}

/* Promotional Banners */
.promo-banners {
    padding: 40px 0;
    background: #f8f9fa;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.banner {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.banner:hover {
    transform: translateY(-5px);
}

.banner i {
    font-size: 48px;
    color: #966F54;
    margin-bottom: 15px;
}

.banner h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.banner p {
    color: #666;
    font-size: 16px;
}

/* Categories Section */
.categories {
    padding: 60px 0;
}

 

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-image {
    height: 200px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

.category-content {
    padding: 25px;
    text-align: center;
}

.category-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.category-content p {
    color: #666;
    font-size: 14px;
}

/* Features Section */
.features {
    background: #2c3e50;
    color: white;
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
}

.feature i {
    font-size: 48px;
    color: #966F54;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.feature p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #34495e;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #966F54;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #966F54;
}

.footer-bottom {
    border-top: 1px solid #4a5f7a;
    padding-top: 30px;
    text-align: center;
    color: #bdc3c7;
}


* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
           
font-size: 16px;
           
line-height: 24px;
           
color: #333;
           
background-color: #f8f9fa;
           
/* padding-top: 100px; */ /* Account for fixed header (40px) + navigation (60px) height */
        }

        @media (max-width: 768px) {
            body {
                padding-top: 60px; /* Only navigation height on mobile */
            }
        }

        h1, h2, h3, h4, h5, h6 {
            
            color: #000;
        }

        

        /* Header Styles */
        .header {
            background: #ffffff; /* Solid brown color */
            color: #FFFFFF !important; /* Very bright white */
            padding: 4px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            margin: 0;
            border: none;
        }


        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(160, 122, 92, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(160, 122, 92, 0.1) 100%);
            pointer-events: none;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
            margin: 0;
            padding: 0;
        }

        .header .container {
            
            /* margin: 0 60px;
            padding: 0 5px;
            margin-bottom: 0;
            padding-bottom: 0; */
        }
.content-card + .content-card {
    margin-top: 30px;
}
        @media (max-width: 768px) {
            .header .container {
                margin: 0 20px;
                padding: 0 5px;
                margin-bottom: 0;
                padding-bottom: 0;
            }

            /* Hide cart and wishlist in mobile view */
            .header-actions .cart-link,
            .header-actions .wishlist-link {
                /* display: none !important; */
                padding-bottom: 0 !important;
            }

            /* Hide entire header actions section in mobile view */
            .header-actions {
                /* display: none !important; */
            }

            /* Hide entire header in mobile view */
            .header {
                /* display: none !important; */
            }

            /* Navigation at top on mobile */
            .main-nav {
                top: 0 !important;
                position: fixed;
                margin-bottom: 0 !important;
                padding-bottom: 0 !important;
            }
            
            .main-nav .nav-content {
                padding: 5px 0 !important;
                min-height: 45px !important;
            }
            
            .main-nav .container {
                margin: 0 !important;
                padding: 0 !important;
            }

            body {
                padding-top: 45px !important; /* Reduced navigation height on mobile */
            }
            
            /* Remove space between menu and banner */
            .banner-slider {
                margin-top: 0 !important;
                padding-top: 0 !important;
                position: relative !important;
                z-index: 1 !important;
                pointer-events: auto !important;
            }
            
            /* Ensure banner doesn't block menu button */
            .banner-slider * {
                pointer-events: auto !important;
                /* height: 400px; */
            }
            
            /* Ensure no gap between navigation and banner */
            body.home-page .banner-slider {
                margin-top: 0 !important;
                padding-top: 0 !important;
            }
            
            /* Remove any container padding that might create space */
            .banner-slider .container {
                margin: 0 !important;
                padding: 0 !important;
            }
            
            /* Remove any white space from navigation */
            .main-nav {
                box-shadow: none !important;
            }
        }

        /* Banner text always left-aligned (all viewports) */
        .banner-slider .slide {
            justify-content: flex-start !important;
        }
        .banner-slider .slide-content {
            justify-content: flex-start !important;
            text-align: left !important;
        }
        .banner-slider .slide-content .container {
            /* margin-left: 0 !important; */
            /* margin-right: auto !important; */
            /* text-align: left !important; */
            /* max-width: 100% !important; */
        }
        
        .banner-slider .slide-buttons {
            /* justify-content: flex-start !important; */
        }

        .offer-banner {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            background: #966F54; /* Footer brown color */
            color: #FFFFFF !important; /* Very bright white */
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            text-align: center;
            box-shadow: 0 4px 15px rgba(150, 111, 84, 0.3);
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
            width: 500px;
            margin-right: 20px;
            animation: slowBlink 3s ease-in-out infinite;
        }
        
        .offer-banner .banner-text {
            white-space: nowrap;
            display: inline-block;
            animation: textBlink 4s ease-in-out infinite;
        }
        
        @keyframes textBlink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        @keyframes slowBlink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .header-actions a {
            color: #848181 !important; /* Very bright white */
            text-decoration: none;
            transition: color 0.3s ease;
            position: relative;
        }

        .header-actions a:hover {
            color: #A07A5C;
        }

        .cart-count:empty, .wishlist-count:empty {
            display: none;
        }

        .cart-link, .wishlist-link, .admin-link {
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: #FFFFFF !important; /* Very bright white */
            transition: color 0.3s ease;
        }

        .cart-link i, .wishlist-link i, .admin-link i, .account-link i {
            font-size: 18px;
            display: inline-block;
            width: 20px;
            text-align: center;
            color: #868781;
            font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "FontAwesome", sans-serif;
            font-weight: 900;
        }

        .cart-link:hover, .wishlist-link:hover, .admin-link:hover {
            color: #A07A5C;
        }

        .cart-link .cart-count {
            background: #7ca103; /* Green background for cart count */
            color: #FFFFFF !important; /* Very bright white */
            border-radius: 50%;
            padding: 2px 6px;
            font-size: 12px;
            font-weight: bold;
            min-width: 18px;
            text-align: center;
            margin-left: 8px;
            flex-shrink: 0;
            white-space: nowrap;
        }

        .wishlist-link .wishlist-count {
            background: #7ca103; /* Green background for wishlist count */
            color: #FFFFFF !important; /* Very bright white */
            border-radius: 50%;
            padding: 1px;
            font-size: 12px;
            font-weight: bold;
            min-width: 18px;
            height: 18px;
            text-align: center;
            margin-left: 8px;
            flex-shrink: 0;
            white-space: nowrap;
            line-height: 16px;
        }

        .cart-link span, .wishlist-link span {
            white-space: nowrap;
            color: #797a78;
        }
        
        /* User Account Section Styles */
        .user-account-section {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 10px 0px;
        }
        
        /* User Dropdown Styles */
        .user-dropdown {
            position: relative;
            display: inline-block;
            z-index: 10003; /* Ensure dropdown container is above other elements */
        }
        
        .dropdown-toggle {
            background: none;
            border: none;
            color: #686666;
            font-size: 10px;
            cursor: pointer;
            padding: 3px;
            border-radius: 3px;
            transition: background-color 0.3s ease;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            right: 6px;
            top: 1px;
        }
        
        .dropdown-toggle i {
            font-size: 10px;
        }
        
        .dropdown-toggle:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .user-dropdown-content {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 200px;
            box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
            z-index: 10001; /* Higher than header and navigation */
            border-radius: 10px;
            overflow: hidden;
            top: 100%;
            right: 0;
            margin-top: 5px;
            border: 1px solid #e9ecef;
        }

        /* Show dropdown on click */
        .user-dropdown.show .user-dropdown-content {
            display: block;
        }

        .user-dropdown-content a {
            color: #2c3e50 !important;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            transition: background-color 0.3s ease;
            border-bottom: 1px solid #f0f0f0;
            font-weight: 500;
            font-size: 14px;
        }

        .user-dropdown-content a:hover {
            background-color: #f8f9fa;
            color: #A07A5C;
        }

        .user-dropdown-content a:last-child {
            border-bottom: none;
        }

        .user-dropdown-content a i {
            margin-right: 8px;
            width: 16px;
            text-align: center;
        }

        .logout-btn {
            color: #e74c3c !important;
            font-weight: 500 !important;
        }

        .logout-btn:hover {
            background-color: #fdf2f2 !important;
            color: #e74c3c !important;
        }

        /* Navigation */
        .main-nav {
            background: #7ca103;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            top: 61px; /* Position below the fixed header */
            left: 0;
            right: 0;
            z-index: 999;
            margin: 0;
            padding: 0;
            border: none;
            margin-top: -1px; /* Remove any gap */
            width: 100%; /* Ensure full width */
            transition: transform 0.3s ease-in-out;
        }

        .main-nav.nav-hidden {
            transform: translateY(-100%);
        }

        .main-nav .container {
            /* max-width: 1600px; */
            /* margin: 0 60px; */
            /* padding: 0 5px; */
        }

        @media (max-width: 768px) {
            .main-nav .container {
                margin: 0;
                padding: 0;
            }
            
            .mobile-menu-toggle {
                position: fixed !important;
                top: 10px !important;
                left: 10px !important;
                z-index: 99999 !important;
                background: #016ea9 !important;
                color: white !important;
                border: none !important;
                padding: 10px 14px !important;
                border-radius: 8px !important;
                font-size: 12px !important;
                font-weight: 600 !important;
                display: flex !important;
                align-items: center !important;
                gap: 5px !important;
                box-shadow: 0 2px 10px rgba(0,0,0,0.4) !important;
                min-width: auto !important;
                width: auto !important;
                -webkit-tap-highlight-color: rgba(160, 122, 92, 0.3) !important;
                -webkit-touch-callout: none !important;
                user-select: none !important;
                touch-action: manipulation !important;
                pointer-events: auto !important;
                cursor: pointer !important;
                isolation: isolate !important;
                transform: translateZ(0) !important;
            }
            
            .mobile-menu-toggle i {
                font-size: 14px !important;
            }
            
            .mobile-menu-toggle:hover {
                background: #016ea9  !important;
            }
            
            .nav-content {
                padding: 0 !important;
            }
            
            /* Mobile menu active state */
            .nav-links.mobile-active {
                display: flex !important;
                flex-direction: column !important;
                position: fixed !important;
                top: 43px !important;
                left: 0 !important;
                right: 0 !important;
                background: white !important;
                box-shadow: 0 4px 10px rgba(0,0,0,0.2) !important;
                padding: 9px 0 !important;
                max-height: calc(100vh - 45px) !important;
                overflow-y: auto !important;
                z-index: 99998 !important;
                -webkit-overflow-scrolling: touch !important;
                pointer-events: auto !important;
                gap: 0;
            }
            
            .nav-links.mobile-active li {
                width: 100% !important;
                padding: 0 !important;
                margin: 0 !important;
            }
            
            .nav-links.mobile-active li a {
                display: block !important;
                padding: 9px 20px !important;
                width: 100% !important;
                border-bottom: 1px solid #f0f0f0 !important;
                -webkit-tap-highlight-color: rgba(160, 122, 92, 0.2) !important;
                touch-action: manipulation !important;
                pointer-events: auto !important;
                cursor: pointer !important;
                color: #000;
                font-weight: 400;
            }
            .nav-links li.active a, .nav-links li a:hover {
    color: #000 !important;
    font-weight: 400 !important;
}
            .nav-links.mobile-active .dropdown {
                position: static !important;
                opacity: 1 !important;
                visibility: visible !important;
                transform: none !important;
                box-shadow: none !important;
                border: none !important;
                border-radius: 0 !important;
                background: #f8f9fa !important;
                max-height: 0 !important;
                overflow: hidden !important;
                transition: max-height 0.3s ease, padding 0.3s ease !important;
                padding: 0 !important;
            }
            
            .nav-links.mobile-active li.active .dropdown,
            .nav-links.mobile-active li.menu-open .dropdown {
                max-height: 500px !important;
                padding: 5px 0 !important;
                display: block !important;
                visibility: visible !important;
                opacity: 1 !important;
            }
            
            .nav-links.mobile-active .dropdown a {
                padding: 10px 40px !important;
                font-size: 14px !important;
                -webkit-tap-highlight-color: rgba(160, 122, 92, 0.2) !important;
                touch-action: manipulation !important;
            }
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            min-height: 60px; /* Ensure minimum height */
        }

        .nav-links {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 30px;
        }

        .nav-links li a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links li a:hover {
            color: #ffffff;
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffffff;
            transition: width 0.3s ease;
            /* right: 0; */
        }

        .nav-links li a:hover::after {
            width: 20px;
            margin: auto;
        }

        /* Active Menu Item Styles */
        .nav-links li.active a {
            color: #ffffff;
            font-weight: 600;
        }

        .nav-links li.active a::after {
            /* width: 100%; */
            /* background: #A07A5C; */
        }

        /* Dropdown Menu Styles */
        .nav-links li {
            position: relative;
        }

        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 200px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 10002; /* Higher than user dropdown */
            border: 1px solid #e9ecef;
        }

        .nav-links li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        /* Show dropdown when active class is present (for click functionality) */
        .nav-links li.active .dropdown,
        .nav-links li.menu-open .dropdown {
            opacity: 1 !important;
            visibility: visible !important;
            transform: translateY(0) !important;
            display: block !important;
        }

        .dropdown a {
            display: block;
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            transition: all 0.3s ease;
            border-bottom: 1px solid #f8f9fa;
        }

        .dropdown a:last-child {
            border-bottom: none;
        }

        .dropdown a:hover {
            background: #f8f9fa;
            color: #A07A5C;
            padding-left: 25px;
        }

        .dropdown a i {
            margin-right: 8px;
            width: 16px;
            text-align: center;
        }

        .subcategory-link {
            padding-left: 30px !important;
            font-size: 13px !important;
            color: #666 !important;
            border-left: 2px solid #e9ecef;
            margin-left: 10px;
        }

        .subcategory-link:hover {
            background: #f8f9fa !important;
            color: #A07A5C !important;
            border-left-color: #A07A5C;
        }

        /* Ensure consistent spacing for all pages */
        main {
            margin: 0;
            padding: 0;
            /* position: relative; */
            margin-top: 120px;
        }

        /* Remove any default margins from main content areas */
        .page-content, .content, .main-content {
            margin: 0;
            padding: 0;
        }

        /* Ensure no extra spacing on specific page containers */
        .container-fluid, .container, .row, .col, .col-md-12, .col-lg-12 {
            margin-top: 0 !important;
        }

        /* Reset any default spacing that might cause gaps */
        .page-header, .content-header, .section-header {
            margin-top: 0;
            padding-top: 0;
        }

       
        

        

        /* Additional UI Elements with Light Brown Colors */
        .card, .product-card, .category-card {
            /* border: 1px solid #D2B48C !important; */
            /* box-shadow: 0 2px 8px rgba(160, 122, 92, 0.1) !important; */
        }

        /* Fix product images - show full image without cutting */
        .product-image {
            padding: 20px 15px !important;
            box-sizing: border-box !important;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            min-height: 250px !important;
        }

        .product-image img {
            margin-top: 0 !important;
            object-fit: contain !important;
            object-position: center !important;
            width: 100% !important;
            height: 100% !important;
            max-height: 100% !important;
            padding: 0 !important;
        }

        .product-image-container {
            padding: 20px 15px !important;
            box-sizing: border-box !important;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            min-height: 250px !important;
        }

        .product-image-container img {
            margin-top: 0 !important;
            object-fit: contain !important;
            object-position: center !important;
            width: 100% !important;
            height: 100% !important;
            max-height: 100% !important;
            padding: 0 !important;
        }

        /* Make product cards more attractive */
        .product-card {
            border-radius: 0;
            overflow: hidden !important;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
            background: white !important;
            /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05) !important; */
            /* border: 1px solid rgba(210, 180, 140, 0.2) !important; */
            position: relative !important;
        }

        .product-card::before {
            content: '' !important;
            position: absolute !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            height: 3px !important;
            background: linear-gradient(90deg, #A07A5C 0%, #8B6F47 50%, #A07A5C 100%) !important;
            opacity: 0 !important;
            transition: opacity 0.4s ease !important;
        }

        .product-card:hover {
            transform: translateY(-10px) scale(1.02) !important;
            box-shadow: 0 15px 40px rgba(160, 122, 92, 0.25), 0 5px 15px rgba(0, 0, 0, 0.1) !important;
            border-color: rgba(160, 122, 92, 0.4) !important;
        }

        .product-card:hover::before {
            opacity: 1 !important;
        }

        .product-info {
            padding: 22px 20px !important;
            background: transparent;
            border-top: 0;
        }

        

        .product-card:hover .product-info h3,
        .product-card:hover .product-info .product-name {
            /* color: #A07A5C !important; */
        }

        .card-header, .product-card-header {
            background: linear-gradient(135deg, #F5DEB3 0%, #D2B48C 100%) !important; /* Light tan gradient */
            border-bottom: 1px solid #D2B48C !important;
        }

        .badge, .tag, .label {
            /* background: #016ea9 !important; */
            /* color: #FFFFFF !important; */ /* Very bright white */
        }

        .alert, .notification {
            background: linear-gradient(135deg, #F5DEB3 0%, #D2B48C 100%) !important;
            border: 1px solid #D2B48C !important;
            color: #8B6F47 !important;
        }

        .alert-success, .notification-success {
            background: #00cc66 !important;
            border: 1px solid #00aa44 !important;
            color: #FFFFFF !important;
        }

        .progress-bar {
            background: linear-gradient(90deg, #8B5A3C, #966F54) !important; /* Darker gradient */
        }

        .table th {
            background: linear-gradient(135deg, #F5DEB3 0%, #D2B48C 100%) !important;
            color: #8B6F47 !important;
        }

        .table-striped tbody tr:nth-of-type(odd) {
            background: rgba(245, 222, 179, 0.1) !important;
        }

        /* Global Heading Styles - Keep original colors */
        h1 {
            font-size: 36px;
            line-height: 42px;
            font-weight: 700;
            margin-bottom: 9px;
        }

        h2 {
            font-size: 36px;
            line-height: 44px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        h3 {
            font-size: 24px;
            line-height: 30px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        /* Override any page-specific padding that might cause gaps */
        body.home-page, body.checkout-page, body.cart-page, body.product-page {
            padding-top: 0px !important;
        }
p {
    margin-bottom: 15px;
}

.btn-col {
    margin-top: 20px;
}
        @media (max-width: 768px) {
            body.home-page, body.checkout-page, body.cart-page, body.product-page {
                padding-top: 48px !important;
            }
        }

        .category-link {
            font-weight: 600 !important;
            color: #333 !important;
            border-bottom: 1px solid #e9ecef;
            margin-bottom: 5px;
        }

        .category-link:hover {
            background: #f8f9fa !important;
            color: #A07A5C !important;
        }

        .search-box {
            position: relative;
            display: flex;
            align-items: center;
            margin-left: auto; /* Push to right */
        }

        @media (max-width: 768px) {
            .search-box {
                display: none !important;
            }
        }

        
 

        .btn-outline {
            background: transparent !important;
            color: #016ea9 !important;
            border: 2px solid #016ea9 !important;
        }

        .btn-secondary:hover  {
            background: #1283c0 !important;
            color: white !important;
        }


        .search-box i {
            position: absolute;
            left: 15px;
            color: #999;
            font-size: 14px;
        }
 

        .search-box input:focus {
            outline: none;
            border-color: #A07A5C;
        }

        /* Footer Styles */
        .footer {
            background: #191919; /* Solid brown color */
            color: #FFFFFF !important; /* Very bright white */
            padding: 50px 0 25px;
            /* margin-top: 80px; */
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(160, 122, 92, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(160, 122, 92, 0.1) 100%);
            pointer-events: none;
        }

        .footer .container {
            /* max-width: 1600px; */
            /* margin: 0 60px; */
            /* padding: 0 5px; */
            /* position: relative; */
            /* z-index: 1; */
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: #FFFFFF !important; /* Very bright white */
            margin-bottom: 25px;
            font-size: 16px; /* Smaller font size */
            font-weight: 600;
            text-transform: none; /* Remove uppercase, use camelCase */
            letter-spacing: 0.5px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: #FFFFFF; /* Very bright white */
            border-radius: 2px;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 0;
        }

      

        .footer-section ul li a {
            color: #FFFFFF !important; /* Very bright white */
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 400;
            display: inline-block;
            padding: 2px 0;
        }

        .footer-section ul li a:hover {
            color: #D2B48C; /* Light brown */
            transform: translateX(5px);
            font-weight: 500;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #4d4b4b; /* Light brown border */
            color: #FFFFFF !important; /* Very bright white */
            font-size: 14px;
            font-weight: 400;
            position: relative;
        }

        .footer-bottom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 2px;
            /* background: linear-gradient(90deg, transparent, #D2B48C, transparent); */ /* Light brown gradient */
        }


/* Shared page-specific styles (home page, logo, etc.) */

/* Logo - single source for all pages */
.logo {
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    line-height: 1.3;
    position: relative;
   
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.logo-image {
    display: block;
    height: 50px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.8)) !important;
}

.logo:hover {
    transform: scale(1.05);
    opacity: 0.95;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-text {
    display: inline-block;
    position: relative;
}

.logo-wellness {
    color: #ffffff !important;
    font-weight: 800 !important;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6), 0 2px 4px rgba(0, 0, 0, 0.5), 0 4px 8px rgba(0, 0, 0, 0.3) !important;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9)) !important;
}

.logo-wellness::after {
    content: 'Ã¢â€“Â¼';
    position: absolute;
    top: -10px;
    left: 2.2em;
    font-size: 9px;
    color: #ffffff !important;
    line-height: 1;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9), 0 2px 4px rgba(0, 0, 0, 0.5) !important;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8)) !important;
}

.logo-tools {
    color: #ffffff !important;
    font-weight: 800 !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6), 0 2px 4px rgba(0, 0, 0, 0.5), 0 4px 8px rgba(0, 0, 0, 0.3) !important;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9)) !important;
}

.logo-com {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 0.85em;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6), 0 2px 4px rgba(0, 0, 0, 0.5), 0 4px 8px rgba(0, 0, 0, 0.3) !important;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9)) !important;
}

.logo-icon {
    display: none;
}

@keyframes logoGlow {
    from {
        text-shadow: 0 0 25px rgba(0, 255, 136, 1), 0 0 50px rgba(0, 255, 136, 0.8), 0 0 75px rgba(0, 255, 136, 0.6);
        filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.8)) drop-shadow(0 0 30px rgba(0, 255, 136, 0.5));
        transform: scale(1.1);
    }
    to {
        text-shadow: 0 0 35px rgba(0, 255, 0, 1), 0 0 70px rgba(0, 255, 0, 0.9), 0 0 100px rgba(0, 255, 0, 0.7);
        filter: drop-shadow(0 0 25px rgba(0, 255, 0, 1)) drop-shadow(0 0 50px rgba(0, 255, 0, 0.7));
        transform: scale(1.15);
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 18px !important;
        padding: 5px 0 !important;
    }
    .logo-image {
        height: 35px !important;
        max-width: 200px !important;
    }
    .logo-wellness::after {
        font-size: 7px !important;
        top: -8px !important;
    }
}

/* Home page specific styles */

/* Reset slider dots to ensure they are small and round */
.slider-dot, .slider-dots button, .slider-dots .slider-dot {
    all: unset !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease, border-color 0.3s ease !important;
    display: inline-block !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
}

body.home-page {
    padding-top: 0 !important;
    background: linear-gradient(135deg, #966F54 0%, #8B5A3C 50%, #A07A5C 100%);
    min-height: 100vh;
    position: relative;
}

body.home-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.04)"/><circle cx="10" cy="60" r="0.8" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="40" r="0.6" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

body.home-page .home-page {
    margin-top: 0 !important;
    padding-top: 0 !important;
    position: relative;
    z-index: 1;
}

body.home-page .banner-slider {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Ensure scroll functionality works on home page */
body.home-page .offer-banner,
body.home-page .header,
body.home-page .main-navigation {
    transition: transform 0.3s ease-in-out !important;
}

.banner-slider {
    position: relative;
    width: 100%;
    /* height: 600px; */
    overflow: hidden !important;
    margin-top: 129px;
    margin-bottom: 0;
    padding-top: 0;
}
.slide-text {
    max-width: 700px;
    padding-left: 0 !important;
}

section.banner-slider .slide-bg:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    background: #000;
    top: 0;
    bottom: 0;
    /* z-index: 1; */
    opacity: 0.4;
}
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* z-index: 2; */
}

.slides-container {
    /* display: flex !important; */
    height: 100% !important;
    transition: transform 0.6s ease-in-out !important;
    will-change: transform;
    /* position: relative; */
    /* z-index: 2; */
    width: 100% !important;
    max-width: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    min-width: 100% !important;
    width: 100% !important;
    height: 600px;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0 !important;
    position: relative;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-color: #A07A5C; */
    z-index: 0;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: white;
    padding: 100px 0px;
}

.banner-slider .slide-content .container {
    /* margin-left: 0 !important; */
    /* margin-right: auto !important; */
    /* text-align: left !important; */
}

 

.slide-text h1 {
    font-size: 48px;
    line-height: 52px;
    font-weight: 700;
    margin-bottom: 1rem;
    /* text-shadow: 2px 2px 4px rgba(0,0,0,0.5); */
    color: #FFF;
}

.slide-text .subtitle {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 1rem;
    /* text-shadow: 1px 1px 2px rgba(0,0,0,0.5); */
    /* font-weight: 500; */
}

.slide-text .description {
    font-size: 14px;
    margin-bottom: 10px;
    /* text-shadow: 1px 1px 2px rgba(0,0,0,0.5); */
    opacity: 0.95;
    line-height: 22px;
}

.slide-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    /* text-shadow: 1px 1px 2px rgba(0,0,0,0.5); */
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

 

.slide-buttons .btn-primary {
    background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%) !important;
    color: white !important;
    border: none !important;
    font-weight: bold !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3) !important;
    transition: all 0.3s ease !important;
}

.slide-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #00cc66 0%, #00aa44 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 25px rgba(0, 255, 136, 0.5) !important;
}

.slide-buttons .btn-secondary {
    background: linear-gradient(135deg, #966F54 0%, #8B5A3C 100%) !important;
    color: white !important;
    border: none !important;
    font-weight: bold !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
    box-shadow: 0 4px 15px rgba(150, 111, 84, 0.3) !important;
    transition: all 0.3s ease !important;
}

.slide-buttons .btn-secondary:hover {
    background: linear-gradient(135deg, #8B5A3C 0%, #A07A5C 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 25px rgba(150, 111, 84, 0.5) !important;
}

.btn-consultation {
    background: #016ea9;
    color: white !important;
    border: none !important;
    font-weight: 600 !important;
    /* text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important; */
    /* box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4) !important; */
    transition: all 0.3s ease !important;
}

.btn-consultation:hover {
    background: #7ca103;
    transform: translateY(-3px) !important;
    /* box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6) !important; */
    color: white !important;
    text-decoration: none !important;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
    align-items: center;
    justify-content: center;
    display: none !important;
}

.slider-dots button.slider-dot {
    width: 12px !important;
    height: 12px !important;
    min-width: 12px !important;
    min-height: 12px !important;
    max-width: 12px !important;
    max-height: 12px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.5) !important;
    border: 2px solid rgba(255, 255, 255, 0.7) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    display: inline-block !important;
    padding: 0 !important;
    margin: 0 5px !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
    outline: none !important;
    transform: none !important;
    z-index: 10 !important;
    position: relative !important;
}

.slider-dot {
    width: 10px !important;
    height: 10px !important;
    min-width: 10px !important;
    min-height: 10px !important;
    max-width: 10px !important;
    max-height: 10px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease, border-color 0.3s ease !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    display: inline-block !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
    transform: none !important;
}

.slider-dots button.slider-dot:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: scale(1.1) !important;
    border-color: white !important;
    cursor: pointer !important;
}

.slider-dots button.slider-dot.active {
    background: white !important;
    border-color: #A07A5C !important;
    transform: scale(1.2) !important;
    box-shadow: 0 0 10px rgba(160, 122, 92, 0.6) !important;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8) !important;
    transform: none !important;
    border-color: white !important;
}

.slider-dot.active {
    background: white !important;
    border-color: #A07A5C !important;
    transform: none !important;
    box-shadow: 0 0 8px rgba(160, 122, 92, 0.4) !important;
}

@media (max-width: 768px) {
    .banner-slider {
        /* height: 500px; */
        /* min-height: 200px !important; */
        /* max-height: 240px !important; */
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .slide-content {
        align-items: center;
        padding-top: 20px !important;
    }
    
    .slide-text {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        padding-top: 0 !important;
        text-align: center;
        /* text-align: center; */
    }
   
    .slide-text h1 {
        font-size: 1.5rem !important;
        margin-bottom: 0.4rem !important;
        line-height: 1.2 !important;
        font-weight: 700 !important;
    }
    
    .slide-text .subtitle {
       display: none;
    }
    .slide-text .description {
    display: none;
}
    
    
   
    
    .btn-consultation span {
        /* font-size: 14px !important; */
        /* white-space: nowrap !important; */
        /* font-weight: 600 !important; */
    }
    
    .btn-consultation i {
        font-size: 9px !important;
        flex-shrink: 0 !important;
    }
    
    .slide-buttons {
        justify-content: center !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
        margin-top: 0.5rem !important;
    }
    
    .slide-content .container {
        padding: 0 10px 0 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        text-align: left !important;
    }
    
    .slide-bg {
        background-size: cover !important;
        background-position: center !important;
    }
}

/* Body-part card hover and other home-specific rules (kept from template) */
.body-part-card {
    position: relative;
    cursor: pointer;
}
.body-parts-grid {
    display: flex;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    flex-wrap: wrap;
}

.body-part-card {
    padding: 10px;
    background: #FFF;
    box-shadow: 0px 0px 10px rgba(0,0,0,.11);
    width: calc(25% - 15px);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
} 
.body-part-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 15px 40px rgba(160, 122, 92, 0.25), 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    border-color: rgba(160, 122, 92, 0.4) !important;
}  
.body-part-card > div:first-child { cursor: pointer; }

/* Home: content cards, section header, featured products, newsletter, buttons */
.sec-space {
    padding: 80px 0px;
}
.home-page { margin: 0; padding: 0; }
.home-content-cards-section {
    /* padding: 80px 0 100px 0; */
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 30%, #f8f9fa 100%);
    /* margin: 50px 0; */
    position: relative;
    overflow: hidden;
}
.home-content-cards-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(160, 122, 92, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.section-header {
    text-align: center;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    position: relative;
    z-index: 1;
}
 
.content-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* max-width: 1400px; */
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}
.content-card {
    display: flex;
    /* background: #ffffff; */
    /* border-radius: 24px; */
    overflow: hidden;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 10px 40px rgba(0, 0, 0, 0.04); */
    position: relative;
    /* border: 1px solid rgba(160, 122, 92, 0.08); */
    /* height: 450px; */
    width: 100%;
}
.content-card.reverse { flex-direction: row-reverse; }
.content-card-image-wrapper {
    flex: 0 0 50%;
    width: 50%;
    height: 450px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
}
.content-card-image {
    width: 100%;
    height: 450px;
    position: relative;
    /* overflow: hidden; */
}
.content-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: brightness(1) saturate(1.05); */
    /* border-radius: 0 !important; */
}
.content-card-text {
    flex: 1;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    width: 50%;
    /* height: 450px; */
    overflow: hidden;
}
 
.content-card-text .card-description {
    /* font-size: 1.1rem; */
    /* color: #5a6c7d; */
    /* line-height: 1.85; */
    /* margin-bottom: 35px; */
    /* font-weight: 400; */
}
.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, #A07A5C 0%, #8B5A3C 100%);
    border: 2px solid transparent;
    width: fit-content;
    margin-top: auto;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(160, 122, 92, 0.25);
}
.featured-products {
    /* padding: 60px 0 0 0; */
    background: #f8f9fa;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
    max-width: 100%;
}
.product-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 0px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}
.product-card:hover .product-image img { transform: scale(1.1); }
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #016ea9;
    color: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    line-height: 10px;
}
.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.product-card:hover .product-actions { opacity: 1; }
.action-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #016ea9;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.action-btn:hover {
    background: #7ca103;
    color: white;
    transform: scale(1.1);
}
.product-info { padding: 30px; }
.product-info h3 {
    font-size: 18px;
    line-height: 25px;
    font-weight: 500;
    /* color: #2c3e50; */
    margin-bottom: 10px;
}
.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.stars {color: #ea8f0be6;font-size: 1rem;}
.rating-count { color: #666; font-size: 0.9rem; }
.product-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
 
.original-price {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
}
.product-buttons {
    display: flex;
    gap: 8px;
    margin-top: auto;
    align-items: center;
    padding: 0px 15px 20px;
}
.product-buttons .add-to-cart,
.product-buttons .view-more {
    flex: 1;
    padding: 12px 12px;
    font-size: 14px;
    white-space: nowrap;
    min-width: 0;
}
.section-footer { text-align: center; }
.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    margin-bottom: 0;
}
.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.newsletter-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.newsletter-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}
.subscribe-form {
    display: flex;
    gap: 0;
    max-width: 500px;
    position: relative;
}
.subscribe-form input {
    flex: 1;
    padding: 20px 25px;
    border: none;
    border-radius: 25px 0 0 25px;
    font-size: 1rem;
    outline: none;
    background: white;
}
.subscribe-form button {
    padding: 20px 30px;
    border: none;
    border-radius: 0 25px 25px 0;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}
.subscribe-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}
.btn {
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    line-height: 18px;
    border: 2px solid transparent;
    text-align: center;
}
 
.btn-primary:hover {
   
background: #799a0d;
}
 
 
 

@media (max-width: 768px) {
   
    .content-card {
        flex-direction: column !important;
        /* height: auto; */
        /* border-radius: 20px; */
    }
    .content-card.reverse { flex-direction: column !important; }
    .content-card-image-wrapper,
    .content-card-image {flex: 0 0 100%;width: 100%;height: 300px;border-radius: 0;}
    .content-card-text {
        width: 100%;
        height: auto;
        min-height: auto;
        padding: 35px 0px 0;
    }
 
    .card-title {/* font-size: 1.8rem; *//* margin-bottom: 18px; */}
    .products-grid { grid-template-columns: 1fr; }
    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .subscribe-form { flex-direction: column; }
    .subscribe-form input,
    .subscribe-form button { border-radius: 25px; }
    .banner-slider {
        /* height: 280px !important; */
        /* min-height: 250px !important; */
        /* max-height: 300px !important; */
    }
}




        @media (max-width: 768px) {
            .footer {
                padding: 35px 0 18px !important;
                /* margin-top: 40px !important; */
            }
            
            .footer .container {
                margin: 0 15px !important;
                padding: 0 !important;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 25px !important;
                margin-bottom: 25px !important;
            }
            
            .footer-section {
                margin-bottom: 15px;
            }
            
            .footer-section h3 {
                font-size: 18px !important;
                margin-bottom: 12px !important;
                padding-bottom: 9px !important;
                font-weight: 600 !important;
            }
            
            .footer-section h3::after {
                width: 30px !important;
                height: 2px !important;
                margin: auto;
                left: 0;
                right: 0;
            }
            
            .footer-section ul {
                padding: 0 !important;
            }
            
            .footer-section ul li {
                margin-bottom: 8px !important;
                font-size: 12px !important;
                padding-left: 12px !important;
            }
            
            .footer-section ul li::before {
                font-size: 8px !important;
                left: 0 !important;
            }
            
            .footer-section ul li a {
                font-size: 14px !important;
                padding: 1px 0 !important;
            }
            
            .footer-bottom {
                padding-top: 18px !important;
                font-size: 11px !important;
                border-top-width: 1px !important;
            }
            
            .footer-bottom::before {
                width: 150px !important;
                height: 1px !important;
            }
            
            .footer-bottom p {
                margin: 0;
                line-height: 1.5;
                font-size: 11px !important;
            }
        }

        @media (max-width: 480px) {
            .footer {
                padding: 25px 0 15px !important;
                /* margin-top: 30px !important; */
            }
            
            .footer .container {
                margin: 0 12px !important;
            }
            
            .footer-content {
                grid-template-columns: 1fr !important;
                gap: 20px !important;
                margin-bottom: 20px !important;
            }
            
            .footer-section {
                margin-bottom: 12px;
            }
            
            .footer-section h3 {
                /* font-size: 13px !important; */
                /* margin-bottom: 10px !important; */
                /* padding-bottom: 5px !important; */
            }
            
            .footer-section h3::after {
                width: 25px !important;
            }
            
            .footer-section ul li {
                margin-bottom: 6px !important;
                font-size: 11px !important;
                padding-left: 10px !important;
            }
            
            .footer-section ul li::before {
                font-size: 7px !important;
            }
            
            .footer-section ul li a {
                /* font-size: 11px !important; */
            }
            
            .footer-bottom {
                padding-top: 12px !important;
                font-size: 10px !important;
            }
            
            .footer-bottom::before {
                width: 120px !important;
            }
            
            .footer-bottom p {
                font-size: 10px !important;
                line-height: 1.4;
            }
        }

        /* Help Button Responsive Styles */
        @media (max-width: 768px) {
            #helpButton {
                bottom: 15px !important;
                right: 15px !important;
                padding: 14px 20px !important;
                font-size: 14px !important;
            }
            
            #helpButton span {
                display: none;
            }
            
            #helpButton i {
                font-size: 20px !important;
            }
        }

        @media (max-width: 480px) {
            #helpButton {
                bottom: 10px !important;
                right: 10px !important;
                padding: 12px 16px !important;
                font-size: 12px !important;
                border-radius: 50% !important;
                width: 50px !important;
                height: 50px !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
            }
            
            #helpButton span {
                display: none;
            }
            
            #helpButton i {
                font-size: 18px !important;
                margin: 0 !important;
            }
        }



section.solutions-sec {
    background: #ebebeb;
}

.box-space {
    padding: 11px 0px;
}
.box-space h3 {
    margin-bottom: 4px !important;
    font-size: 20px !important;
    line-height: 30px !important;
} 

.btn-sm {
    padding: 10px 21px;
    display: inline-block;
    font-size: 12px;
    line-height: 20px;
    border: 0;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    /* font-size: 12px; */
}

.btn-primary {
    background: #7ca103;
    color: #FFF;
}

.btn-secondary {
    background: #016ea9;
    color: #FFF;
}
.btn-group-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(160, 122, 92, 0.15);
    margin-top: auto;
} 
#helpButton {
    background: #016ea9 !important;
}
 
.user-account-section:hover  .user-dropdown-content{
    display:block;
}
/* Hero: info-first (not product) */
.bodypart-hero {
    position: relative;
    /* Ensure hero content is visible below the fixed header */
    padding: 80px 0px;
    margin-top: 0;
    margin-bottom: 0;
    background: linear-gradient(135deg, rgba(22,28,45,0.6), rgba(73,54,40,0.55));
    background-attachment: scroll;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    overflow: visible;
    min-height: 500px;
    display: flex;
    align-items: center;
    width: 100%;
}

@media (max-width: 768px) {
    body {
        padding-top: 0 !important;
    }
    
    .bodypart-hero {
        padding: 50px 0px;
        margin-top: 0;
        /* min-height: 500px; */
        text-align: center;
    }
}
.bodypart-hero::after {
    content:'';
    position:absolute;
    inset:0;
    background: radial-gradient(circle at 18% 30%, rgba(255,255,255,0.1), transparent 36%),
                radial-gradient(circle at 82% 12%, rgba(255,255,255,0.08), transparent 32%);
    pointer-events:none;
}
.bodypart-hero .container {
    position: relative;
    z-index: 2;
}
.bodypart-hero .kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.2);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
    color: #fff;
    line-height: 20px;
}
.bodypart-hero h2, .bodypart-hero h1 {
     margin: 23px 0 10px;
     color: #fff;
     max-width: 650px;
}
.bodypart-hero p.lead {
    font-size: 18px;
    max-width: 760px;
    opacity: 0.95;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4), 0 2px 12px rgba(0,0,0,0.3);
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}
.hero-btn {
    padding: 14px 22px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-btn.primary {
    /* Explore related tools - attractive accent (blue-teal) */
    background: linear-gradient(135deg, #2bb7b1 0%, #3498db 100%);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.hero-btn.secondary {
    /* Talk to a specialist - green */
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.08);
}
.hero-btn:hover { transform: translateY(-2px); }

.badge-pill {
    background: rgba(255,255,255,0.16);
    color: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-right: 10px;
    margin-bottom: 10px;
}
.bodypart-content {
    /* margin: 45px 0 70px; */
    display: grid;
    grid-template-columns: 1.75fr 1fr;
    gap: 26px;
}
.content-card, .aside-card {
    background: #fff;
    /* border-radius: 16px; */
    /* box-shadow: 0 15px 45px rgba(0,0,0,0.07); */
    padding: 24px;
    /* border: 1px solid #f1f1f1; */
}
.content-card h2 {/* font-size: 26px; *//* margin-bottom: 14px; */}
.content-card p {/* margin-bottom: 14px; *//* color: #4a5568; */}
.rich-content {
    line-height: 1.7;
    color: #243041;
}
.rich-content ul,
.rich-content ol {
    padding-left: 18px;
    margin-left: 0;
}
.bodypart-shell {
    /* max-width: 95%; */
    /* margin: 0 auto; */
    /* padding: 0 18px; */
    /* width: 100%; */
}
.highlight-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0;
}
.highlight-chip {
    background: #f7f1eb;
    color: #5b3b24;
    border: 1px solid #eedccc;
    border-radius: 12px;
    padding: 10px 12px;
    font-weight: 600;
    margin: 10px 0px;
}
.aside-card h3 {font-size: 30px;margin-bottom: 14px;}
.faq-item {
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    background: #f8f8f8;
    border: none;
    padding: 14px 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    padding: 14px 16px;
    display: none;
    color: #4a5568;
    background: #fff;
}
.faq-item.open .faq-answer { display: block; }

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
    gap: 20px;
    margin-top: 30px;
}
.aside-card .btn {
    margin-bottom: 12px;
    margin-top: 14px;
}
.related-header {
    margin-bottom: 12px;
}
.related-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbf7f3 100%);
    border-radius: 16px;
    padding: 18px;
    border: 1px solid #f2f1f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
}
.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    /* border-color: #016ea9; */
}
.related-pill {
    display: inline-block;
    align-items: center;
    gap: 6px;
    background: #7ca103;
    color: #ffffff;
    padding: 1px 12px;
    border-radius: 0;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: skew(-10deg);
}
.related-title {
    font-size: 20px;
    font-weight: 700;
    /* line-height: 25px; */
    /* color: #333; */
}
.related-summary {
    color: #5b6778;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}
        .related-cta {
    margin-top: auto;
    color: #016ea9;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}
.related-header h3:hover {
    color: #A07A5C;
}

.text-center{
    text-align: center;
}
section.related-sec.sec-space {
    padding-top: 0;
} 

/* Products Page Styles */
.products-page {
    /* background: linear-gradient(135deg, #966F54 0%, #8B5A3C 50%, #A07A5C 100%); */
    min-height: 100vh;
    /* padding: 0; */
    position: relative;
    overflow-x: hidden;
}

.products-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.04)"/><circle cx="10" cy="60" r="0.8" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="40" r="0.6" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

 

 

.page-subtitle {
    font-size: 16px;
    /* color: rgba(255, 255, 255, 0.9); */
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    line-height: 1.6;
    /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); */
    padding: 0;
    box-sizing: border-box;
}

.clear-search-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: rgba(160, 122, 92, 0.9);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.clear-search-btn:hover {
    background: rgba(139, 90, 60, 0.9);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* Filters Sidebar */
.filters-sidebar {
    background: rgba(255, 255, 255, 0.95);
    padding: 0;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0,0,0,.22);
    height: fit-content;
    position: sticky;
    top: 120px;
    border: 0;
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.filters-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
        padding: 20px 0;
        border-bottom: 3px solid #016ea9;
        background: #016ea9;
        margin: auto;
        padding: 20px 25px;
        border-radius: 0px;
        width: 100%;
        min-width: 100%;
}

.filters-header h3 {
        color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.filters-header h3::before {
    content: 'ðŸ”';
    font-size: 1.2rem;
}

.clear-filters {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 0.9rem;
        font-weight: 600;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.clear-filters:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.filter-group {
    margin-bottom: 25px;
    background: white;
   
    border-radius: 15px;
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.05); */
    /* border: 1px solid rgba(160, 122, 92, 0.1); */
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 20px;
}

.filter-group:hover {
    /* box-shadow: 0 8px 25px rgba(0,0,0,0.1); */
    /* transform: translateY(-2px); */
}

.filter-group label {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 700;
        /* color: #2c3e50; */
        margin-bottom: 19px;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        position: relative;
        padding-left: 0;
}

.filter-group label i {
        color: #0b0b0b;
        font-size: 1rem;
        width: 16px;
        text-align: center;
}

.filter-group label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: transparent;
    border-radius: 2px;
}

/* Search Box */
.search-box {
    position: relative;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #a7a6a6;
    font-size: 1.1rem;
    z-index: 2;
}

.search-box input {
        width: 100%;
        padding: 15px 15px 15px 50px;
        border: 1px solid #ccc;
        border-radius: 0 !important;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: #FFF;
        /* box-shadow: none; */
        /* overflow: hidden; */
}

.search-box input:focus {
    outline: none;
    border-color: #A07A5C;
    background: white;
    box-shadow: 0 0 0 4px rgba(160, 122, 92, 0.15), inset 0 2px 4px rgba(0,0,0,0.05);
    transform: translateY(-1px);
}

/* Filter Options */
.filter-options {
        display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-option {
        display: flex;
        align-items: center;
        gap: 15px;
        cursor: pointer;
        padding: 0px 15px;
        transition: all 0.3s ease;
        border-radius: 0;
        background: transparent;
        border: 0;
        position: relative;
        overflow: hidden;
        flex-wrap: nowrap;
        margin-bottom: 0 !important;
}

.filter-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(160, 122, 92, 0.1) 0%, rgba(139, 111, 71, 0.1) 100%);
    transition: left 0.3s ease;
}

.filter-option:hover::before {
    left: 0;
}

.filter-option:hover {
   
}

.filter-option input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #aaaaaa;
    border-radius: 0 !important;
    position: relative;
    transition: all 0.3s ease;
    /* flex-shrink: 0; */
    background: white;
    box-shadow: none;
    }

.filter-option input[type="checkbox"]:checked + .checkmark {
    background: #016ea9;
    border-color: #016ea9;
    /* transform: scale(1.1); */
    box-shadow: none;
}

.filter-option input[type="checkbox"]:checked + .checkmark::after {
    content: 'âœ“';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-shadow: none;
}

.option-text {
    color: #2c3e50;
    font-size: 0.9rem;
    flex: 1;
    font-weight: 500;
    position: relative;
    z-index: 1;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}

/* Categories specific styling */
.categories-filter .option-text {
    font-size: 0.9rem;
    line-height: 18px;
}

.categories-filter .option-count {
    font-size: 0.8rem;
}

.option-count {
    color: #016ea9;
    font-size: 0.9rem;
    font-weight: 600;
    background: #f3f3f3;
    padding: 4px 8px;
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

/* Stars */
.stars {
    display: inline-flex;
    gap: 3px;
    position: relative;
    z-index: 1;
    align-items: center;
}

.stars i {
    color: #f39c12 !important;
    font-size: 0.75rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.stars i:hover {
    transform: scale(1.2);
    color: #e67e22;
}

/* Price Range */
.price-range {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: transparent;
    padding: 0;
    border-radius: 10px;
    border: 0;
    overflow: hidden;
    position: relative;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    flex-wrap: nowrap;
}

.price-inputs input {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(50% - 7.5px);
    width: calc(50% - 7.5px);
    padding: 12px 15px;
    border: 2px solid #98a0a7;
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
    font-weight: 600;
    background: white;
    transition: all 0.3s ease;
    box-shadow: none;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.price-inputs input:focus {
    outline: none;
    border-color: #A07A5C;
    box-shadow: 0 0 0 3px rgba(160, 122, 92, 0.1), inset 0 2px 4px rgba(0,0,0,0.05);
    transform: translateY(-1px);
}

.price-inputs span {
    color: #A07A5C;
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    flex-shrink: 0;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.price-slider {
    width: 100%;
    position: relative;
}

.price-slider input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 10px;
    background: linear-gradient(135deg, #e9ecef 0%, #f1f3f4 100%);
    outline: none;
    -webkit-appearance: none;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.price-slider input[type="range"]:hover {
    background: linear-gradient(135deg, #d1d5db 0%, #e5e7eb 100%);
}

.price-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #016ea9 0%, #016ea9 100%);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(160, 122, 92, 0.4), 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 3px solid white;
}

.price-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(160, 122, 92, 0.6), 0 4px 8px rgba(0,0,0,0.3);
}

.price-slider input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #A07A5C 0%, #8B6F47 100%);
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(160, 122, 92, 0.4), 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.price-slider input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(160, 122, 92, 0.6), 0 4px 8px rgba(0,0,0,0.3);
}

.price-display {
        text-align: center;
        font-weight: 700;
        color: #252423;
        font-size: 1.1rem;
        background: transparent;
        padding: 1px 20px;
        border-radius: 4px;
        border: 0;
        text-shadow: none;
        letter-spacing: 0.5px;
}

/* Products Section */
.products-section {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    backdrop-filter: inherit;
    border: 0;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f3f4;
}

.results-info {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sort-options select {
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    background: white;
    color: #2c3e50;
    cursor: pointer;
}

.view-toggle {
    display: flex;
    gap: 5px;
}

.view-btn {
    width: 40px;
    height: 40px;
        border: 2px solid #e9ecef;
        background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    color: #7f8c8d;
    }

.view-btn.active,
.view-btn:hover {
        border-color: #016ea9;
        background: #016ea9;
        color: white;
}

/* Products Grid */
    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
        margin-bottom: 31px;
    }

.products-grid.list-view {
    grid-template-columns: 1fr;
    }

    .product-card {
        background: white;
        border-radius: 0;
        overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        position: relative;
    }

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

    .product-image {
        position: relative;
    height: 200px;
        overflow: hidden;
    }

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    transition: all 0.3s ease;
    }

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

.product-badges {
        position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    line-height: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.bestseller {
    /* background: linear-gradient(135deg, #A07A5C 0%, #8B6F47 100%); */
    /* color: white; */
}

.badge.new {
    /* background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%); */
    /* color: white; */
}

.badge.sale {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

    .product-actions {
        position: absolute;
    top: 10px;
    right: 10px;
        display: flex;
        flex-direction: column;
    gap: 8px;
        opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    }

    .product-card:hover .product-actions {
        opacity: 1;
    transform: translateX(0);
    }

   

 

    .product-info {
    padding: 20px;
    }

    .product-category {
        color: #016ea9;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 8px;
    }

.product-name {
        color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: #A07A5C;
}

.product-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    }

    .product-description {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 12px;
    }

    .product-rating {
        display: flex;
        align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.product-rating .stars {
    display: flex;
    gap: 2px;
}

.product-rating .stars i {
        color: #f39c12;
    font-size: 0.8rem;
}

.rating-count {
    color: #7f8c8d;
    font-size: 0.8rem;
    }
 

  
    .original-price {
    color: #7f8c8d;
    font-size: 0.9rem;
        text-decoration: line-through;
    }

.discount {
    background: #7ca103;
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    }

    .add-to-cart-btn {
        width: 100%;
        padding: 12px;
        background: #016ea9;
        color: white;
        border: none;
        border-radius: 4px;
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .add-to-cart-btn:hover {
    background: #7ca103;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(160, 122, 92, 0.3);
}

/* Loading Indicator */
.loading-indicator {
        display: flex;
    flex-direction: column;
        align-items: center;
    gap: 15px;
    padding: 40px;
    color: #7f8c8d;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f1f3f4;
    border-top: 4px solid #A07A5C;
        border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* No Results */
.no-results {
        text-align: center;
    padding: 60px 20px;
    color: #7f8c8d;
}

.no-results i {
    font-size: 4rem;
    color: #e9ecef;
    margin-bottom: 20px;
}

.no-results h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.no-results p {
    margin-bottom: 25px;
}

 .section-footer {
    /* margin-top: 60px; */
}
.page-header {
    margin-bottom: 50px;
} 


 
    /* Product Detail Page Styles */
    .product-detail-page {
        /* background: linear-gradient(135deg, #966F54 0%, #8B5A3C 50%, #A07A5C 100%); */
        min-height: 100vh;
        /* padding: 40px 0; */
        position: relative;
        overflow-x: hidden;
    }

    .product-detail-page::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.04)"/><circle cx="10" cy="60" r="0.8" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="40" r="0.6" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        opacity: 0.3;
        pointer-events: none;
        z-index: 0;
    }

    /* Container styles are now managed in layouts/app.blade.php */

    /* Breadcrumb */
    .breadcrumb {
        background: transparent;
        padding: 15px 0px;
        border-radius: 0;
        margin-bottom: 30px;
        box-shadow: none;
        backdrop-filter: blur(20px);
        border: 0;
    }

    .breadcrumb ul {
        list-style: none;
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0;
        padding: 0;
        position: relative;
        z-index: 1;
    }

    .breadcrumb a {
        color: #016ea9;
        text-decoration: none;
        transition: color 0.3s ease;
        font-weight: 500;
    }

    .breadcrumb a:hover {
        color: #016ea9;
    }

    .breadcrumb .separator {
        color: #016ea9;
        font-size: 14px;
        opacity: 0.7;
    }

    /* Product Detail Container */
    .product-detail-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        background: transparent;
        border-radius: 20px;
        padding: 0;
        box-shadow: none;
        margin-bottom: 30px;
        backdrop-filter: blur(20px);
        border: 0;
    }

    /* Product Gallery */
    .product-gallery {
        position: relative;
        background: transparent;
        border-radius: 16px;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        min-height: 650px;
        box-shadow: none;
        border: 0;
    }

    .main-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 600px;
        min-height: 500px;
        object-fit: contain;
        object-position: top center;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        background: #FFFF;
    }

    .main-image:hover {
        transform: scale(1.03);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

    .thumbnail-gallery {
        display: flex;
        gap: 12px;
        margin-top: 20px;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .thumbnail {
        width: 90px;
        height: 90px;
        min-width: 70px;
        min-height: 70px;
        object-fit: contain;
        object-position: center;
        border-radius: 10px;
        cursor: pointer;
        border: 3px solid transparent;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        background: white;
        padding: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        flex-shrink: 0;
    }

    .thumbnail:hover {
        border-color: #016ea9;
        transform: translateY(-3px) scale(1.08);
        box-shadow: 0 6px 20px rgba(160, 122, 92, 0.25);
    }

    .thumbnail.active {
        border-color: #016ea9;
        border-width: 3px;
        box-shadow: none;
        transform: scale(1.05);
        background: #FFF;
    }

    /* Product Info */
    .product-info {
        padding-left: 20px;
    }

    .product-badges {
        display: flex;
        gap: 10px;
        margin-bottom: 15px;
    }
 
 

    .badge.sale {
        background: linear-gradient(135deg, #e74c3c, #c0392b);
        color: white;
        box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    }

    .badge.hot {
        background: linear-gradient(135deg, #f39c12, #e67e22);
        color: white;
        box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    }

    .badge.bestseller {
        /* background: linear-gradient(135deg, #8e44ad, #9b59b6); */
        /* color: white; */
        /* box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3); */
    }

    .product-category {
        color: #016ea9;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .product-title {
        /* font-size: 2.5rem; */
        /* font-weight: 800; */
        /* color: #2c3e50; */
        margin-bottom: 10px;
        /* line-height: 1.1; */
    }

 

    .clickable-rating {
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 5px 8px;
        border-radius: 8px;
        color: #8B5A3C;
        text-decoration: underline;
        text-decoration-color: transparent;
        text-underline-offset: 3px;
    }

    .clickable-rating:hover {
        background: rgba(139, 90, 60, 0.1);
        transform: translateY(-1px);
        color: #966F54;
        text-decoration-color: #966F54;
        text-decoration-thickness: 2px;
    }

    .stars {
        display: flex;
        gap: 3px;
    }

    .stars i {
        color: #f39c12;
        font-size: 18px;
    }

    .rating-text {
        color: #7f8c8d;
        font-size: 14px;
        line-height: 1.3;
    }

    .price-section {
        margin-bottom: 25px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
    }

    .price-main {
        display: flex;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .price-meta {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 5px;
    }

    .meta-small {
        font-size: 0.85rem;
        color: #6c757d;
        font-weight: 500;
    }

    .stock-small {
        /* color: #016ea9; */
        display: flex;
        align-items: center;
        gap: 3px;
    }

    .stock-small i {
        font-size: 0.7rem;
    }

    .current-price {
        font-size: 18px;
        font-weight: 700;
        color: #016ea9;
        margin-right: 15px;
    }
 

    .discount {
        background: #7ca103;
        color: white;
        padding: 5px 10px;
        border-radius: 15px;
        font-size: 14px;
        font-weight: 600;
        line-height: 20px;
    }

    /* Product Description */
    .product-description {
        color: #5a6c7d;
        line-height: 1.6;
        margin-bottom: 25px;
        font-size: 16px;
    }

    /* Product Features */
    .product-features {
        margin-bottom: 25px;
    }

    .features-title {
        font-size: 1.3rem;
        font-weight: 700;
        /* color: #2c3e50; */
        margin-bottom: 15px;
    }

    .features-list {
        list-style: none;
        padding: 0;
    }

    .features-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 8px;
        color: #5a6c7d;
        line-height: 1.3;
    }

    .features-list li i {
        color: #7ca103;
        font-size: 16px;
    }

    /* Product Meta Data Below Add to Cart */
    .product-meta-below {
        display: flex;
        gap: 40px;
        margin: 20px 0;
        padding: 15px 0;
        border-top: 1px solid #e9ecef;
    }

    .meta-item-below {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .meta-item-below .meta-label {
        font-size: 0.9rem;
        font-weight: 600;
        color: #6c757d;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .meta-item-below .meta-value {
        font-size: 1rem;
        font-weight: 500;
        color: #2c3e50;
    }

    .quantity-label {
        font-size: 1.1rem;
        font-weight: 600;
        /* color: #2c3e50; */
        margin-bottom: 14px;
    }

    .quantity-selector {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 25px;
    }

    .quantity-controls {
        display: flex;
        align-items: center;
        border: 2px solid #e9ecef;
        border-radius: 8px;
        overflow: hidden;
    }

    .quantity-btn {
        background: #f8f9fa;
        border: none;
        padding: 12px 16px;
        cursor: pointer;
        font-size: 18px;
        font-weight: 600;
        color: #2c3e50;
        transition: all 0.3s ease;
    }

    .quantity-btn:hover {
        background: #e9ecef;
    }

    .quantity-input {
        border: none;
        padding: 12px 16px;
        text-align: center;
        font-size: 16px;
        font-weight: 600;
        color: #2c3e50;
        width: 60px;
        background: white;
    }

    .action-buttons {
        display: flex;
        gap: 15px;
        margin-bottom: 25px;
    }

    .btn-add-cart {
        background: #016ea9;
        color: white;
        border: none;
        padding: 15px 30px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1;
        justify-content: center;
    }

    .btn-add-cart:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(139, 90, 60, 0.3);
        background: #7ca103;
    }

    .btn-wishlist {
        background: white;
        color: #7ca103;
        border: 2px solid #7ca103;
        padding: 15px 20px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .btn-wishlist:hover {
        background: #7ca103;
        color: white;
        transform: translateY(-2px);
    }

    /* Product Meta - Removed as now using inline version */

    .meta-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid #e9ecef;
    }

    .meta-item:last-child {
        border-bottom: none;
    }

    .meta-label {
        font-weight: 600;
        color: #2c3e50;
    }

    .meta-value {
        color: #666;
    }

    .stock-status {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .stock-status.in-stock {
        color: #8B5A3C;
        font-weight: 600;
    }

    .stock-status.in-stock i {
        color: #8B5A3C;
    }

    /* Small Promotional Blocks */
    .promotional-blocks-small {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin: 15px 0;
        padding: 0;
        background: #f8f9fa;
        border-radius: 12px;
        border: 0;
    }

    .promo-block-small {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px;
        background: white;
        border-radius: 8px;
        transition: all 0.3s ease;
        border: 1px solid #e9ecef;
    }

    .promo-block-small:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border-color: #A07A5C;
    }

    .promo-icon-small {
        width: 35px;
        height: 35px;
        background: #7ca103;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .promo-icon-small i {
        font-size: 14px;
        color: white;
    }

    .promo-content-small {
        flex: 1;
        min-width: 0;
    }

    .promo-title-small {
        font-size: 0.9rem;
        font-weight: 600;
        color: #2c3e50;
        margin: 0 0 2px 0;
        line-height: 1.2;
    }

    .promo-description-small {
        color: #666;
        margin: 0;
        line-height: 1.3;
        font-size: 0.75rem;
    }

    /* Product Information Tabs */
    .product-info-tabs {
        background: #f8f9fa;
        padding: 30px 0;
        margin: 30px 0;
    }

    .tabs-navigation {
        display: flex;
        justify-content: flex-start;
        gap: 0;
        margin-bottom: 25px;
        border-bottom: 2px solid #e9ecef;
        padding-bottom: 0;
    }

    .tab-btn {
        background: transparent;
        border: none;
        padding: 12px 20px;
        font-size: 0.95rem;
        font-weight: 600;
        /* color: #666; */
        cursor: pointer;
        border-radius: 0;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 6px;
        position: relative;
        border-bottom: 3px solid transparent;
    }

    .tab-btn:hover {
        background: transparent;
        color: #016ea9;
    }

    .tab-btn.active {
        background: transparent;
        color: #016ea9;
        border-bottom: 3px solid #016ea9;
    }

    .tab-btn i {
        font-size: 1.1rem;
    }

    .tabs-content {
        width: 100%;
        margin: 0;
        min-height: auto;
        overflow-y: visible;
    }

    .tab-panel {
        display: none;
        animation: fadeIn 0.3s ease;
        width: 100%;
    }

    .tab-panel.active {
        display: block;
        width: 100%;
    }

    .tab-panel h3 {
        /* color: #2c3e50; */
        margin-bottom: 8px;
        font-size: 1.2rem;
        text-align: left;
    }

    .materials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }

    .material-item {
        background: white;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        display: flex;
        align-items: center;
        gap: 10px;
        transition: transform 0.3s ease;
    }

    .material-item:hover {
        transform: translateY(-5px);
    }

    .material-item i {
        color: #A07A5C;
        font-size: 1.5rem;
    }

    .material-item span {
        font-weight: 600;
        color: #2c3e50;
    }

    /* Features Grid */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .feature-item {
        background: white;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        display: flex;
        align-items: flex-start;
        gap: 15px;
        transition: transform 0.3s ease;
    }

    .feature-item:hover {
        transform: translateY(-5px);
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #A07A5C, #8B6F47);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .feature-icon i {
        color: white;
        font-size: 1.2rem;
    }

    .feature-content h4 {
        color: #2c3e50;
        margin: 0 0 8px 0;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .feature-content p {
        color: #5a6c7d;
        margin: 0;
        line-height: 1.5;
        font-size: 0.9rem;
    }

    /* Care Guide */
    .care-sections {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: -30px;
    z-index: 9;
    position: relative;
}
    .care-section {
        background: white;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }

    .care-section h4 {
        color: #2c3e50;
        margin: 0 0 15px 0;
        font-size: 1.1rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .care-section h4 i {
        color: #A07A5C;
        font-size: 1rem;
    }

    .care-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .care-section li {
        color: #5a6c7d;
        margin-bottom: 8px;
        padding-left: 20px;
        position: relative;
        line-height: 1.5;
    }

    .care-section li::before {
        content: "â€¢";
        color: #A07A5C;
        font-weight: bold;
        position: absolute;
        left: 0;
    }

    /* Social Sharing */
    .social-sharing {
        background: white;
        padding: 10px 0;
        border-top: 1px solid #e9ecef;
        border-bottom: 1px solid #e9ecef;
        position: fixed;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1000;
    }

    .sharing-icons {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .share-btn {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.9rem;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .share-btn.facebook {
        background: #3b5998;
        color: white;
    }

    .share-btn.pinterest {
        background: #bd081c;
        color: white;
    }

    .share-btn.whatsapp {
        background: #25d366;
        color: white;
    }

    .share-btn.copy-link {
        background: #A07A5C;
        color: white;
    }

    .share-btn:hover {
        transform: translateY(-2px) scale(1.1);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    /* Expandable Sections */
    .expandable-sections {
        background: #f8f9fa;
        padding: 30px 0;
    }

    .accordion {
        max-width: 800px;
        margin: 0 auto;
    }

    .accordion-item {
        background: white;
        border-radius: 12px;
        margin-bottom: 20px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        overflow: hidden;
    }

    .accordion-header {
        /* padding: 20px 25px; */
        /* cursor: pointer; */
        /* display: flex; */
        /* justify-content: space-between; */
        /* align-items: center; */
        /* transition: background 0.3s ease; */
        /* border-bottom: 1px solid #e9ecef; */
    }

    .accordion-header:hover {
        background: rgba(160, 122, 92, 0.05);
    }

    .accordion-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: #2c3e50;
    }

    .accordion-icon {
        color: #A07A5C;
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }

    .accordion-item.active .accordion-icon {
        transform: rotate(45deg);
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .accordion-item.active .accordion-content {
        max-height: 500px;
    }

    .details-content {
        padding: 10px;
    }

    .detail-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 3px 0;
        border-bottom: 1px solid #f1f3f4;
        margin-bottom: 2px;
    }

    .detail-row:last-child {
        border-bottom: none;
    }

    .detail-label {
        /* font-weight: 600; */
        /* color: #2c3e50; */
    }

    .detail-value {
        /* color: #666; */
    }

    /* Product Description in Details Tab */
    .product-description-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e9ecef;
    }

    .product-description-section h4 {
        /* color: #2c3e50; */
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .product-description-content {
        /* color: #5a6c7d; */
        /* line-height: 1.6; */
        /* font-size: 16px; */
    }

    .product-description-content p {
        margin-bottom: 15px;
    }

    .product-description-content ul, 
    .product-description-content ol {
        margin-bottom: 15px;
        padding-left: 20px;
    }

    .product-description-content li {
        margin-bottom: 8px;
    }

    .shipping-content {
        padding: 0;
    }

    .shipping-option {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        border-bottom: 1px solid #f1f3f4;
    }

    .shipping-option:last-child {
        border-bottom: none;
    }

    .shipping-icon {
        background: linear-gradient(135deg, #A07A5C, #8B6F47);
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .shipping-info {
        flex: 1;
    }

    .shipping-info h4 {
        color: #2c3e50;
        margin: 0 0 5px 0;
        font-size: 1.1rem;
    }

    .shipping-info p {
        color: #666;
        margin: 0 0 8px 0;
        font-size: 0.9rem;
    }

    .shipping-price {
        background: #A07A5C;
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
    }

    /* Promotional Blocks */
    .promotional-blocks {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        margin-bottom: 30px;
    }

    .promo-block {
        background: #f8f9fa;
        border-radius: 15px;
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 15px;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .promo-block:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        border-color: #A07A5C;
    }

    .promo-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #A07A5C, #8B6F47);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .promo-icon i {
        font-size: 20px;
        color: white;
    }

    .promo-content {
        flex: 1;
    }

    .promo-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 8px 0;
    }

    .promo-description {
        color: #5a6c7d;
        margin: 0;
        line-height: 1.5;
        font-size: 14px;
    }

    /* Review Summary */
    .review-summary {
        display: flex;
        align-items: center;
        gap: 30px;
        padding: 25px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        margin-bottom: 30px;
    }

    .overall-rating {
        min-width: 150px;
        text-align: center;
    }

    .rating-score {
        font-size: 24px;
        font-weight: 600;
        /* color: #A07A5C; */
        margin-bottom: 5px;
    }

    .rating-stars {
        display: flex;
        justify-content: center;
        gap: 3px;
        margin-bottom: 10px;
    }

    .rating-stars i {
        color: #f39c12;
        font-size: 20px;
    }

    .rating-breakdown {
        flex: 1;
    }

    .rating-bar {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 8px;
    }

    .rating-label {
        font-size: 0.9rem;
        color: #2c3e50;
        min-width: 60px;
    }

    .rating-progress {
        flex: 1;
        height: 8px;
        background: #e9ecef;
        border-radius: 4px;
        overflow: hidden;
    }

    .rating-fill {
        height: 100%;
        background: #016ea9;
        border-radius: 4px;
        transition: width 0.3s ease;
    }

    .rating-count {
        font-size: 0.9rem;
        color: #666;
        min-width: 30px;
        text-align: right;
    }

    /* Reviews Section */
    .reviews-section {
        background: #FFF;
        border-radius: 25px;
        padding: 40px;
        box-shadow: none;
        margin-bottom: 0;
        backdrop-filter: inherit;
        border: 0;
    }

    .reviews-header {
        /* display: flex; */
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 2px solid #e9ecef;
    }

    .reviews-title {
        /* font-size: 2rem; */
        /* font-weight: 800; */
        /* color: #2c3e50; */
    }

    .write-review-btn {
        background: #016ea9;
        color: white;
        border: none;
        padding: 12px 25px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .write-review-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(160, 122, 92, 0.3);
    }

    .review-card {
        background: #f8f9fa;
        border-radius: 15px;
        padding: 25px;
        margin-bottom: 20px;
        border-left: 4px solid #016ea9;
    }

    .review-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }

    .reviewer-info {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .reviewer-avatar {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: linear-gradient(135deg, #A07A5C, #8B6F47);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 600;
        font-size: 18px;
        overflow: hidden;
        position: relative;
    }

    .reviewer-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .avatar-fallback {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #A07A5C, #8B6F47);
        color: white;
        font-weight: 600;
        font-size: 18px;
        border-radius: 50%;
    }

    .reviewer-details h4 {
        margin: 0;
        /* color: #2c3e50; */
        font-size: 1.1rem;
    }

    .reviewer-details p {
        margin: 0;
        color: #7f8c8d;
        font-size: 0.9rem;
    }

    .review-rating {
        display: flex;
        gap: 2px;
    }

    .review-rating i {
        color: #f39c12;
        font-size: 16px;
    }

    .review-content {
        /* color: #5a6c7d; */
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .review-date {
        color: #95a5a6;
        font-size: 0.9rem;
    }

    /* No Reviews Section */
    .no-reviews {
        text-align: center;
        padding: 60px 20px;
        color: #666;
    }

    .no-reviews-icon {
        font-size: 4rem;
        color: #ddd;
        margin-bottom: 20px;
    }

    .no-reviews h3 {
        color: #2c3e50;
        margin-bottom: 10px;
    }

    .no-reviews p {
        margin-bottom: 30px;
        font-size: 1.1rem;
    }

    /* Reviews Pagination */
    .reviews-pagination {
        margin-top: 30px;
        text-align: center;
    }

    .reviews-pagination .pagination {
        justify-content: center;
    }

    .write-review {
        background: #f8f9fa;
        border-radius: 15px;
        padding: 25px;
        margin-top: 30px;
    }

    .write-review h3 {
        color: #2c3e50;
        margin-bottom: 20px;
        font-size: 1.3rem;
    }

    .login-prompt {
        text-align: center;
        padding: 40px 20px;
        background: #f8f9fa;
        border-radius: 10px;
        border: 2px dashed #dee2e6;
    }

    .login-prompt p {
        margin: 0;
        color: #6c757d;
        font-size: 1.1rem;
    }

    .rating-input {
        display: flex;
        gap: 5px;
        margin-bottom: 20px;
    }

    .rating-input i {
        font-size: 24px;
        color: #ddd;
        cursor: pointer;
        transition: color 0.2s ease;
    }

    .rating-input i:hover,
    .rating-input i.active {
        color: #f39c12;
    }

    .review-form textarea {
        width: 100%;
        min-height: 120px;
        padding: 15px;
        border: 2px solid #e9ecef;
        border-radius: 8px;
        font-size: 14px;
        resize: vertical;
        margin-bottom: 15px;
    }

    .review-form textarea:focus {
        outline: none;
        border-color: #A07A5C;
    }

    .submit-review-btn {
        background: linear-gradient(135deg, #A07A5C, #8B6F47);
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .submit-review-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(160, 122, 92, 0.3);
    }

    /* Related Products */
    .related-products {
        background: transparent;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
        margin-bottom: 50px;
        /* backdrop-filter: blur(20px); */
        border: 0;
    }

    .related-title {
        /* font-size: 2rem; */
        /* font-weight: 800; */
        color: #2c3e50;
        /* text-align: center; */
        /* margin-bottom: 40px; */
    }

    .related-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    @media (max-width: 1200px) {
        .related-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
    }

    @media (max-width: 900px) {
        .related-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
    }

    @media (max-width: 600px) {
        .related-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
    }

    .related-product-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
        /* border: 1px solid rgba(210, 180, 140, 0.2); */
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }

    .related-product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: transparent;
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 1;
    }

    .related-product-card:hover {
        transform: translateY(-10px) scale(1.02);
        /* box-shadow: 0 15px 40px rgba(160, 122, 92, 0.25), 0 5px 15px rgba(0, 0, 0, 0.1); */
        /* border-color: rgba(160, 122, 92, 0.4); */
    }

    .related-product-card:hover::before {
        opacity: 1;
    }

    .related-product-card .product-image {
        position: relative;
        overflow: hidden;
        padding: 20px 15px;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 250px;
        box-sizing: border-box;
    }

    .related-product-card .product-image img {
        width: 100%;
        height: 100%;
        max-height: 100%;
        object-fit: contain;
        object-position: center;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    .related-product-card .product-badges {
        position: absolute;
        top: 15px;
        left: 15px;
        z-index: 3;
    }

    .related-product-card .product-actions {
        position: absolute;
        top: 15px;
        right: 15px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 3;
    }

    .related-product-card:hover .product-actions {
        opacity: 1;
    }

    .related-product-card .action-btn {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        border: none;
        background: rgba(255,255,255,0.9);
        color: #6c757d;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .related-product-card .action-btn:hover {
        background: #8B5A3C;
        color: white;
        transform: scale(1.1);
    }

    .related-product-card .product-info {
        padding: 22px 20px;
        background: white;
        border-top: 1px solid rgba(210, 180, 140, 0.15);
    }

  

    .related-product-card .product-name {
        margin: 0 0 10px 0;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.4;
        transition: color 0.3s ease;
    }

    .related-product-card .product-name a {
        color: #2c3e50;
        text-decoration: none;
        transition: color 0.3s ease;
    }

  

    .related-product-card .product-rating {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 12px;
    }

    .related-product-card .stars {
        color: #ffc107;
        font-size: 14px;
    }

    .related-product-card .rating-count {
        font-size: 12px;
        color: #6c757d;
    }

    .related-product-card .product-price {
        margin-bottom: 15px;
    }

   

    .related-product-card .original-price {
        /* font-size: 14px; */
        color: #6c757d;
        text-decoration: line-through;
        margin-left: 8px;
    }

    .related-product-card .product-buttons {
        display: flex;
        gap: 10px;
    }

    .related-product-card .btn-add-cart {
        flex: 1;
        background: linear-gradient(135deg, #8B5A3C, #966F54);
        color: white;
        border: none;
        padding: 10px 15px;
        border-radius: 25px;
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .related-product-card .btn-add-cart:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(139, 90, 60, 0.3);
    }

    .related-product-card .btn-view-more {
        background: white;
        color: #8B5A3C;
        border: 2px solid #8B5A3C;
        padding: 10px 15px;
        border-radius: 25px;
        font-size: 12px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        min-width: 100px;
    }

    .related-product-card .btn-view-more:hover {
        background: #8B5A3C;
        color: white;
        transform: translateY(-2px);
    }

    .related-product {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
        cursor: pointer;
        border: 1px solid #e9ecef;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }

    .related-product:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        border-color: #A07A5C;
    }

    .related-product img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .related-product-info {
        padding: 15px;
    }

    .related-product-title {
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 8px;
        font-size: 0.95rem;
        line-height: 1.3;
    }

    .related-product-price {
        font-weight: 700;
        color: #A07A5C;
        font-size: 1.1rem;
    }
.price-section .current-price {
    font-size: 24px;
}
    /* Animations */
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }


 

.cart-page .container {
    position: relative;
    z-index: 1;
}

.cart-page .cart-content,
.cart-page .cart-summary {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Page Header Styles */
 
 

/* Cart Features */
.cart-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 25px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 180px;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-content h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.header-top {
    position: relative;
    z-index: 2;
    padding: 15px 0;
}

.header-main {
    position: relative;
    z-index: 2;
    padding: 20px 0;
    flex: 1;
    display: flex;
    align-items: center;
}

 

.cart-stats {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: white;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 1.5rem;
    color: #A07A5C;
    margin-bottom: 8px;
    display: block;
}

.stat-item span {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #A07A5C;
}

.stat-item small {
    font-size: 0.8rem;
    color: #A07A5C;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .page-header {
        min-height: 100px;
    }
    
    .title-text {
        font-size: 2rem;
    }
    
    .page-title i {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
        margin: 0 auto;
        text-align: center;
    }
    
    .cart-stats {
        justify-content: center;
        margin-top: 20px;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 10px;
    }
}

.cart-page {
    /* padding: 40px 0; */
    min-height: 60vh;
}

/* Container styling removed - using standard layout container */

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 20px;
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 768px) {
    .cart-container {
        margin-left: 0;
        margin-right: 0;
    }
}

.cart-items {
    background: transparent;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: none;
    \: hidden;
    border: 0;
    padding: 0;
}

.cart-header {
    background: transparent;
    color: white;
    padding: 0px 0px 20px;
    border-bottom: none;
}
.cart-page .page-header {
    margin-top: 84px;
    margin-bottom: 0;
}

.cart-page .page-subtitle {
    color: #000;
    text-align: left;
}
.cart-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    gap: 20px;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cart-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(160, 122, 92, 0.3);
}

.cart-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.item-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.item-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.item-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.item-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(160, 122, 92, 0.1) 0%, rgba(139, 90, 60, 0.1) 100%);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.item-image:hover::before {
    opacity: 1;
}

.item-details h3 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    font-weight: 700;
    /* color: #2c3e50; */
    text-shadow: none;
    transition: color 0.3s ease;
}

.cart-item:hover .item-details h3 {
    /* color: #016ea9; */
}

.item-category {
    margin: 0 0 12px 0;
    /* color: #7ca103; */
    font-size: 0.9rem;
    font-weight: 500;
    /* background: transparent; */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    /* background-clip: text; */
}

.item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #016ea9;
    /* background: linear-gradient(135deg, #27ae60, #2ecc71); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    /* background-clip: text; */
    /* text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); */
}

.item-quantity {
    text-align: center;
}

.item-quantity label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    background: #fdfeff;
    padding: 8px 15px;
    border-radius: 4px;
    border: 0;
    box-shadow: 0px 0px 10px rgba(0,0,0,.11);
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #016ea9;
    background: #016ea9;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(160, 122, 92, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #016ea9;
    transform: scale(1.1);
    box-shadow: 0 6px 20px #016ea9;
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-value {
    font-weight: 700;
    font-size: 1.2rem;
    min-width: 35px;
    height: 35px;
    text-align: center;
    color: #2c3e50;
    background: white;
    padding: 8px 12px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    line-height: 21px;
}

.item-total {
    text-align: right;
}

.total-price {
    font-size: 1.3rem;
    font-weight: 700;
    /* color: #016ea9; */
    margin-bottom: 12px;
    background: transparent;
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    /* background-clip: text; */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.remove-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.remove-btn:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.remove-btn:active {
    transform: translateY(0) scale(0.95);
}

.cart-summary {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 20px;
    border: 1px solid rgba(0,0,0,0.05);
}

 

.summary-details {
    margin-bottom: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    /* color: #667eea; */
    border-bottom: 1px solid #d3dade;
    margin-bottom: 25px;
}

.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkout-btn {
    background: linear-gradient(135deg, #1e5f3f 0%, #27ae60 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #27ae60 0%, #1e5f3f 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 95, 63, 0.3);
}

.continue-shopping {
    background: white;
    color: #1e5f3f;
    border: 2px solid #1e5f3f;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.continue-shopping:hover {
    background: #1e5f3f;
    color: white;
    transform: translateY(-2px);
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.empty-cart-icon {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 30px;
}

.empty-cart h2 {
    margin: 0 0 15px 0;
    font-size: 2rem;
    color: #333;
}

.empty-cart p {
    margin: 0 0 30px 0;
    color: #666;
    font-size: 1.1rem;
}

.start-shopping-btn {
    background: linear-gradient(135deg, #1e5f3f 0%, #27ae60 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.start-shopping-btn:hover {
    background: linear-gradient(135deg, #27ae60 0%, #1e5f3f 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 95, 63, 0.3);
}
a.btn-link {
    text-decoration: none;
    text-align: center;
    color: #000;
} 




.checkout-page {
    /* padding: 40px 0; */
    min-height: 60vh;
}

.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 20px;
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 768px) {
    .checkout-container {
        margin-left: 0;
        margin-right: 0;
    }
}

.checkout-form {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 30px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 0;
    background: transparent;
    border-radius: 20px;
    border: 0;
    box-shadow: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    opacity: 0.5;
    transition: all 0.3s ease;
    min-width: 160px;
    flex: 0 0 auto;
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E8E8E8 0%, #D0D0D0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #666;
    border: 0;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: #016ea9;
    color: white;
    box-shadow: none;
}

.step-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    margin-top: 8px;
}

.step.active .step-label {
    /* color: #1e5f3f; */
    font-weight: 600;
}

.checkout-step {
    display: none;
}

.checkout-step.active {
    display: block;
}

.step-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.step-header p {
    color: #666;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #1e5f3f;
    box-shadow: 0 0 0 3px rgba(30, 95, 63, 0.1);
}

.form-actions {
    margin-top: 30px;
    text-align: right;
}

 

 

.btn-primary:hover {
    /* transform: translateY(-2px); */
    box-shadow: 0 8px 25px rgba(30, 95, 63, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.order-summary {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 20px;
    border: 1px solid rgba(0,0,0,0.05);
}

.summary-header h3 {
    font-size: 1.5rem;
        font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.summary-items {
    margin-bottom: 30px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-item:last-child {
    border-bottom: none;
}

.item-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.item-details h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.item-category {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.item-quantity {
    font-size: 0.9rem;
    color: #666;
    text-align: left;
}

.item-price {
    font-weight: 600;
    /* color: #1e5f3f; */
    margin-left: auto;
}

.price-breakdown {
    border-top: 2px solid #f0f0f0;
    padding-top: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 10px 0;
}

.price-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    /* color: #1e5f3f; */
    border-top: 1px solid #8a928e;
    margin-top: 15px;
    padding-top: 15px;
}

.free {
    color: #27ae60;
    font-weight: 600;
}

/* Payment Methods */
.payment-methods {
    margin: 20px 0;
}

.payment-option {
    margin-bottom: 15px;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option label {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.payment-option label:hover {
    border-color: #1e5f3f;
    background: #f8f9fa;
}

.payment-option input[type="radio"]:checked + label {
    border-color: #1e5f3f;
    background: #f0f8f0;
}

.payment-option label i {
    font-size: 1.2rem;
    margin-right: 10px;
    color: #1e5f3f;
}

/* Review Section */
.review-section {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.review-section h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-message i {
    font-size: 4rem;
    color: #7ca103;
    margin-bottom: 20px;
}

.success-message h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.success-message p {
    color: #666;
    margin-bottom: 20px;
}

.order-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.order-details p {
    margin: 5px 0;
    color: #333;
}
.nav-content .search-box input {
    border-radius: 100px !important;
}
 /* Contact Page Styles */
.contact-page {
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}
 z-index: 0;
}

/* Container styles are now managed in layouts/app.blade.php */

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 100px 0;
    min-height: 80vh;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.title-highlight {
    background: linear-gradient(135deg, #A07A5C 0%, #8B6F47 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.title-main {
    color: #2c3e50;
    display: block;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 50px;
    font-weight: 400;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #A07A5C, #8B6F47, #A07A5C);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #A07A5C 0%, #8B6F47 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(160, 122, 92, 0.3);
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #A07A5C;
    margin-bottom: 5px;
}

.stat-label {
    color: #7f8c8d;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-image {
    animation: slideInRight 1s ease-out;
    position: relative;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 30px;
}

.floating-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #A07A5C;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
}

.floating-card:nth-child(2) {
    animation-delay: 1s;
}

.floating-card:nth-child(3) {
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

 
 
 

/* Contact Methods */
.contact-methods {
    padding: 80px 0;
}

.methods-grid {
        display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    }

.method-card {
        background: white;
    padding: 40px 30px;
        border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #A07A5C, #8B6F47, #A07A5C);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #A07A5C 0%, #8B6F47 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
        font-size: 2rem;
    box-shadow: 0 10px 30px rgba(160, 122, 92, 0.3);
}

.method-card h3 {
        color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.method-card p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-details {
    margin-bottom: 20px;
}

.detail-item {
        display: flex;
    justify-content: space-between;
        align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f4;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item .label {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.detail-item .value {
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.9rem;
}

.detail-item .value.online {
    color: #27ae60;
}

.method-hours {
        display: flex;
        align-items: center;
        justify-content: center;
    gap: 8px;
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.method-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #A07A5C 0%, #8B6F47 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
        font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(160, 122, 92, 0.3);
}

.method-btn:hover {
    background: linear-gradient(135deg, #8B6F47 0%, #7A5F3A 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(160, 122, 92, 0.4);
    color: white;
    text-decoration: none;
}

.chat-btn {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.chat-btn:hover {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

/* Live Chat Widget Styles */
.live-chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    height: 600px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    z-index: 9999;
    overflow: hidden;
    animation: slideUpChat 0.3s ease-out;
}

@keyframes slideUpChat {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.chat-widget-header {
    background: linear-gradient(135deg, #A07A5C, #8B6F47);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.chat-header-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chat-status {
    font-size: 11px;
    opacity: 0.9;
}

.chat-status.online::before {
    content: 'â— ';
    color: #27ae60;
}

.chat-close-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 18px;
}

.chat-close-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-message {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    animation: fadeInMessage 0.3s ease-out;
}

@keyframes fadeInMessage {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bot-message .message-avatar {
    background: linear-gradient(135deg, #A07A5C, #8B6F47);
    color: white;
}

.user-message .message-avatar {
    background: #e9ecef;
    color: #495057;
}

.message-content {
    max-width: 75%;
    background: white;
    padding: 12px 16px;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.user-message .message-content {
    background: linear-gradient(135deg, #A07A5C, #8B6F47);
    color: white;
}

.message-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.message-time {
    font-size: 11px;
    opacity: 0.6;
    display: block;
    margin-top: 5px;
}

.typing-indicator .message-content {
    background: white;
    padding: 12px 16px;
}

.typing-dots {
    display: flex;
    gap: 4px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: #A07A5C;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.chat-input-area {
    padding: 15px;
    background: white;
    border-top: 1px solid #e9ecef;
}

.chat-input-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

#chatMessageInput {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

#chatMessageInput:focus {
    border-color: #A07A5C;
}

.chat-send-btn {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #A07A5C, #8B6F47);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(160, 122, 92, 0.4);
}

.chat-quick-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.quick-action-btn {
    padding: 6px 12px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #495057;
}

.quick-action-btn:hover {
    background: #A07A5C;
    color: white;
    border-color: #A07A5C;
}

.live-chat-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #A07A5C, #8B6F47);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(160, 122, 92, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    transition: all 0.3s ease;
}

.live-chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(160, 122, 92, 0.5);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Contact Form Section */
.contact-form-section {
    padding: 40px;
    background: white;
    margin: 0;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}
 
 

.contact-form {
    display: grid;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    }

    .form-group {
    display: flex;
    flex-direction: column;
    }

.form-group label {
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 8px;
    font-size: 0.95rem;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #b1aca9;
    font-size: 1rem;
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
}

.phone-prefix {
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
    color: #A07A5C;
    font-weight: 600;
    font-size: 1rem;
    z-index: 2;
    pointer-events: none;
    user-select: none;
}

.phone-input-wrapper i {
    left: 15px;
}

.phone-input-wrapper input {
    padding-left: 70px;
}

@media (max-width: 768px) {
    .phone-prefix {
        left: 40px;
        font-size: 0.9rem;
    }
    
    .phone-input-wrapper input {
        padding-left: 65px;
    }
}

@media (max-width: 480px) {
    .phone-prefix {
        left: 38px;
        font-size: 0.85rem;
    }
    
    .phone-input-wrapper input {
        padding-left: 60px;
        font-size: 0.9rem;
    }
}

 

.input-wrapper input:focus {
        outline: none;
        border-color: #016ea9;
        background: white;
        box-shadow: 0 0 0 3px rgba(160, 122, 92, 0.1);
    }

.textarea-wrapper {
    position: relative;
}

.textarea-wrapper i {
    position: absolute;
    left: 15px;
    top: 20px;
    color: #b1aca9;
    font-size: 1rem;
}

.textarea-wrapper textarea {
    width: 100%;
    padding: 20px 15px 20px 45px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
        min-height: 120px;
        resize: vertical;
    font-family: inherit;
}

.textarea-wrapper textarea:focus {
    outline: none;
    border-color: #A07A5C;
    background: white;
    box-shadow: 0 0 0 3px rgba(160, 122, 92, 0.1);
}

.priority-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .priority-option {
        position: relative;
    }

    .priority-option input[type="radio"] {
        position: absolute;
        opacity: 0;
    }

    .priority-option label {
        display: flex;
    flex-direction: column;
        align-items: center;
    padding: 20px 15px;
        border: 2px solid #e9ecef;
    border-radius: 15px;
        cursor: pointer;
        transition: all 0.3s ease;
    background: #f8f9fa;
    text-align: center;
    }

    .priority-option input[type="radio"]:checked + label {
        border-color: #016ea9;
        background: linear-gradient(135deg, rgba(160, 122, 92, 0.1) 0%, rgba(139, 111, 71, 0.1) 100%);
        box-shadow: 0 4px 15px rgba(160, 122, 92, 0.2);
    }

    .priority-option label:hover {
        border-color: #016ea9;
        background: white;
}

.priority-icon {
    width: 40px;
    height: 40px;
    background: #016ea9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.priority-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.priority-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.priority-desc {
    color: #7f8c8d;
    font-size: 0.8rem;
    }

    .submit-btn {
        width: 100%;
        padding: 18px 30px;
        background: #7ca103;
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        box-shadow: 0 4px 15px rgba(160, 122, 92, 0.3);
        position: relative;
        overflow: hidden;
    }

   

    .submit-btn:disabled {
        background: #6c757d;
        cursor: not-allowed;
        transform: none;
    box-shadow: none;
    }

.btn-loading {
        display: flex;
        align-items: center;
    gap: 10px;
}

/* Alerts */
.alert {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
        display: flex;
        align-items: center;
    gap: 12px;
    font-weight: 500;
    border: 2px solid transparent;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-color: #c3e6cb;
}

.alert-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-color: #f5c6cb;
}

.alert i {
    font-size: 1.2rem;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 8px;
        display: flex;
        align-items: center;
    gap: 5px;
}

/* Office Information */
.office-info {
    padding: 80px 0;
}

.office-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.office-card {
        background: white;
    padding: 30px;
        border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.office-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #A07A5C, #8B6F47, #A07A5C);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.office-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #A07A5C 0%, #8B6F47 100%);
    border-radius: 50%;
        display: flex;
        align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(160, 122, 92, 0.3);
}

.office-content h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.office-content p {
    color: #7f8c8d;
        line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .priority-selector {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Live Chat Widget Styles */
.live-chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 320px;
    height: 480px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    z-index: 9999;
    overflow: hidden;
    animation: slideUpChat 0.3s ease-out;
}

@keyframes slideUpChat {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.chat-widget-header {
    background: linear-gradient(135deg, #A07A5C, #8B6F47);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-avatar {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.chat-header-info h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.chat-status {
    font-size: 11px;
    opacity: 0.9;
}

.chat-status.online::before {
    content: 'â— ';
    color: #27ae60;
}

.chat-close-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 18px;
}

.chat-close-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-message {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    animation: fadeInMessage 0.3s ease-out;
}

@keyframes fadeInMessage {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bot-message .message-avatar {
    background: linear-gradient(135deg, #A07A5C, #8B6F47);
    color: white;
}

.user-message .message-avatar {
    background: #e9ecef;
    color: #495057;
}

.message-content {
    max-width: 75%;
    background: white;
    padding: 12px 16px;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.user-message .message-content {
    background: linear-gradient(135deg, #A07A5C, #8B6F47);
    color: white;
}

.message-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.message-time {
    font-size: 11px;
    opacity: 0.6;
    display: block;
    margin-top: 5px;
}

.typing-indicator .message-content {
    background: white;
    padding: 12px 16px;
}

.typing-dots {
    display: flex;
    gap: 4px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: #A07A5C;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.chat-input-area {
    padding: 15px;
    background: white;
    border-top: 1px solid #e9ecef;
}

.chat-input-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

#chatMessageInput {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

#chatMessageInput:focus {
    border-color: #A07A5C;
}

.chat-send-btn {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #A07A5C, #8B6F47);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(160, 122, 92, 0.4);
}

.chat-quick-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.quick-action-btn {
    padding: 6px 12px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #495057;
}

.quick-action-btn:hover {
    background: #A07A5C;
    color: white;
    border-color: #A07A5C;
}

.live-chat-toggle {
    position: fixed;
    bottom: 95px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #7ca103;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(160, 122, 92, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    transition: all 0.3s ease;
}

.live-chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(160, 122, 92, 0.5);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
 

.user-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.04)"/><circle cx="10" cy="60" r="0.8" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="40" r="0.6" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.user-dashboard .dashboard-container {
    position: relative;
    z-index: 1;
}

.user-dashboard .sidebar,
.user-dashboard .main-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
   /* User Dashboard Styles - Footer Type Color Scheme */
        .user-dashboard {
            min-height: 100vh;
            /* padding: 20px; */
            /* padding-top: 80px; */ /* Extra padding to avoid header overlap */
        }

        /* Ensure main navigation has correct background */
        .main-navigation {
            background: linear-gradient(135deg, #A07A5C 0%, #8B6F47 100%) !important;
        }

        .nav-menu {
            background: transparent !important;
        }

        .nav-item {
            background: transparent !important;
        }

        .nav-link {
            background: transparent !important;
            color: white !important;
        }

        .nav-link:hover {
            background: rgba(255, 255, 255, 0.1) !important;
            color: white !important;
        }

        /* Fix dropdown menu backgrounds */
        .dropdown-menu {
            background: linear-gradient(135deg, #A07A5C 0%, #8B6F47 100%) !important;
        }

        .dropdown-link {
            background: transparent !important;
            color: white !important;
        }

        .dropdown-link:hover {
            background: linear-gradient(135deg, #8B6F47 0%, #7A5F3A 100%) !important;
            color: white !important;
        }

        /* Override any conflicting styles */
        .dropdown-menu * {
            background: transparent !important;
        }

.dashboard-container {
    display: flex;
    gap: 20px;
    max-width: 1600px;
    margin: 0 60px;
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 25px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.user-info {
    text-align: center;
    margin-bottom: 30px;
}

.user-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #e9ecef;
}

.user-details h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
    word-wrap: break-word;
}

.user-details p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 8px;
}

.user-details p.user-email {
    font-size: 12px;
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.user-badge {
    background: #016ea9; /* Footer brown color */
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.sidebar-nav {
    margin-bottom: 20px;
}

.sidebar .nav-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 15px;
    margin-bottom: 5px;
    border-radius: 8px;
    text-decoration: none;
    color: #25282a;
    transition: all 0.3s ease;
    position: relative;
    text-align: left;
}

.sidebar .nav-item:hover {
    background: #f8f9fa;
    /* color: #2c3e50; */
}

.sidebar .nav-item.active {
    background: #bbe4fb !important; /* Same as footer background color */
    /* color: white !important; */
    box-shadow: 0 2px 8px rgba(160, 122, 92, 0.3) !important;
}

.sidebar .nav-item i {
    margin-right: 12px;
    width: 16px;
    text-align: left;
    flex-shrink: 0;
}

.badge {
    /* margin-left: auto; */
    /* padding: 4px 8px; */
    /* border-radius: 50%; */
    /* font-size: 12px; */
    /* font-weight: 600; */
    /* color: white; */
    background: #016ea9;
    color: #FFF;
    text-align: center;
}

.badge.blue { background: #3498db; }
.badge.red { background: #e74c3c; }
.badge.yellow { background: #f39c12; }

.divider {
    height: 1px;
    background: #e9ecef;
    margin: 20px 0;
}

.account-settings {
    margin-top: 20px;
}

/* Main Content */
.dashboard-container .main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 30px;
}

/* Profile Styles */
.profile-header {
    background: #bbe4fb; /* Footer brown gradient */
    /* color: white; */
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.profile-avatar {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.profile-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.change-avatar-btn {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #7ca103;
    border: 2px solid white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.change-avatar-btn:hover {
    background: #7ca103;
    transform: scale(1.1);
}

.photo-upload-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 20;
}

.profile-info h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.profile-info p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.member-since {
    font-size: 14px;
    opacity: 0.8;
    background: #a5cfe6;
    padding: 4px 12px;
    border-radius: 20px;
    color: #000;
}

.profile-form {
    max-width: 100%;
}

.form-section {
    margin-bottom: 30px;
}

 
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}
 

 

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

 
 
. 

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    color: white;
    text-decoration: none;
}

.loading {
    display: none;
}

/* Main Content */
 

.orders-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 30px;
}

/* Orders Styles */
.orders-header {
    margin-bottom: 40px;
}

 
 .order-detail-container {
    padding: 20px;
}
.orders-grid {
    display: grid;
    gap: 20px;
}

.order-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.order-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.order-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.order-number {
    color: #7f8c8d;
    font-size: 14px;
}

.order-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 16px;
}

.order-status.pending {
    background: #016ea9;
    color: #ffffff;
}

.order-status.processing {
    background: #d1ecf1;
    color: #0c5460;
}

.order-status.shipped {
    background: #d4edda;
    color: #155724;
}

.order-status.delivered {
    background: #d1ecf1;
    color: #0c5460;
}

.order-status.cancelled {
    background: #f8d7da;
    color: #721c24;
}

.order-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-label {
    font-size: 12px;
    color: #7f8c8d;
    font-weight: 500;
    text-transform: uppercase;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    font-weight: 600;
}

.order-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

 
 

.btn-primary:hover {
    background: #7ca103;
    color: white;
    text-decoration: none;
}

 

.btn-success {
    background: #7ca103;
    color: white;
}

.btn-success:hover {
    background: #7ca103;
    color: white;
    text-decoration: none;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
 

.empty-state h3 {
    font-size: 24px;
    color: #6c757d;
    margin-bottom: 10px;
}

.empty-state p {
    color: #7f8c8d;
    margin-bottom: 30px;
}

.btn-lg {
    padding: 12px 25px;
    font-size: 16px;
}



.welcome-banner {
    background: #bbe4fb;
    border-radius: 12px 12px 0px 0px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.welcome-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex: 1;
}

.welcome-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.welcome-text h2 {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.welcome-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 8px;
}

.member-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
}

.edit-profile-btn {
    background: #7ca103;
    color: white;
    padding: 10px 20px;
    border: 1px solid #7ca103;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.edit-profile-btn:hover {
    background: #7ca103;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
    /* border-color: rgba(255, 255, 255, 0.5); */
}

/* Statistics Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.stat-icon.blue { background: #3498db; }
.stat-icon.red { background: #e74c3c; }
.stat-icon.yellow { background: #f39c12; }
.stat-icon.green {background: #d85f98;}

.stat-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.stat-content p {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

/* Recent Orders */
.recent-orders {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 25px;
}

 

.section-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.view-all-btn {
    background: #016ea9; /* Footer brown color */
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #4394bf; /* Darker brown */
    color: white;
    text-decoration: none;
}

.orders-table {
    overflow-x: auto;
}

.orders-table table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th,
.orders-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.orders-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.orders-table td {
    color: #6c757d;
    font-size: 14px;
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
}

.status-dot.yellow { background: #f39c12; }
.status-dot.green { background: #A07A5C; }
.status-dot.blue { background: #3498db; }

.view-details-btn {
    background: #016ea9; /* Footer brown color */
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-details-btn:hover {
    background: #016ea9; /* Darker brown */
    color: white;
    text-decoration: none;
}

/* Floating Help Button */
.floating-help-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #A07A5C; /* Footer brown color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(160, 122, 92, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

.floating-help-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(160, 122, 92, 0.4);
}
.wishlist-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 30px;
}

/* Wishlist Styles */
.wishlist-header {
    margin-bottom: 30px;
}

 

.wishlist-stats {
    background: #bbe4fb; /* Footer brown gradient */
    /* color: white; */
    padding: 10px;
    border-radius: 0;
    margin-bottom: 30px;
    text-align: center;
}

.stats-text {
    font-size: 18px;
    font-weight: 600;
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.wishlist-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.wishlist-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.wishlist-item:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wishlist-item:hover .product-overlay {
    opacity: 1;
}

 transition: all 0.3s ease;
}
 

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-price {
    margin-bottom: 15px;
}

 

.original-price {
    font-size: 16px;
    color: #7f8c8d;
    text-decoration: line-through;
    margin-left: 10px;
}

.product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.category {
    background: #f8f9fa;
    color: #6c757d;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.rating i {
    color: #f39c12;
    font-size: 12px;
}

.rating-text {
    margin-left: 5px;
    font-size: 12px;
    color: #6c757d;
}

.product-actions {
    display: flex;
    gap: 10px;
}

 
 

.btn-danger {
    background: #e74c3c;
    color: white;
    white-space: nowrap;
}

.btn-danger:hover {
    background: #c0392b;
    color: white;
    text-decoration: none;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.empty-state a.btn.btn-primary.btn-lg {
    padding: 10px;
}

.empty-state i {
    font-size: 20px;
    color: #e9ecef;
    margin-bottom: 0;
}

.empty-state h3 {
    font-size: 24px;
    color: #6c757d;
    margin-bottom: 10px;
}

.empty-state p {
    color: #7f8c8d;
    margin-bottom: 30px;
}

 

/* Responsive Design */
@media (max-width: 768px) {
    .user-dashboard {
        padding-top: 120px; /* Less padding on mobile */
    }
    
    .dashboard-container {
        flex-direction: column;
        margin: 0 20px;
    }
    
    .sidebar {
        width: 100%;
        position: static;
    }

    .wishlist-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .product-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .user-dashboard {
        padding-top: 100px; /* Even less padding on small mobile */
    }
    
    .dashboard-container {
        margin: 0 15px;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .user-dashboard {
        padding-top: 120px; /* Less padding on mobile */
    }
    
    .dashboard-container {
        flex-direction: column;
        margin: 0 20px;
    }
    
    .sidebar {
        width: 100%;
        position: static;
    }

    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .order-details {
        grid-template-columns: 1fr;
    }

    .order-actions {
        justify-content: stretch;
    }

    
}

@media (max-width: 480px) {
    .user-dashboard {
        padding-top: 100px; /* Even less padding on small mobile */
    }
    
    .dashboard-container {
        margin: 0 15px;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .user-dashboard {
        padding-top: 120px; /* Less padding on mobile */
    }
    
    .dashboard-container {
        flex-direction: column;
        margin: 0 20px;
    }
    
    .sidebar {
        width: 100%;
        position: static;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }
 
}

@media (max-width: 480px) {
    .user-dashboard {
        padding-top: 100px; /* Even less padding on small mobile */
    }
    
    .dashboard-container {
        margin: 0 15px;
    }
}

/* Profile Button Styling to Match Other Pages */
.user-profile-dropdown {
    position: relative;
    z-index: 999999 !important;
}

.profile-btn {
    background: linear-gradient(135deg, #A07A5C 0%, #8B6F47 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 8px 15px !important;
    color: white !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    text-decoration: none !important;
}

.profile-btn:hover {
    background: linear-gradient(135deg, #8B6F47 0%, #7A5F3A 100%) !important;
    color: white !important;
    text-decoration: none !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(160, 122, 92, 0.3) !important;
}

.profile-avatar {
    /* width: 24px !important; */
    /* height: 24px !important; */
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.profile-name {
    font-weight: 500 !important;
    color: white !important;
}

.profile-dropdown-menu {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    right: 0 !important;
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    border: 1px solid #e9ecef !important;
    min-width: 250px !important;
    z-index: 999999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) scale(0.95) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow: visible !important;
    max-height: none !important;
    height: auto !important;
    min-height: 200px !important;
}

.profile-dropdown-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
}

.user-profile-dropdown:hover .profile-dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
}

.profile-dropdown-menu:hover {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
}

.profile-info {
    padding: 20px !important;
    background: #bbe4fb;
    border-radius: 12px 12px 0 0 !important;
    text-align: center !important;
    /* color: white !important; */
}

.profile-avatar-large {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 3px solid rgba(255, 255, 255, 0.3) !important;
    margin: 0 auto 10px !important;
    display: block !important;
}

.dropdown-divider {
    height: 1px !important;
    background: #e9ecef !important;
    margin: 0 !important;
}

.dropdown-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 15px 20px !important;
    color: #2c3e50 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: none !important;
    background: transparent !important;
    width: 100% !important;
    text-align: left !important;
    font-size: 14px !important;
}

.dropdown-item:hover {
    background: #f8f9fa !important;
    color: #A07A5C !important;
    transform: translateX(5px) !important;
    text-decoration: none !important;
}

.dropdown-item.logout {
    border-radius: 0 0 12px 12px !important;
    color: #e74c3c !important;
}

.dropdown-item.logout:hover {
    background: #fdf2f2 !important;
    color: #c0392b !important;
    transform: translateX(5px) !important;
}

      
/* Order Detail Styles */
.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

 

.order-number {
    font-size: 18px;
    font-weight: 600;
    /* color: #A07A5C; */
    margin-bottom: 5px;
}

.order-date {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

.order-status-section {
    text-align: right;
}

.order-status {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.order-status.pending {
    background: #fff3cd;
    color: #856404;
}

.order-status.processing {
    background: #d1ecf1;
    color: #0c5460;
}

.order-status.shipped {
    background: #d4edda;
    color: #155724;
}

.order-status.delivered {
    background: #d1ecf1;
    color: #0c5460;
}

.delivery-date {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

.order-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

 
 
 

 

.btn-outline {
    background: transparent;
    color: #A07A5C;
    border: 2px solid #A07A5C;
}

.btn-outline:hover {
    background: #A07A5C;
    color: white;
    text-decoration: none;
}

.order-content {
    display: grid;
    gap: 30px;
}

.order-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}
 

/* Order Items */
.order-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.item-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.item-details {
    flex: 1;
}

.item-name {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.item-sku {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 8px;
}

.item-price {
    display: flex;
    gap: 15px;
    align-items: center;
}

.price {
    font-size: 16px;
    font-weight: 600;
    /* color: #A07A5C; */
}

.quantity {
    color: #6c757d;
    font-size: 14px;
}

.item-total {
    text-align: right;
}

.total-amount {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
}

/* Order Summary */
.order-summary {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.total {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    border-top: 2px solid #dcd2cb;
    margin-top: 10px;
    padding-top: 15px;
}

.summary-row.discount {
    color: #A07A5C;
}

.label {
    /* color: #6c757d; */
}

.value {
    font-weight: 600;
    color: #2c3e50;
}

/* Address Card */
.address-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.address-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.address-info p {
    color: #6c757d;
    margin-bottom: 5px;
    line-height: 1.5;
}

/* Payment Info */
.payment-info {
    display: flex;
    gap: 30px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.payment-method,
.payment-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-method i {
    color: #016ea9;
    font-size: 18px;
}

.payment-status.paid i {
    color: #A07A5C;
}

.payment-status.pending i {
    color: #f39c12;
}

/* Tracking Timeline */
.tracking-timeline {
    position: relative;
    padding-left: 30px;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -22px;
    top: 0;
    width: 30px;
    height: 30px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.timeline-item.completed .timeline-marker {
    background: #016ea9;
    color: white;
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.timeline-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.timeline-description {
    color: #6c757d;
    margin-bottom: 8px;
    line-height: 1.5;
}

.timeline-date {
    color: #016ea9;
    font-size: 14px;
    font-weight: 500;
}

.reviews-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 30px;
}

/* Reviews Styles */
.reviews-header {
    margin-bottom: 30px;
}

 
.reviews-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stats-item {
    background: #016ea9;
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.stats-number {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stats-label {
    font-size: 14px;
    opacity: 0.9;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

 

 

.product-details h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: #e9ecef;
    font-size: 14px;
}

.rating i.active {
    color: #f39c12;
}

.review-date {
    color: #6c757d;
    font-size: 14px;
}

.verified-badge {
    background: #d4edda;
    color: #155724;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-actions {
    display: flex;
    gap: 10px;
}

 

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

.btn-outline {
    background: transparent;
    color: #A07A5C;
    border: 1px solid #A07A5C;
}

.btn-outline:hover {
    background: #A07A5C;
    color: white;
}

.btn-danger {
    background: #e74c3c;
    color: white;
}

.btn-danger:hover {
    background: #c0392b;
    color: white;
}

 
 
.review-content {
    margin-bottom: 20px;
}

.review-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.review-comment {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.helpful-btn {
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.helpful-btn:hover {
    color: #A07A5C;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.status-badge.published {
    background: #d4edda;
    color: #155724;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
 

.empty-state h3 {
    font-size: 24px;
    color: #6c757d;
    margin-bottom: 10px;
}

.empty-state p {
    color: #7f8c8d;
    margin-bottom: 30px;
}
 

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto; overflow-x: hidden; scrollbar-width: none; -ms-overflow-style: none;
    position: relative;
    z-index: 10001;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #e9ecef;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #6c757d;
    cursor: pointer;
    padding: 5px;
}

.modal-body {
    padding: 25px;
}

.rating-input {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.rating-star {
    font-size: 24px;
    color: #e9ecef;
    cursor: pointer;
    transition: color 0.2s ease;
}

.rating-star:hover,
.rating-star.active {
    color: #f39c12;
}

.form-group {
    margin-bottom: 20px;
}

 

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #A07A5C;
    background: white;
    box-shadow: 0 0 0 3px rgba(160, 122, 92, 0.1);
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 20px;
}

/* Change Password Styles */
.change-password-header {
    margin-bottom: 30px;
}

 

.change-password-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

 

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #016ea9;
    background: white;
    box-shadow: 0 0 0 3px rgba(160, 122, 92, 0.1);
}

.toggle-password {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: #A07A5C;
}

.password-strength {
    margin-top: 10px;
}

.strength-bar {
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 5px;
}

.strength-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-fill.weak { background: #e74c3c; width: 25%; }
.strength-fill.fair { background: #f39c12; width: 50%; }
.strength-fill.good { background: #3498db; width: 75%; }
.strength-fill.strong { background: #A07A5C; width: 100%; }

.strength-text {
    font-size: 12px;
    color: #6c757d;
}

.password-requirements {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.password-requirements h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.password-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.password-requirements li {
    padding: 5px 0;
    font-size: 14px;
    color: #6c757d;
    position: relative;
    padding-left: 0;
}

.password-requirements li::before {
   
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.password-requirements li.valid::before {
    
    color: #A07A5C;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}
.change-password-container {
    padding: 30px;
}

.account-settings-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 30px;
}

/* Account Settings Styles */
.account-settings-header {
    margin-bottom: 30px;
}

 

.account-settings-form {
    max-width: 100%;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

 

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}
 

 

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #A07A5C;
    background: white;
    box-shadow: 0 0 0 3px rgba(160, 122, 92, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Preference Settings */
.preference-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.preference-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.preference-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.preference-info p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #016ea9;
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

 

.loading-spinner {
    display: none;
}
   
.security-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 30px;
}

/* Security Styles */
.security-header {
    margin-bottom: 30px;
}
 

.security-settings-form {
    max-width: 100%;
}

.security-section {
    margin-bottom: 40px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}
 
.section-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-info h3 i {
    /* color: #A07A5C; */
}

.section-description {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.enabled {
    background: #d4edda;
    color: #155724;
}

.status-badge.disabled {
    background: #f8d7da;
    color: #721c24;
}

.section-content {
    margin-top: 20px;
}

.feature-description {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    /* border-left: 4px solid #A07A5C; */
}

.feature-description p {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
}

.toggle-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.toggle-label {
    font-weight: 600;
    color: #2c3e50;
}

.setup-instructions {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.setup-instructions h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.setup-instructions ol {
    margin: 0 0 15px 0;
    padding-left: 20px;
}

.setup-instructions li {
    margin-bottom: 5px;
    color: #6c757d;
    font-size: 14px;
}

.qr-code-placeholder {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    color: #6c757d;
}

.qr-code-placeholder i {
    font-size: 48px;
    margin-bottom: 10px;
    display: block;
}

.security-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.security-item:last-child {
    border-bottom: none;
}

.item-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.item-info p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
 

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
 
.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.loading-spinner {
    display: none;
}

/* New CSS */

.services-section{padding:90px 0;background: #EEF2ED;}

.services-heading{
text-align:center;
margin-bottom:50px;
}

 

/* GRID */

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

/* BOX */

.service-box{
background:#fff;
padding:25px;
border-radius:15px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.service-box img{
width:100%;
height:200px;
object-fit:cover;
border-radius:12px;
margin-bottom:15px;
}

.service-box h4{margin-bottom:10px;/* font-size:20px; */}

.service-box p{/* font-size:14px; *//* color:#666; */}

/* MOBILE */

@media(max-width:991px){

.services-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.services-grid{
grid-template-columns:1fr;
}

}
/* LEFT CONTENT */

.about-content{padding-right: 74px;}
.round-20{
    border-radius: 20px;
}

 

.about-text-wrap p{
color:#666;
font-size:16px;
line-height:1.7;
}

.about-quote{
font-style:italic;
color:#888;
}

/* RIGHT IMAGE */

.about-image{
min-height:520px;
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

/* MOBILE IMAGE */

.mobile-about-img img{
width:100%;
height:auto;
}

/* MOBILE */


.pain-relief-section{padding: 0px 0 90px;}

.pain-relief-wrapper{
background-position:center;
background-size:cover;
background-repeat:no-repeat;
border-radius:30px;
padding:120px 60px;
position:relative;
overflow:hidden;
}

/* overlay */

.pain-relief-wrapper::before{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,0.35);
}

.pain-relief-content{
position:relative;
z-index:2;
color:#fff;
max-width:520px;
}

.pain-relief-content h2{color: #FFF;}

.pain-relief-content span{color: #ffffff;}

.pain-relief-desc{
margin-bottom:25px;
font-size:17px;
}

.pain-pills{
display:flex;
flex-wrap:wrap;
gap:10px;
margin-bottom:25px;
}

.pain-pills span{background: #eef2ed;color: #2e3133;padding:10px 18px;border-radius:30px;font-size:14px;}

.appointment-btn{
background:#fff;
color:#2b3b38;
padding:12px 28px;
border-radius:30px;
text-decoration:none;
font-weight:500;
display:inline-block;
}
.appointment-section{
padding:90px 0;
background:#f5f5f5;
}

.appointment-form-side{
background:#4f7f78;
padding:70px;
color:#fff;
}

.form-wrapper{
max-width:500px;
}

.appointment-title{
 
color: #FFF;
}
.appointment-desc label {
    color: #FFF;
}

.appointment-form-side label {
    color: #FFF;
}

.form-row-main {
    border-radius: 20px;
    overflow: hidden;
}
.appointment-desc{margin-bottom:35px;color: #FFF;}

.form-group{
margin-bottom:18px;
}

.form-group label{display:block;margin-bottom:8px;font-size:14px;}

.form-group input,
.form-group select,
.form-group textarea{
width:100%;
padding:14px 18px;
border-radius:40px;
border:none;
background:#c8d7d2;
font-size:14px;
}

textarea{
border-radius:20px !important;
height:120px;
resize:none;
}

.appointment-btn{background:#fff;border:none;padding: 14px 32px;border-radius:30px;margin-top:10px;}

/* right image */

.appointment-image{
background:url('../images/contact-media.jpg') center/cover no-repeat;
min-height:100%;
}

/* mobile image */

.img-left-sm img{
width:100%;
border-radius:0;
}

/* hide bg image on mobile */


.testimonial-section{background:#1e4b4b;padding:100px 0;text-align:center;color:#fff;position: relative;}

.testimonial-text{font-size: 27px;line-height:1.6;max-width:900px;margin:auto;margin-bottom:30px;font-style: italic;}

.stars{color:#f4a62a;font-size:22px;margin: 0px auto 15px;display: table;}

.client-name{font-size:20px;margin:0;color: #FFF;}

/* arrows position */

.testimonial-section .owl-nav button{
position:absolute;
top:50%;
transform:translateY(-50%);
width:50px;
height:50px;
border-radius:50%;
background:#fff !important;
color:#000 !important;
font-size:22px !important;
}

.testimonial-section .owl-nav .owl-prev{
left:-80px;
}

.testimonial-section .owl-nav .owl-next{
right:-80px;
}
/* owl dots container */

.testimonial-section .owl-dots{
margin-top:35px;
text-align:center;
}

/* dot */

.testimonial-section .owl-dots .owl-dot{
width:12px;
height:12px;
background:#9bb8b6 !important;
border-radius:50%;
margin:0 6px;
display:inline-block;
transition:all .3s ease;
}

/* active dot */

.testimonial-section .owl-dots .owl-dot.active{
background:#7ca103  !important;
width:28px;
border-radius:20px;
}

/* hover */

.testimonial-section .owl-dots .owl-dot:hover{
background:#7ca103  !important;
}

@media(max-width:991px){

.about-content{
padding:40px 25px;
}

.about-text-wrap{
flex-direction:column;
}

.about-image{
background:none;
}

 
.appointment-image{
background:none;
}

}
@media (max-width:768px){

.testimonial-section .owl-nav{
display:none;
}

.testimonial-section .testimonial-text{
font-size:22px;
}

}
.approach-section{background: #f2f2f2;padding:90px 0;}

 

.approach-text{
color:#555;
font-size:16px;
margin-bottom:30px;
}

.approach-btn{display:inline-flex;align-items:center;gap:15px;border: 1px solid #016ea9;padding:12px 28px;border-radius:40px;text-decoration:none;color:#1f2d2a;font-weight:500;transition:0.3s;}

.approach-btn span{background: #016ea9;color:#fff;width:35px;height:35px;border-radius:50%;display:flex;align-items:center;justify-content:center;}

.approach-btn:hover{background: #016ea9;color:#fff;}

.approach-image{border-radius:30px;overflow:hidden;margin-left: 35px;height: 100%;background-size: cover !important;}

.approach-image img{width:100%;height:auto;display:block;border-radius: 20px;}
.process-section{background: #FFF;padding:80px 0;}

.process-title small{/* color:#4CAF7D; *//* font-weight:600; *//* letter-spacing:2px; */margin-bottom: 15px;display: block;}

 

.custom-accordion .accordion-item{background: #ffffff;border:none;margin-bottom:15px;border-radius:10px;overflow:hidden;}

.custom-accordion .accordion-button{background: #ffffff;font-size:20px;font-weight:500;color:#1d2f2a;box-shadow:none;}

.custom-accordion .accordion-button:not(.collapsed){background: #016ea9;color: #ffffff;}

.custom-accordion .accordion-body{
background:#ffffff;
font-size:16px;
}

.acupressure-why{padding:80px 0;/* background:#f6f6f6; */}

.acupressure-img img{
border-radius:30px;
width:100%;
}

.small-title{letter-spacing:2px;font-size:13px;color: #016ea9;font-weight:600;text-transform: uppercase;}

.main-title{/* font-size:46px; *//* font-weight:500; *//* margin:15px 0 20px; *//* color:#1c2b28; *//* line-height:1.2; */}

.desc{/* font-size:16px; *//* color:#555; */}

.sub-desc{/* font-size:15px; *//* color:#666; *//* margin-bottom:25px; */}

.feature-list{
margin-top:15px;
}

.feature-pill{background: #eef2ed;padding:14px 20px;border-radius:40px;margin-bottom:15px;font-size:15px;font-weight:500;}

.acupressure-img {
    height: 100%;
    background-size: cover !important;
    border-radius: 20px;
}

.acupressure-features{background:#eef2ed;padding:70px 0;}

.feature-box{/* padding:20px; */}

.feature-icon{width:90px;height:90px;margin:auto;border-radius:50%;background: #7ca103;display:flex;align-items:center;justify-content:center;margin-bottom:20px;}

.feature-icon i{
color:#fff;
font-size:32px;
}

.feature-box h4{font-size:22px;margin-bottom:10px;/* color:#24302d; */}

.feature-box p{/* font-size:15px; *//* color:#555; */}

@media (min-width:992px){
.why-text {
    padding-left: 50px;
}
}

/* Responsive Design */
@media (max-width: 768px) {
    .user-dashboard {
        padding-top: 120px; /* Less padding on mobile */
    }
    
    .dashboard-container {
        flex-direction: column;
        margin: 0 20px;
    }
    
    .sidebar {
        width: 100%;
        position: static;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .security-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .form-actions {
        flex-direction: column;
    }

    
}

@media (max-width: 480px) {
    .user-dashboard {
        padding-top: 100px; /* Even less padding on small mobile */
    }
    
    .dashboard-container {
        margin: 0 15px;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .user-dashboard {
        padding-top: 120px; /* Less padding on mobile */
    }
    
    .dashboard-container {
        flex-direction: column;
        margin: 0 20px;
    }
    
    .sidebar {
        width: 100%;
        position: static;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .preference-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .form-actions {
        flex-direction: column;
    }

   
}

@media (max-width: 480px) {
    .user-dashboard {
        padding-top: 100px; /* Even less padding on small mobile */
    }
    
    .dashboard-container {
        margin: 0 15px;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .user-dashboard {
        padding-top: 120px; /* Less padding on mobile */
    }
    
    .dashboard-container {
        flex-direction: column;
        margin: 0 20px;
    }
    
    .sidebar {
        width: 100%;
        position: static;
    }

    .form-actions {
        flex-direction: column;
    }

    
}

@media (max-width: 480px) {
    .user-dashboard {
        padding-top: 100px; /* Even less padding on small mobile */
    }
    
    .dashboard-container {
        margin: 0 15px;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .user-dashboard {
        padding-top: 120px; /* Less padding on mobile */
    }
    
    .dashboard-container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        position: static;
    }

    .review-header {
        flex-direction: column;
        gap: 15px;
    }

    .review-actions {
        width: 100%;
        justify-content: center;
    }

    .reviews-stats {
        grid-template-columns: 1fr;
    }

    .review-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .form-actions {
        flex-direction: column;
    }

   
}

@media (max-width: 480px) {
    .user-dashboard {
        padding-top: 100px; /* Even less padding on small mobile */
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .user-dashboard {
        padding-top: 120px; /* Less padding on mobile */
    }
    
    .dashboard-container {
        flex-direction: column;
        margin: 0 20px;
    }
    
    .sidebar {
        width: 100%;
        position: static;
    }

    .order-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .order-status-section {
        text-align: left;
    }

    .order-actions {
        flex-direction: column;
    }

    

    .order-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .item-total {
        text-align: left;
        width: 100%;
    }

    .payment-info {
        flex-direction: column;
        gap: 15px;
    }

    .tracking-timeline {
        padding-left: 20px;
    }

    .timeline-marker {
        left: -15px;
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .user-dashboard {
        padding-top: 100px; /* Even less padding on small mobile */
    }
    
    .dashboard-container {
        margin: 0 15px;
    }
}
    @media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100% - 20px);
        right: 10px;
        bottom: 80px;
        height: calc(100vh - 100px);
        max-height: 500px;
    }
    
    .live-chat-toggle {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .contact-page {
        padding: 20px 0;
    }
    
    .contact-page .hero-section,
    .contact-page .contact-content,
    .contact-page .contact-form-section,
    .contact-page .contact-info-section {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        /* font-size: 1.8rem; */
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .priority-selector {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-container {
        padding: 0 20px;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .method-card {
        padding: 30px 20px;
    }
    
    .office-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .office-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .image-container img {
        height: 300px;
    }
    
    .contact-page::before {
        background-attachment: scroll;
    }
    
    .chat-widget-header {
        padding: 12px;
    }
    
    .chat-avatar {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    
    .chat-header-info h4 {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .contact-page {
        padding: 15px 0;
    }
    
    .contact-page .hero-section,
    .contact-page .contact-content,
    .contact-page .contact-form-section,
    .contact-page .contact-info-section {
        padding: 20px;
        border-radius: 15px;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-title {
        /* font-size: 1.5rem; */
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .contact-methods,
    .contact-form-section,
    .office-info {
        padding: 40px 0;
    }
    
    .form-container {
        padding: 0 15px;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .form-header p {
        font-size: 0.9rem;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .method-card h3 {
        font-size: 1.25rem;
    }
    
    .method-card p {
        font-size: 0.9rem;
    }
    
    .floating-elements {
        display: none;
    }
    
    .live-chat-toggle {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
    
    .live-chat-widget {
        width: calc(100% - 30px);
        right: 15px;
        bottom: 70px;
        height: calc(100vh - 90px);
        max-height: 450px;
        border-radius: 15px;
    }
    
    .chat-messages {
        padding: 12px;
    }
    
    .message-avatar {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .message-content {
        padding: 8px 12px;
    }
    
    .message-content p {
        font-size: 12px;
    }
    
    .chat-input-area {
        padding: 10px;
    }
    
    #chatMessageInput {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .chat-send-btn {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
    
    .quick-action-btn {
        padding: 4px 8px;
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .progress-steps {
        flex-wrap: wrap;
        gap: 20px;
    }
}



@media (max-width: 768px) {
    .cart-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .item-image {
        justify-self: center;
    }
    
    .item-total {
        text-align: center;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    
    
    .cart-features {
        gap: 20px;
        margin-top: 30px;
    }
    
    .feature-item {
        padding: 20px 15px;
        min-width: 150px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 20px;
    }
}









    /* Responsive Design */
    @media (max-width: 768px) {
        .product-detail-container {
            grid-template-columns: 1fr;
            gap: 30px;
            padding: 20px;
        }

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

        .action-buttons {
            flex-direction: column;
        }

        .price-section {
            flex-direction: column;
            gap: 15px;
            align-items: flex-start;
        }

        .price-meta {
            align-items: flex-start;
        }

        .promotional-blocks {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .promo-block {
            padding: 20px;
            gap: 15px;
        }

        .promo-icon {
            width: 50px;
            height: 50px;
        }

        .promo-icon i {
            font-size: 20px;
        }

        .promo-title {
            font-size: 1.1rem;
        }

        .review-summary {
            flex-direction: column;
            gap: 20px;
            padding: 20px;
        }

        .overall-rating {
            min-width: auto;
        }

        .rating-score {
            font-size: 2.5rem;
        }

        .related-grid {
            grid-template-columns: repeat(1, 1fr);
            gap: 15px;
        }

        .related-product img {
            height: 150px;
        }

        .product-gallery {
            padding: 20px 15px !important;
            min-height: 400px !important;
            justify-content: flex-start !important;
        }

        .main-image {
            max-height: 400px !important;
            min-height: 350px !important;
        }

        .thumbnail {
            width: 70px !important;
            height: 70px !important;
            min-width: 60px !important;
            min-height: 60px !important;
            padding: 6px !important;
        }

        .thumbnail-gallery {
            gap: 8px !important;
            margin-top: 15px !important;
            justify-content: center !important;
        }

        .related-product-info {
            padding: 12px;
        }

        .related-product-title {
            font-size: 0.9rem;
        }

        .related-product-price {
            font-size: 1rem;
        }

        /* Product Info Tabs Responsive */
        .tabs-navigation {
            flex-direction: column;
            gap: 10px;
        }

        .tab-btn {
            padding: 12px 20px;
            font-size: 0.9rem;
        }

        .materials-grid {
            grid-template-columns: 1fr;
        }

        .features-grid {
            grid-template-columns: 1fr;
        }

        .care-sections {
            grid-template-columns: 1fr;
        }

        .sharing-icons {
            gap: 15px;
        }

        .share-btn {
            width: 45px;
            height: 45px;
            font-size: 1.1rem;
        }

        .accordion-header {
            padding: 20px;
        }

        .accordion-title {
            font-size: 1.1rem;
        }

        .details-content,
        .shipping-content {
            padding: 20px;
        }

        .detail-row {
            flex-direction: column;
            align-items: flex-start;
            gap: 5px;
        }

        .shipping-option {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }

        /* Hide fixed social icons on mobile */
        .social-sharing {
            display: none;
        }

        /* Small promotional blocks responsive */
        .promotional-blocks-small {
            grid-template-columns: 1fr;
            gap: 8px;
            padding: 12px;
        }

        .promo-block-small {
            padding: 10px;
        }

        .promo-icon-small {
            width: 30px;
            height: 30px;
        }

        .promo-icon-small i {
            font-size: 12px;
        }

        .promo-title-small {
            font-size: 0.85rem;
        }

        .promo-description-small {
            font-size: 0.7rem;
        }
    }

    @media (max-width: 480px) {
        .container {
            margin: 0 60px;
            padding: 0 5px;
        }

        .product-detail-container {
            padding: 15px;
        }

        .product-title {
            font-size: 1.8rem;
        }

      

        .reviews-section,
        .related-products {
            padding: 20px;
        }

     
    }
 






/* Responsive Design */
@media (max-width: 1200px) {
    .main-content {
        grid-template-columns: 250px 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .page-title {
        /* font-size: 2.5rem; */
    }
    
    .main-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .filters-sidebar {
        position: static;
        order: 2;
        padding: 20px;
    }
    
    .filters-header {
        margin: -20px -20px 20px -20px;
        padding: 15px 20px;
        border-radius: 20px 20px 0 0;
    }
    
    .filter-group {
        padding: 15px;
        margin-bottom: 20px;
    }

    .filter-group label {
        font-size: 1rem;
        padding-left: 20px;
    }
    
    .filter-group label::before {
        width: 3px;
        height: 16px;
    }
    
    .filter-option {
        padding: 10px 12px;
        gap: 12px;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
    }
    
    .price-range {
        padding: 15px;
        gap: 15px;
    }
    
    .price-inputs {
        gap: 10px;
        flex-wrap: nowrap;
    }
    
    .price-inputs input {
        padding: 10px 12px;
        font-size: 0.9rem;
        width: calc(50% - 5px);
        min-width: 0;
    }
    
    .products-section {
        order: 1;
    }
    
    .products-header {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .sort-options {
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .filters-sidebar {
        padding: 15px;
    }
    
    .filters-header {
        margin: -15px -15px 15px -15px;
        padding: 12px 15px;
    }
    
    .filter-group {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .filter-option {
        padding: 8px 10px;
        gap: 10px;
    }
    
    .option-text {
        font-size: 0.9rem;
    }
    
    .option-count {
        font-size: 0.8rem;
        padding: 3px 6px;
    }
    
    .price-range {
        padding: 12px;
        gap: 12px;
    }
    
    .price-inputs input {
        padding: 8px 10px;
        font-size: 0.85rem;
        width: calc(50% - 5px);
        min-width: 0;
    }
    
    .price-display {
        padding: 8px 15px;
        font-size: 1rem;
    }
    
    .search-box input {
        width: 100%;
        padding: 15px 15px 15px 50px;
        border: 2px solid #e9ecef;
        border-radius: 15px;
        font-size: 1rem;
            transition: all 0.3s ease;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
    }
}

@media (max-width: 480px) {
    .container {
        margin: 0 20px;
        padding: 0 5px;
    }
    
    .page-title {
        /* font-size: 2rem; */
    }

    .filters-sidebar,
    .products-section {
        padding: 15px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}




@media (min-width:769px){
button#mobileMenuToggle {
    display: none;
}    
}

@media (max-width: 1024px) {
    .bodypart-content { grid-template-columns: 1fr; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        /* flex-direction: column; */
        gap: 20px;
    }

    .search-bar {
        margin: 0;
        max-width: 100%;
    }

    .nav ul {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .banner-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

.sec-space {
    padding: 40px 0px;
}

.content-card {
    padding: 0;
}
 

.body-part-card {
    width: 100%;
}

h2 {
    font-size: 24px;
    line-height: 30px;
}
   .box-space h3 {
    font-size: 18px !important;
    line-height: 23px !important;
}
 #helpFormModal {
    display: none !important;
}

h1 {
    font-size: 24px;
    line-height: 30px;
}

.hero-actions {
    justify-content: center;
}

.aside-card h3 {
    font-size: 24px;
    line-height: 30px;
}  
.badge-pill {
    display: none;
}
.wishlist-header, .reviews-header, .change-password-header, .account-settings-header, .security-header {
    text-align: center;
}
 
.review-card  .product-info {
    padding: 0 !important;
}

.review-card  .product-details {
    flex-wrap: wrap;
    justify-content: center;
}  
.btn-col {
    text-align: center;
}
.dropdown-toggle i {
    color: #776c6c;
}

a.account-link {
    padding-top: 0 !important;
}

.account-link i {
    margin-bottom: 5px;
}
a.cart-link , a.wishlist-link{
    margin-top: 4px;
}
 

a.account-link {
    margin-top: -3px;
}
.slide {
    height: 340px;
}
.btn {
    font-size: 14px;
    padding: 15px 15px;
}

}

