/* ========================================
   Car Dealership Style CSS - Dana Aftermarket
   Based on Modern Auto Marketplace Design
   ======================================== */

/* CSS Variables for easy theming - Dana Blue Theme */
:root {
    --primary-color: #0098d7;
    --secondary-color: #002868;
    --accent-color: #0098d7;
    --success-color: #0098d7;
    --warning-color: #0098d7;
    --dark-color: #000000;
    --light-gray: #f8f9fa;
    --border-radius: 25px;
    --box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Modern Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: #ffffff;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Modern Header Styles */
.modern-header {
    background: linear-gradient(135deg, #47c9ff 0%, #0098d7 100%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.modern-header .logo img {
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

.modern-header .logo img:hover {
    transform: scale(1.05);
}

/* Modern Search Box */
.modern-search-box {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    padding: 8px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.modern-search-box:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.modern-search-box input {
    border: none;
    outline: none;
    width: 100%;
    padding: 10px 15px;
    font-size: 15px;
    background: transparent;
}

.modern-search-box button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-search-box button:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(8, 152, 202, 0.4);
}

/* Revolutionary Card Design with Neumorphism */
.modern-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.modern-card:hover::before {
    opacity: 1;
    animation: glow 2s ease-in-out infinite;
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(99, 102, 241, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

@keyframes glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Revolutionary Hero Banner with 3D Effect */
.hero-banner-wrapper {
    position: relative;
    perspective: 1500px;
    margin-bottom: 60px;
}

.modern-banner {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(99, 102, 241, 0.2);
    position: relative;
    transform-style: preserve-3d;
    transition: var(--transition);
}

.modern-banner:hover {
    transform: rotateY(2deg) rotateX(-2deg);
}

.modern-banner img {
    width: 100%;
    height: auto;
    transition: var(--transition);
    filter: brightness(0.95);
}

.modern-banner .carousel-item:hover img {
    transform: scale(1.08);
    filter: brightness(1);
}

.modern-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.modern-banner .carousel-indicators {
    bottom: 20px;
    z-index: 10;
}

.modern-banner .carousel-indicators li {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 5px;
    transition: var(--transition);
}

.modern-banner .carousel-indicators .active {
    background: white;
    width: 60px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

/* Modern Tab Design */
.modern-tabs {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.modern-tabs .nav-tabs {
    border: none;
    background: linear-gradient(135deg, #47c9ff 0%, #0098d7 100%);
    padding: 0;
}

.modern-tabs .nav-tabs .nav-item {
    flex: 1;
}

.modern-tabs .nav-tabs .nav-link {
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 18px 20px;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.modern-tabs .nav-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: white;
    transition: var(--transition);
}

.modern-tabs .nav-tabs .nav-link.active {
    color: white;
    background: transparent;
}

.modern-tabs .nav-tabs .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.modern-tabs .nav-tabs .nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.modern-tabs .tab-content {
    padding: 30px;
}

/* Modern Input Styles */
.modern-input-group {
    margin-bottom: 20px;
}

.modern-input-group select,
.modern-input-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: var(--transition);
    background: white;
}

.modern-input-group select:focus,
.modern-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(8, 152, 202, 0.1);
}

/* Modern Button Styles */
.modern-btn {
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.modern-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 61, 165, 0.3);
}

.modern-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 61, 165, 0.4);
}

.modern-btn-accent {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 61, 165, 0.3);
}

.modern-btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 61, 165, 0.4);
}

/* Modern Product Card */
.modern-product-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.modern-product-card .product-image {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    background: var(--light-gray);
}

.modern-product-card .product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.modern-product-card .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.modern-product-card:hover .product-overlay {
    opacity: 1;
}

.modern-product-card .product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.modern-product-card .product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
    line-height: 1.4;
}

.modern-product-card .product-brand {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.modern-product-card .product-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.modern-product-card .add-to-cart {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: auto;
}

.modern-product-card .add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(8, 152, 202, 0.4);
}

/* Modern Brand Grid */
.modern-brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.modern-brand-item {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    cursor: pointer;
}

.modern-brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.modern-brand-item img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.modern-brand-item:hover img {
    filter: grayscale(0%);
}

.modern-brand-item h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
}

/* Modern Section Heading */
.modern-section-heading {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.modern-section-heading h1 {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.modern-section-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 20px auto;
    border-radius: 2px;
}

/* Modern Footer */
.modern-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.modern-footer h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.modern-footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
}

.modern-footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.modern-footer a:hover {
    color: white;
    padding-left: 5px;
}

.modern-footer .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.modern-footer .social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modern-footer .social-icons a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-section-heading h1 {
        font-size: 28px;
    }
    
    .modern-card {
        padding: 20px;
    }
    
    .modern-tabs .nav-tabs .nav-link {
        padding: 12px 10px;
        font-size: 14px;
    }
    
    .modern-brand-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }
}

/* Loading Animation */
.loading-spinner {
    border: 4px solid rgba(8, 152, 202, 0.1);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 50px auto;
}

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

/* Glassmorphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* View All Button */
.modern-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.modern-view-all:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.modern-view-all i {
    transition: var(--transition);
}

.modern-view-all:hover i {
    transform: translateX(5px);
}

/* ========================================
   REVOLUTIONARY NEW LAYOUT STYLES
   ======================================== */

/* Floating Search Panel */
.floating-search-panel {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 35px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.floating-search-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.bento-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bento-item-large {
    grid-column: span 8;
}

.bento-item-small {
    grid-column: span 4;
}

.bento-item:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

/* Magnetic Product Cards */
.magnetic-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.magnetic-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.magnetic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.magnetic-card:hover::before {
    opacity: 0.1;
}

.magnetic-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.4);
    border-color: rgba(99, 102, 241, 0.5);
}

.magnetic-card-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}

.magnetic-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.magnetic-card:hover .magnetic-card-image img {
    transform: scale(1.15) rotate(2deg);
}

.magnetic-card-content {
    padding: 25px;
    position: relative;
    z-index: 1;
}

.magnetic-card-title {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.magnetic-card-brand {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-bottom: 15px;
}

.magnetic-card-price {
    color: #10b981;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.magnetic-card-button {
    width: 100%;
    padding: 12px;
    background: var(--gradient-1);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.magnetic-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5);
}

/* Floating Brand Bubbles */
.brand-bubbles-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 40px 0;
}

.brand-bubble {
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.brand-bubble::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: var(--gradient-1);
    border-radius: 50%;
    transition: var(--transition);
    opacity: 0.3;
}

.brand-bubble:hover::before {
    width: 200%;
    height: 200%;
}

.brand-bubble:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
    border-color: rgba(99, 102, 241, 0.5);
}

.brand-bubble img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.brand-bubble:hover img {
    filter: brightness(1) invert(0);
    transform: scale(1.1);
}

/* Neon Section Headers */
.neon-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.neon-section-header h2 {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.neon-section-header h2::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.5;
}

.neon-section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Glassmorphic Tabs */
.glass-tabs {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.glass-tabs .nav-tabs {
    border: none;
    background: transparent;
    padding: 10px;
    display: flex;
    gap: 10px;
}

.glass-tabs .nav-tabs .nav-item {
    flex: 1;
}

.glass-tabs .nav-tabs .nav-link {
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    padding: 15px 20px;
    text-align: center;
    font-weight: 600;
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-tabs .nav-tabs .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition);
}

.glass-tabs .nav-tabs .nav-link.active {
    color: white;
    background: var(--gradient-1);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.glass-tabs .nav-tabs .nav-link:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.glass-tabs .tab-content {
    padding: 35px;
}

/* Animated Background Orbs */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

.bg-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-1);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.bg-orb-2 {
    width: 500px;
    height: 500px;
    background: var(--gradient-2);
    top: 50%;
    right: 10%;
    animation-delay: 5s;
}

.bg-orb-3 {
    width: 350px;
    height: 350px;
    background: var(--gradient-3);
    bottom: 10%;
    left: 30%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Parallax Scroll Effect */
.parallax-section {
    position: relative;
    z-index: 1;
}

/* Text Glow Effect */
.text-glow {
    color: white;
    text-shadow: 
        0 0 10px rgba(99, 102, 241, 0.8),
        0 0 20px rgba(99, 102, 241, 0.6),
        0 0 30px rgba(99, 102, 241, 0.4);
}

/* ========================================
   MODERN TRANSPARENT HEADER STYLES
   ======================================== */

/* Top Header Bar */
.top-header-bar {
    position: relative;
    z-index: 1001;
    background-color: #EC2E38;
    color: white;
}

.top-header-bar a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.top-header-bar a:hover {
    color: white;
    text-decoration: underline;
}

.top-header-bar i {
    margin-right: 5px;
}

/* Responsive Top Header Bar */
@media (max-width: 768px) {
    .top-header-bar .col-md-6:first-child {
        display: none !important;
    }
    
    .top-header-bar .col-md-6:last-child {
        width: 100%;
        text-align: center !important;
    }
    
    .top-header-bar .d-flex {
        justify-content: center !important;
    }
}

/* Modern Transparent Header */
.modern-transparent-header {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
}

/* Top Bar Slim */
.top-bar-slim {
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 0;
    backdrop-filter: blur(10px);
}

.top-links {
    display: flex;
    gap: 25px;
}

.top-links a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.top-links a:hover {
    color: white;
    text-decoration: underline;
}

.top-links i {
    margin-right: 5px;
}

/* Main Header Transparent */
.main-header-transparent {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.header-logo img {
    max-height: 50px;
    transition: var(--transition);
}

/* Header Navigation */
.header-navigation {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu-item {
    position: relative;
}

.nav-menu-link {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu-link i {
    font-size: 10px;
    transition: var(--transition);
}

.nav-menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: var(--transition);
}

.nav-menu-link:hover {
    color: white;
}

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

.nav-menu-item:hover .nav-menu-link i {
    transform: rotate(180deg);
}

/* Navigation Dropdown Menu */
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
}

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

.nav-dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #1e293b;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.nav-dropdown-item:hover {
    background: #f8f9fa;
    color: #EC2E38;
    padding-left: 25px;
}

/* Mobile Menu Sidebar */
.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-sidebar.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #1e293b;
    color: white;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu-content {
    padding: 20px;
}

.mobile-menu-item {
    border-bottom: 1px solid #e0e0e0;
}

.mobile-menu-link {
    display: block;
    padding: 15px 0;
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Header Right Actions */
.header-right-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Login Toggle Button */
.btn-header-login {
    background: #00a8ff;
    color: #ffffff;
    border: none;
    padding: 8px 25px;
    border-radius: 0px;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-header-login:hover {
    background: linear-gradient(135deg, #ffffff, #ffffff);
    color: #002868;
    transform: none;
    box-shadow: 0 3px 10px rgba(0, 61, 165, 0.2);
}

/* Store Locator Button */
.btn-header-store-locator {
    background: linear-gradient(135deg, #47c9ff, #0098d7);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 15px;
}

.btn-header-store-locator:hover {
    background: linear-gradient(135deg, #0098d7, #0088c2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
    color: white;
    text-decoration: none;
}

.btn-header-store-locator i {
    font-size: 14px;
}

/* Contact Button */
.btn-header-contact {
    background: linear-gradient(135deg, #47c9ff, #0098d7);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 15px;
}

.btn-header-contact:hover {
    background: linear-gradient(135deg, #0098d7, #0088c2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
    color: white;
    text-decoration: none;
}

.btn-header-contact i {
    font-size: 14px;
}

/* Responsive Header - Mobile */
@media (max-width: 991px) {
    .main-header-transparent {
        padding: 12px 0;
    }
    
    .header-logo img {
        max-height: 45px;
    }
    
    .header-search-wrapper {
        display: none !important;
    }
    
    .btn-header-store-locator {
        padding: 8px 10px;
        font-size: 12px;
        margin-right: 5px;
    }
    
    .btn-header-store-locator span {
        display: none;
    }
    
    .btn-header-contact {
        padding: 8px 10px;
        font-size: 12px;
        margin-right: 5px;
    }
    
    .btn-header-contact span {
        display: none;
    }
    
    .btn-header-login {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .header-right-actions {
        gap: 5px;
        flex-wrap: nowrap;
    }
    
    .header-cart-btn {
        padding: 8px 10px;
        font-size: 16px;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        background: #0066cc;
        color: white;
        border: none;
        padding: 8px 12px;
        border-radius: 5px;
        font-size: 18px;
        cursor: pointer;
        margin-left: 5px;
    }
}

@media (max-width: 768px) {
    .main-header-transparent .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .header-logo img {
        max-height: 40px;
    }
    
    .btn-header-store-locator {
        padding: 6px 8px;
        margin-right: 3px;
    }
    
    .btn-header-store-locator i {
        font-size: 14px;
        margin: 0;
    }
    
    .btn-header-contact {
        padding: 6px 8px;
        margin-right: 3px;
    }
    
    .btn-header-contact i {
        font-size: 14px;
        margin: 0;
    }
    
    .btn-header-login {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .header-right-actions {
        gap: 3px;
    }
    
    .header-cart-btn {
        padding: 6px 8px;
        font-size: 14px;
    }
    
    .cart-badge {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }
    
    .mobile-menu-toggle {
        padding: 6px 10px;
        font-size: 16px;
        margin-left: 3px;
    }
}

/* Login Dropdown */
.login-toggle-wrapper {
    position: relative;
}

.login-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 25px;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.login-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.login-dropdown-content h5 {
    color: #1e293b;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.login-form-group {
    margin-bottom: 15px;
}

.form-control-modern {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: var(--transition);
}

.form-control-modern:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.btn-login-submit {
    width: 100%;
    background: #0098d7;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-login-submit:hover {
    background: #004999;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.login-dropdown-links {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.login-dropdown-links a {
    color: #0066cc;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.login-dropdown-links a:hover {
    color: #004999;
    text-decoration: underline;
}

/* Login Alert Message */
.login-alert-message {
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.login-alert-message.alert-error {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fca5a5;
}

.login-alert-message.alert-success {
    background: #dcfce7;
    color: #16a34a;
    border: 1px solid #86efac;
}

.login-alert-message.alert-warning {
    background: #fef3c7;
    color: #d97706;
    border: 1px solid #fcd34d;
}

/* Login Processing Indicator */
.login-processing {
    text-align: center;
    padding: 12px;
    color: #EC2E38;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.login-processing i {
    margin-right: 8px;
}

/* Login Button Wrapper with Spinner */
.login-btn-wrapper {
    position: relative;
    margin-bottom: 10px;
}

.login-btn-wrapper .btn-login-submit {
    width: 100%;
    transition: all 0.3s ease;
}

.login-btn-wrapper .btn-login-submit.loading {
    padding-right: 45px;
}

.login-btn-wrapper .btn-spinner {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 16px;
}

/* Page Button with Spinner */
.btn-with-spinner {
    position: relative;
    display: inline-block;
}

.btn-with-spinner .btn-spinner-overlay {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    display: none;
}

.btn-with-spinner.loading .btn-spinner-overlay {
    display: inline-block;
}

.btn-with-spinner.loading button,
.btn-with-spinner.loading input[type="submit"] {
    padding-right: 45px;
}

/* Form Processing Overlay */
.form-processing-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    flex-direction: column;
}

.form-processing-overlay .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e5e7eb;
    border-top-color: #EC2E38;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.form-processing-overlay p {
    margin-top: 15px;
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Page Alert Messages */
.page-alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-alert.alert-error {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fca5a5;
}

.page-alert.alert-success {
    background: #dcfce7;
    color: #16a34a;
    border: 1px solid #86efac;
}

.page-alert.alert-warning {
    background: #fef3c7;
    color: #d97706;
    border: 1px solid #fcd34d;
}

.page-alert.alert-info {
    background: #dbeafe;
    color: #2563eb;
    border: 1px solid #93c5fd;
}

.page-alert i {
    font-size: 20px;
}

/* Header Icon Buttons */
.header-icon-btn {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 12px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-icon-btn:hover {
    color: #fbbf24;
}

/* Header Cart Button */
.header-cart-btn {
    position: relative;
    color: white;
    font-size: 20px;
    text-decoration: none;
    padding: 8px 6px;
    transition: var(--transition);
}

.header-cart-btn:hover {
    color: #fbbf24;
}

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    background: #0066cc;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 10px 14px;
    border-radius: 5px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: #004999;
}

/* Responsive Header Styles */
@media (max-width: 991px) {
    .main-header-transparent {
        padding: 15px 0;
    }
    
    .header-logo img {
        max-height: 35px !important;
    }
    
    .btn-header-login {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .header-cart-btn {
        font-size: 18px;
    }
    
    .hero-title-modern {
        font-size: 36px;
    }
    
    .hero-subtitle-modern {
        font-size: 14px;
    }
    
    .modern-search-filter {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .filter-type-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .filter-tab-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .filter-inputs-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .filter-form-modern {
        border-radius: 15px;
        padding: 15px;
    }
    
    .btn-search-modern {
        width: 100%;
        padding: 12px;
    }
}

@media (max-width: 767px) {
    .top-bar-slim {
        display: none;
    }
    
    .hero-section {
        height: 500px;
    }
    
    .hero-title-modern {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .filter-type-tabs {
        justify-content: center;
    }
    
    .popular-searches {
        margin-top: 20px;
    }
    
    .popular-label {
        display: block;
        margin-bottom: 10px;
    }
    
    .section-header-with-tabs {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product-tabs-buttons {
        width: 100%;
        justify-content: right;
    }
    
    .tab-btn {
        flex: 1;
        min-width: auto;
        padding: 10px 15px;
        font-size: 12px;
    }
}

.header-contact a,
.header-links a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    transition: var(--transition);
}

.header-contact a:hover,
.header-links a:hover {
    color: #fbbf24;
}

.header-contact i,
.header-links i {
    margin-right: 5px;
}

/* Header Main */
.header-main {
    padding: 25px 0;
    background: white;
    border-bottom: 1px solid #e0e0e0;
}

.logo img {
    max-height: 60px;
    width: auto;
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 5px;
    overflow: hidden;
}

.search-input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    background: transparent;
    font-size: 14px;
}

.search-input:focus {
    outline: none;
}

.search-btn {
    background: #0066cc;
    color: white;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.search-btn:hover {
    background: #004999;
    color: white;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.login-section {
    flex: 1;
}

.login-form-inline {
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
}

.login-input {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 13px;
    flex: 1;
}

.btn-login {
    background: #0066cc;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-login:hover {
    background: #004999;
}

.login-links {
    font-size: 12px;
    text-align: center;
}

.login-links a {
    color: #0066cc;
    text-decoration: none;
}

.login-links a:hover {
    text-decoration: underline;
}

.user-section {
    display: flex;
    gap: 15px;
}

.user-link {
    color: #1e293b;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.user-link:hover {
    color: #0066cc;
}

.cart-link {
    position: relative;
    color: #1e293b;
    font-size: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.cart-link:hover {
    color: #0066cc;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #0066cc;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
}

.mobile-menu-toggle {
    background: #0066cc;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

/* Header Navigation */
.header-nav {
    background: linear-gradient(135deg, #47c9ff 0%, #0098d7 100%);
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.header-nav .mainmenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.header-nav .mainmenu li {
    position: relative;
}

.header-nav .dropdownmenubtn {
    color: white;
    padding: 15px 25px;
    display: block;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-transform: capitalize;
}

.header-nav .dropdownmenubtn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-view-all-menu,
.btn-enquiry {
    background: #0066cc;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: var(--transition);
}

.btn-view-all-menu:hover,
.btn-enquiry:hover {
    background: #004999;
    color: white;
}

/* ========================================
   MODERN FOOTER STYLES
   ======================================== */

.modern-footer-new {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0;
}

.footer-top {
    padding: 50px 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 14px;
}

.footer-heading {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #0066cc;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    font-size: 14px;
}

.footer-links a i {
    margin-right: 8px;
    color: #0066cc;
}

.footer-links a:hover {
    color: #0066cc;
    padding-left: 5px;
}

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

.footer-contact li {
    display: flex;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-contact i {
    color: #0066cc;
    margin-right: 12px;
    margin-top: 3px;
    font-size: 16px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: #0066cc;
}

.footer-apps h5,
.footer-social h5 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.app-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.app-buttons img {
    height: 45px;
    transition: var(--transition);
}

.app-buttons a:hover img {
    transform: translateY(-3px);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: #0066cc;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.4);
}

.footer-bottom {
    padding: 25px 0;
        background: rgb(0 77 160);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.payment-methods {
    max-height: 30px;
    opacity: 0.8;
}

/* ========================================
   CAR DEALERSHIP LAYOUT STYLES
   ======================================== */

/* Hero Section */
.hero-section {
    position: relative;
    margin-bottom: 0;
    height: 550px;
    background-image: url('../img/banner2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgb(0 0 0 / 28%) 0%, rgb(0 0 0 / 0%) 100%);
        z-index: 1;
    }

.container {
    max-width: 1320px;
}

.hero-carousel {
    position: relative;
    height: 700px;
    overflow: hidden;
    display: none;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    height: 100%;
}

.hero-carousel .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(30, 58, 138, 0.9) 0%, transparent 70%);
    z-index: 2;
}

.hero-subtitle {
    color: #fbbf24;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-title {
    color: white;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary-hero {
    background: #0066cc;
    color: white;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

.btn-primary-hero:hover {
    background: #004999;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.4);
}

.btn-secondary-hero {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border: 2px solid white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-secondary-hero:hover {
    background: white;
    color: #1e3a8a;
}

/* Hero Content Overlay */
.hero-content-overlay {
    position: relative;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 100;
    padding: 20px 0 40px 0;
}

.hero-subtitle-modern {
    color: white;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title-modern {
    color: white;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 40px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

/* Modern Search Filter */
.modern-search-filter {
    max-width: 900px;
    margin: 0 auto;
}

.filter-type-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-tab-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.filter-tab-btn.active,
.filter-tab-btn:hover {
    background: white;
    color: #1e293b;
    border-color: white;
}

.filter-tab-btn i {
    margin-right: 8px;
}

/* Filter Form Modern */
.filter-form-modern {
    background: white;
    border-radius: 50px;
    padding: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.filter-inputs-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-input-group {
    flex: 1;
}

.modern-select {
    width: 100%;
    padding: 15px 20px;
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 500;
    color: #1e293b;
    cursor: pointer;
    outline: none;
}

.modern-select:focus {
    outline: none;
}

.filter-button-group {
    flex-shrink: 0;
}

.btn-search-modern {
    background: linear-gradient(135deg, #47c9ff 0%, #0098d7 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-search-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

/* Popular Searches */
.popular-searches {
    margin-top: 25px;
    text-align: center;
}

.popular-label {
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-right: 15px;
}

.popular-tags {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.popular-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.popular-tag:hover {
    background: white;
    color: #1e293b;
    border-color: white;
}

.filter-tabs .nav-tabs {
    border: none;
    background: #f8f9fa;
    padding: 5px;
    border-radius: 10px 10px 0 0;
}

.filter-tabs .nav-link {
    border: none;
    background: transparent;
    color: #6c757d;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.filter-tabs .nav-link.active {
    background: white;
    color: #0066cc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filter-form {
    padding: 25px;
}

.form-select,
.form-control-search {
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 15px;
    width: 100%;
    transition: var(--transition);
}

.form-select:focus,
.form-control-search:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.btn-search-primary {
    background: #0066cc;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-search-primary:hover {
    background: #004999;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

/* Section Headers */
.section-header-center {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    color: #6c757d;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title {
    color: #1e293b;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-tabs {
    display: flex;
    gap: 10px;
}

.tab-btn {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    color: #1e293b;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    background: #0066cc;
    color: white;
    border-color: #0066cc;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 480px;
    overflow: hidden;
    background: linear-gradient(135deg, #47c9ff 0%, #0098d7 100%);
}

.welcome-title {
    color: #1e293b;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.welcome-description {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.8;
}

.btn-welcome {
    background: #0066cc;
    color: white;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-welcome:hover {
    background: #004999;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.4);
}

/* ========================================
   PREMIUM WELCOME SECTION
   ======================================== */

.welcome-section-premium {
    padding: 80px 0;
    background: white;
}

.welcome-image-wrapper {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.welcome-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0px;
}

.btn-visit-site {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #1e293b;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.btn-visit-site:hover {
    background: white;
    color: #1e293b;
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-visit-site i {
    transition: var(--transition);
}

.btn-visit-site:hover i {
    transform: translateX(5px);
}

.welcome-content-premium {
    padding-left: 40px;
}

.welcome-title-premium {
    color: #1e293b;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.3;
}

.welcome-description-premium {
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.welcome-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.welcome-features li {
    color: #475569;
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.welcome-features li i {
    color: #10b981;
    font-size: 18px;
    flex-shrink: 0;
}

.btn-get-started {
    background: #00a8ff;
    color: white;
    padding: 14px 35px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    display: inline-block;
    transition: var(--transition);
}

.btn-get-started:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Responsive Premium Welcome */
@media (max-width: 992px) {
    .welcome-content-premium {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .welcome-title-premium {
        font-size: 28px;
    }
    
    .btn-visit-site {
        bottom: 20px;
        left: 20px;
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Brands Section */
.brands-section {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
    justify-items: center;
}

@media (max-width: 1200px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.brand-card {
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
}

.brand-logo-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: var(--transition);
}

.brand-card:hover .brand-logo-circle {
    border-color: #0066cc;
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.2);
    transform: translateY(-5px);
}

.brand-logo-circle img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-name {
    color: #1e293b;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

/* Products Section */
.products-section {
    padding: 60px 0;
    background: white;
}

/* Section Header with Tabs */
.section-header-with-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-header-left {
    text-align: left;
}

.section-header-left .section-subtitle {
    text-align: left;
}

.section-header-left .section-title {
    text-align: left;
    margin-bottom: 0;
}

.product-tabs-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

/* View More Button */
.btn-view-more {
    background: white;
    color: #00a8ff;
    border: 1px solid #00a8ff;
    padding: 7px 14px !important;
    border-radius: 0;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-view-more:hover {
    background: #0098d7;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 44, 115, 0.3);
}

.btn-view-more i {
    font-size: 12px;
    transition: var(--transition);
}

.btn-view-more:hover i {
    transform: translateX(5px);
}

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

@media (max-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card-modern {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
    background: #f8f9fa;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
    padding: 10px;
}

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

.product-badge-featured {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #0066cc;
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.product-badge-new {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #10b981;
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.product-badge-count {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-actions {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

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

.action-btn {
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
    background: #0066cc;
    color: white;
    transform: scale(1.1);
}

.product-content {
    padding: 20px;
}

.product-name {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.product-name a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

.product-price-main {
    color: #0066cc;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.product-price-main::before {
    content: '\20B9';
    font-family: Arial, sans-serif;
}

.product-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.product-meta span {
    color: #6c757d;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.btn-view-details {
    background: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
    padding: 10px 20px;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.btn-view-details:hover {
    background: #0066cc;
    color: white;
}

/* Content Section */
.content-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.content-section .section-header-with-tabs {
    margin-bottom: 40px;
}

.catalogue-card,
.video-card {
    display: block;
    text-decoration: none;
    background: white;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.catalogue-card:hover,
.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.catalogue-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.catalogue-title,
.video-title {
    padding: 15px;
    color: #1e293b;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
    text-align: center;
}

.video-thumbnail {
    position: relative;
    height: 250px;
    overflow: hidden;
    object-fit:cover;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 102, 204, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: var(--transition);
}

.video-card:hover .play-button {
    background: #004999;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Product Tabs */
.product-tabs-wrapper .nav-pills {
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 40px;
}

.product-tabs-wrapper .nav-link {
    background: transparent;
    color: #6c757d;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 0;
    transition: var(--transition);
    position: relative;
}

.product-tabs-wrapper .nav-link.active {
    background: transparent;
    color: #0066cc;
}

.product-tabs-wrapper .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #0066cc;
}

.product-tabs-wrapper .nav-link:hover {
    color: #0066cc;
}

.btn-explore-more {
    background: #00a8ff;
    color: #ffffff;
    border: 1px solid #00a8ff;
    padding: 15px 40px;
    border-radius: 0px;
    text-decoration: none;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-explore-more:hover {
    background: #0098d7;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 44, 115, 0.3);
}

/* CTA Sections */
.cta-section {
    background: linear-gradient(135deg, #47c9ff 0%, #0098d7 100%);
    padding: 50px 0;
    margin: 60px 0;
}

.cta-section-dark {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.cta-title {
    color: white;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
}

.btn-cta {
    background: white;
    color: #0066cc;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta:hover {
    background: #f8f9fa;
    color: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-white {
    background: white;
    color: #1e293b;
}

.btn-cta-white:hover {
    background: #f8f9fa;
    color: #1e293b;
}

/* Carousel Styles */
.owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white !important;
    color: #1e293b !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.owl-carousel .owl-nav button:hover {
    background: #0098d7 !important;
    color: white !important;
}

.owl-carousel .owl-nav .owl-prev {
    left: -25px;
}

.owl-carousel .owl-nav .owl-next {
    right: -25px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .login-form-inline {
        flex-direction: column;
    }
    
    .header-nav .mainmenu ul {
        flex-wrap: wrap;
    }
}

@media (max-width: 992px) {
    .header-top {
        display: none;
    }
    
    .header-nav {
        display: none;
    }
    
    .login-section {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 750px !important;
        min-height: 750px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-carousel {
        height: 400px;
    }
    
    .hero-content {
        background: linear-gradient(90deg, rgba(30, 58, 138, 0.95) 0%, rgba(30, 58, 138, 0.7) 100%);
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .text-lg-right {
        text-align: left !important;
        margin-top: 20px;
    }
    
    .product-tabs-wrapper .nav-link {
        padding: 10px 15px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 750px !important;
        min-height: 850px;
    }
    
    .hero-title-premium {
        font-size: 28px;
    }
    
    .modern-search-filter-premium {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 750px !important;
        min-height: 750px;
    }
}

/* ========================================
   PREMIUM FILTER DESIGN (Horizontal Layout)
   ======================================== */

.hero-title-premium {
    color: white;
    font-size: 40px;
    font-weight: 600!important;
    margin-bottom: 20px;
    text-shadow: none!important;
    letter-spacing: 2px;
    line-height: 1.2;
}

.modern-search-filter-premium {
    max-width: 1000px;
    margin: 0 auto;
}

.premium-filter-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.premium-filter-tabs {
    display: flex;
    background: #f8f9fa;
    padding: 8px;
    gap: 8px;
    border-radius: 16px 16px 0 0;
}

.premium-tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 400;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 0;
}

.premium-tab-btn.active {
    background: white;
    color: #0066cc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.premium-tab-btn:hover {
    color: #0066cc;
    background: rgba(255, 255, 255, 0.5);
}

.premium-tab-btn i {
    margin-right: 6px;
}

.premium-filter-form {
    padding: 30px;
    background: white;
}

.premium-filter-row {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.premium-filter-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.premium-filter-field-wide {
    flex: 2;
}

.premium-label {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 0px;
    font-size: 14px;
    color: #1e293b;
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.premium-input:focus {
    border-color: #0066cc;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.premium-filter-button {
    flex-shrink: 0;
}

.btn-premium-search {
    width: 50px;
    height: 50px;
    background: #00a8ff;
    border: none;
    border-radius: 0px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.btn-premium-search::before {
    content: '\f002';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.btn-premium-search:hover {
    background: #004999;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
}

.btn-premium-browse::before {
    content: '\f0b1';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

/* Responsive Premium Filter */
@media (max-width: 992px) {
    .hero-title-premium {
        font-size: 36px;
    }
    
    .premium-filter-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .premium-filter-button {
        width: 100%;
    }
    
    .btn-premium-search {
        width: 100%;
    }
}

/* ========================================
   OLD FILTER CARDS DESIGN (BACKUP)
   ======================================== */

.modern-search-filter {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.filter-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.filter-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: left;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.filter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.filter-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #e0f7ff 0%, #b8ecff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.filter-card-icon i {
    font-size: 24px;
    color: #4f46e5;
    transition: var(--transition);
}

.filter-card:hover .filter-card-icon {
    background: linear-gradient(135deg, #47c9ff 0%, #0098d7 100%);
    transform: scale(1.05);
}

.filter-card:hover .filter-card-icon i {
    color: white;
}

.filter-card-title {
    color: #1e293b;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.filter-card-desc {
    color: #64748b;
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.filter-card-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-card-select,
.filter-card-input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #1e293b;
    background: white;
    transition: var(--transition);
    outline: none;
}

.filter-card-select:focus,
.filter-card-input:focus {
    border-color: #4f46e5;
    background: white;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.08);
}

.btn-filter-card {
    background: linear-gradient(135deg, #47c9ff 0%, #0098d7 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: capitalize;
    letter-spacing: 0.3px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: 100%;
    margin-top: 5px;
}

.btn-filter-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35);
    color: white;
}

/* Responsive Filter Cards */
@media (max-width: 1200px) {
    .filter-cards-row {
        gap: 15px;
    }
    
    .filter-card {
        padding: 25px 18px;
    }
}

@media (max-width: 992px) {
    .filter-cards-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .filter-card {
        padding: 25px 20px;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* ========================================
   CAR ACTION SECTION (Looking for Car / Sell Car)
   ======================================== */

.car-action-section {
    padding: 60px 0;
    background: white;
}

.car-action-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.car-action-card {
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.car-action-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    opacity: 0.1;
    transition: var(--transition);
}

.car-action-card-blue {
    background: linear-gradient(135deg, #47c9ff 0%, #0098d7 100%);
    animation: pulse-blue-card 3s ease-in-out infinite;
}

@keyframes pulse-blue-card {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
    }
    50% {
        box-shadow: 0 15px 40px rgba(0, 102, 204, 0.5);
    }
}

.car-action-card-blue::before {
    background: #3b82f6;
}

.car-action-card-blue .car-action-title,
.car-action-card-blue .car-action-desc {
    color: white;
}

.car-action-card-pink {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    animation: pulse-orange-card 3s ease-in-out infinite;
}

@keyframes pulse-orange-card {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
    }
}

.car-action-card-pink::before {
    background: #ec4899;
}

.car-action-card-pink .car-action-title,
.car-action-card-pink .car-action-desc {
    color: white;
}

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

.car-action-card:hover::before {
    transform: scale(1.2);
}

.car-action-content {
    flex: 1;
    z-index: 2;
    position: relative;
}

.car-action-title {
    color: #1e293b;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.car-action-desc {
    color: #475569;
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.7;
    max-width: 100%;
}

.btn-car-action {
    background: white;
    color: #1e293b;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-transform: capitalize;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.car-action-card-blue .btn-car-action {
    color: #0066cc;
}

.car-action-card-pink .btn-car-action {
    color: #ff6b35;
}

.btn-car-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    gap: 15px;
}

.car-action-card-blue .btn-car-action:hover {
    color: #0066cc;
}

.car-action-card-pink .btn-car-action:hover {
    color: #ff6b35;
}

.car-action-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    z-index: 2;
    position: relative;
    transition: var(--transition);
}

.car-action-icon i {
    font-size: 45px;
    transition: var(--transition);
}

.car-action-card-blue .car-action-icon i {
    color: #f7f7f7;
}

.car-action-card-pink .car-action-icon i {
    color: #ffffff;
}

.car-action-card:hover .car-action-icon {
    transform: scale(1.1) rotate(10deg);
}

/* Responsive Car Action Cards */
@media (max-width: 992px) {
    .car-action-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .car-action-card {
        padding: 30px;
    }
    
    .car-action-icon {
        width: 80px;
        height: 80px;
    }
    
    .car-action-icon i {
        font-size: 35px;
    }
}

@media (max-width: 576px) {
    .car-action-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .car-action-content {
        margin-bottom: 20px;
    }
    
    .car-action-desc {
        max-width: 100%;
    }
    
    .car-action-icon {
        margin: 0 auto;
    }
}

/* ========================================
   HERO BACKGROUND SLIDER STYLES
   ======================================== */

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content-overlay {
    position: relative;
    z-index: 1;
}

/* ========================================
   STATISTICS SECTION STYLES
   ======================================== */

.stats-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-card-dark {
    background: #1e293b;
    color: white;
}

.stat-card-blue {
    background: linear-gradient(135deg, #47c9ff, #0098d7);
    padding: 0;
    overflow: hidden;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.stat-icon i {
    font-size: 28px;
    color: white;
}

.stat-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.stat-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.stat-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.stat-link:hover {
    gap: 12px;
    color: white;
}

.stat-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

    .stat-image img {
        width: 100%;
        height: 500px;
        object-fit: cover;
    }

.stats-content {
    padding: 20px;
}

.stats-main-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
    line-height: 1.3;
}

.stat-number-card {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 3px;
}

.stat-sublabel {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

.stats-progress {
    margin-top: 30px;
}

.progress-item {
    margin-bottom: 20px;
}

.progress-item span {
    font-size: 14px;
    color: #475569;
    font-weight: 500;
}

.progress-bar-custom {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

/* Responsive Statistics Section */
@media (max-width: 992px) {
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-main-title {
        font-size: 26px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .stats-main-title {
        font-size: 22px;
        text-align: center;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-image {
        min-height: 250px;
    }
}

/* ========================================
   ABOUT IMAGE GALLERY STYLES
   ======================================== */

.about-image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
    height: 300px;
}

.about-image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px 20px 20px;
    color: white;
    transform: translateY(0);
    transition: var(--transition);
}

.about-image-overlay h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.about-image-overlay p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* CTA Section with Background Image */
.cta-with-image {
    position: relative;
    color: white;
}

.cta-with-image .cta-title,
.cta-with-image .cta-description {
    color: white;
}

/* Responsive About Image Gallery */
@media (max-width: 768px) {
    .about-image-card {
        height: 250px;
    }
    
    .about-image-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
    }
}

/* ========================================
   FEATURED SHOWCASE SECTION STYLES
   ======================================== */

.featured-showcase-section {
    padding: 80px 0;
    background: #ffffff;
}

.showcase-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.showcase-image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.showcase-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.3), rgba(0, 163, 255, 0.3));
    opacity: 0;
    transition: var(--transition);
}

.showcase-image-card:hover .showcase-overlay {
    opacity: 1;
}

/* Stats Cards with Prominent Highlighting */
.showcase-stats-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Best Seller Card - Blue Gradient */
.showcase-bestseller {
    background: linear-gradient(135deg, #47c9ff, #0098d7);
    color: white;
    animation: pulse-blue 3s ease-in-out infinite;
}

@keyframes pulse-blue {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3), 0 0 0 0 rgba(0, 102, 204, 0.7);
    }
    50% {
        box-shadow: 0 20px 50px rgba(0, 102, 204, 0.5), 0 0 0 20px rgba(0, 102, 204, 0);
    }
}

/* New Launch Card - Orange/Red Gradient */
.showcase-newlaunch {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    animation: pulse-orange 3s ease-in-out infinite;
}

@keyframes pulse-orange {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3), 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    50% {
        box-shadow: 0 20px 50px rgba(255, 107, 53, 0.5), 0 0 0 20px rgba(255, 107, 53, 0);
    }
}

.showcase-stats-card:hover {
    transform: translateY(-15px) scale(1.05);
}

.showcase-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.showcase-badge i {
    font-size: 14px;
}

.showcase-badge-new {
    animation: glow-badge 2s ease-in-out infinite;
}

@keyframes glow-badge {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
    }
}

.showcase-stat-number {
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.showcase-stat-label {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    opacity: 0.95;
}

.showcase-stat-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-showcase {
    background: white;
    color: #0066cc;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-showcase:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    gap: 15px;
    color: #0066cc;
}

.btn-showcase-new {
    color: #ff6b35;
}

.btn-showcase-new:hover {
    color: #ff6b35;
}

/* Info Card */
.showcase-info-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px 30px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.showcase-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    background: white;
}

.showcase-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #47c9ff, #0098d7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.showcase-icon i {
    font-size: 32px;
    color: white;
}

.showcase-info-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.showcase-info-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.showcase-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #475569;
    margin-bottom: 10px;
    font-weight: 500;
}

.showcase-features li i {
    color: #10b981;
    font-size: 16px;
}

/* Responsive Featured Showcase */
@media (max-width: 992px) {
    .featured-showcase-section {
        padding: 60px 0;
    }
    
    .showcase-image-card,
    .showcase-stats-card,
    .showcase-info-card {
        height: 300px;
    }
    
    .showcase-stat-number {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .showcase-image-card,
    .showcase-stats-card,
    .showcase-info-card {
        height: 280px;
        margin-bottom: 20px;
    }
    
    .showcase-stat-number {
        font-size: 42px;
    }
    
    .showcase-stat-label {
        font-size: 18px;
    }
}

/* ========================================
   HEADER SEARCH BAR STYLES
   ======================================== */

.header-search-wrapper {
    position: relative;
}

.header-search-wrapper .searchbox {
    display: flex;
    align-items: center;
    background: white;
    border-radius:5px!important;
    padding: 5px 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-search-wrapper .searchbox:focus-within {
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.2);
    transform: translateY(-2px);
}

    .header-search-wrapper input[type="text"] {
        border: none;
        outline: none;
        flex: 1;
        padding: 10px 15px;
        font-size: 14px;
        background: transparent;
        color: #1e293b;
        height: 30px;
    }

.header-search-wrapper input[type="text"]::placeholder {
    color: #94a3b8;
}

    .header-search-wrapper a[id*="btnsearch"],
    .header-search-wrapper a[href*="order-from-retailer"] {
        background: linear-gradient(135deg, #0066cc, #004999);
        border: none;
        border-radius: 0px !important;
        width: 40px !important;
        height: 40px !important;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 0px;
        transition: all 0.3s ease;
        cursor: pointer;
        text-decoration: none;
        border:0px!important;
    }

.header-search-wrapper a[href*="order-from-retailer"] {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.header-search-wrapper a[id*="btnsearch"]:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.4);
}

.header-search-wrapper a[href*="order-from-retailer"]:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Responsive Search Bar */
@media (max-width: 991px) {
    .header-search-wrapper {
        max-width: 400px !important;
        margin: 0 15px !important;
    }
    
    .header-search-wrapper input[type="text"] {
        font-size: 12px;
        padding: 8px 10px;
    }
    
    .header-search-wrapper a[id*="btnsearch"],
    .header-search-wrapper a[href*="order-from-retailer"] {
        width: 35px;
        height: 35px;
        margin-left: 5px;
    }
}

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

/* ========================================
   NAVIGATION STRIPE STYLES
   ======================================== */

.navigation-stripe {
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 999;
}

.nav-stripe-item {
    position: relative;
    display: inline-block;
}

.nav-stripe-link {
    display: block;
    padding: 15px 20px;
    color: #1e293b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-stripe-link i {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-stripe-item:hover .nav-stripe-link {
    color: #0066cc;
    background: rgba(0, 102, 204, 0.05);
}

.nav-stripe-item:hover .nav-stripe-link i {
    transform: rotate(180deg);
}

.nav-stripe-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.nav-stripe-item:hover .nav-stripe-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.nav-stripe-dropdown a {
    display: block;
    padding: 10px 20px;
    color: #1e293b;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-stripe-dropdown a:hover {
    background: #f8f9fa;
    color: #0066cc;
    padding-left: 25px;
}

/* Scrollbar for dropdown */
.nav-stripe-dropdown::-webkit-scrollbar {
    width: 6px;
}

.nav-stripe-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.nav-stripe-dropdown::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.nav-stripe-dropdown::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@media (max-width: 768px) {
    .navigation-stripe {
        display: none;
    }
}

/* ========================================
   CAROUSEL STYLES
   ======================================== */

.carousel-wrapper {
    position: relative;
    padding: 0 60px;
    margin-top: 30px;
}

.products-carousel {
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
    gap: 25px;
    padding: 25px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-carousel::-webkit-scrollbar {
    display: none;
}

.products-carousel .product-card-modern {
    flex: 0 0 300px;
    max-width: 300px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.products-carousel .product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: #0066cc;
}

.products-carousel .product-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f8f9fa;
}

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

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

.products-carousel .product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.products-carousel .product-card-modern:hover .product-overlay {
    opacity: 1;
}

.products-carousel .btn-quick-view {
    background: white;
    color: #0066cc;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.products-carousel .btn-quick-view:hover {
    background: #0066cc;
    color: white;
    transform: translateY(-2px);
}

.products-carousel .product-info {
    padding: 20px;
}

.products-carousel .product-title {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.products-carousel .product-title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.products-carousel .product-title a:hover {
    color: #0066cc;
}

.products-carousel .product-category {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
}

.products-carousel .product-footer {
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.products-carousel .product-code {
    font-size: 13px;
    color: #0066cc;
    font-weight: 600;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #e0e0e0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #1e293b;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
    background: #0066cc;
    border-color: #0066cc;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.product-badge-new {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.product-badge-trending {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

/* Section Headers */
.section-subtitle {
    color: #0066cc;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title {
    font-size: 38px;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .carousel-wrapper {
        padding: 0 45px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .products-carousel {
        gap: 15px;
        padding: 20px 5px;
    }
    
    .products-carousel .product-card-modern {
        flex: 0 0 260px;
        max-width: 260px;
    }
    
    .products-carousel .product-image-wrapper {
        height: 180px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .carousel-wrapper {
        padding: 0 35px;
    }
    
    .products-carousel .product-card-modern {
        flex: 0 0 220px;
        max-width: 220px;
    }
    
    .products-carousel .product-image-wrapper {
        height: 160px;
    }
    
    .section-title {
        font-size: 20px;
    }
}

/* ========================================
   CUSTOMER PRODUCT LIST PAGE REDESIGN
   ======================================== */

/* Modern Color Palette - Blue & Black Only */
:root {
    --primary-blue: #0098d7;
    --primary-dark: #001a4d;
    --primary-light: #003d7a;
    --text-dark: #000000;
    --text-medium: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 10px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Page Background */
.widget-back {
    background: var(--bg-light);
    padding: 30px 0;
    min-height: 100vh;
}

/* Breadcrumb Section Styling */
.bg-white.py-2 {
    background: var(--bg-white) !important;
    box-shadow: var(--shadow-sm);
    padding: 20px 0 !important;
    margin-bottom: 0;
}

/* Top Section Layout - All in One Line */
.topshowfilter {
    background: var(--bg-white);
    padding: 15px 20px;
    border-radius: 0px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

/* Single Row: Product Count, Page Name, Sort, Build Catalogue */
.topshowfilter .row {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.topshowfilter .col-md-2,
.topshowfilter .col-md-5,
.topshowfilter .col-md-12 {
    display: flex;
    align-items: center;
    padding: 5px 10px;
}

.topshowfilter .py-2,
.topshowfilter .font-weight-bold {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
    margin: 0;
    white-space: nowrap;
}

.topshowfilter #litproductcount {
    color: var(--primary-blue);
}

/* Page Heading */
.topshowfilter #litheading {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* Sort Dropdown - Smaller */
.topshowfilter .input-box {
    margin-bottom: 0;
}

.topshowfilter #drpfilter {
    padding: 8px 14px;
    font-size: 13px;
    min-width: 150px;
}

/* Build Catalogue Button - Smaller */
.topshowfilter .addtocartbtnmain,
.topshowfilter input[type="button"],
.topshowfilter .btn {
    padding: 8px 20px !important;
    font-size: 13px !important;
    border-radius: 0px !important;
    white-space: nowrap;
}

/* Hide Filter Tags from Top Section - They'll show in filter box */


/* Filter Sidebar - Sticky on Scroll */
.filtermainbox {
    position: sticky;
    top: 20px;
    height: fit-content;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #2c2c2c;
}

/* Filter Tags Inside Filter Box */
.filtermainbox .filter-tags-section {
    padding: 15px;
    background: var(--bg-light);
    border-bottom: 2px solid var(--border-color);
}

    .filtermainbox .btn-secondary {
        background: #2c2c2c;
        border: none;
        border-radius: 18px;
        padding: 5px 14px;
        font-size: 12px;
        font-weight: 500;
        margin-right: 6px;
        margin-bottom: 6px;
        transition: var(--transition);
        color: white;
    }

.filtermainbox .btn-secondary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.filtermainbox .btn-outline-secondary {
    border: 1px solid var(--border-color);
    color: var(--text-medium);
    border-radius: 18px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 500;
    transition: var(--transition);
    background: white;
}

.filtermainbox .btn-outline-secondary:hover {
    background: var(--bg-light);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.filtermainbox::-webkit-scrollbar {
    width: 6px;
}

.filtermainbox::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

.filtermainbox::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 10px;
}

.filtermainbox::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Filter Main Container */
.filtermain {
    background: var(--bg-white);
    border-radius:0px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

/* Filter Header */
.filterhead {
    background: rgb(44 44 44);
    padding: 18px 20px;
    position: relative;
}

.filterhead h3 {
    color: var(--bg-white);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.3px;
}

.filercross {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.filercross a {
    color: var(--bg-white);
    font-size: 20px;
    transition: var(--transition);
}

.filercross a:hover {
    transform: rotate(90deg);
    opacity: 0.8;
}

/* Filter Dropdown Buttons */
.filterdrpbtn a {
    font-weight: 600;
    display: block;
    padding: 12px 16px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-white);
    transition: var(--transition);
    font-size: 13px;
}

.filterdrpbtn a:hover {
    background: var(--bg-light);
    color: var(--primary-blue);
    padding-left: 25px;
}

.filterdrpbtn a i {
    float: right;
    margin: 4px 0;
    transition: var(--transition);
    color: var(--text-light);
}

.filterdrpbtn a:not(.collapsed) i {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

/* Filter Inner Content */
#filter .filterinner {
    padding: 15px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

/* Custom Checkbox Styling */
.customecheckbox {
    display: block;
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-medium);
    user-select: none;
    transition: var(--transition);
}

.customecheckbox:hover {
    color: var(--text-dark);
    padding-left: 35px;
}

.customecheckbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.customecheckbox .checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 5px;
    transition: var(--transition);
}

.customecheckbox:hover .checkmark {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.customecheckbox input:checked ~ .checkmark {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.customecheckbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.customecheckbox input:checked ~ .checkmark:after {
    display: block;
}

/* Filter Input Boxes */
.input-box input[type="text"],
.input-box input[type="number"],

.input-box textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: var(--transition);
}

.input-box select{
     width: 100%;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: var(--transition);
}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.input-box button,
.input-box input[type="submit"] {
    width: 100%;
    padding: 9px 20px;
    background: rgb(0, 168, 255);
    color: var(--bg-white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.input-box button:hover,
.input-box input[type="submit"]:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Apply Filter Button - Blue Only */
#div1 .input-box button {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

#div1 .input-box button:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
}

/* Product List Container */
.col-md-9.col-12 {
    padding-left: 15px;
}

/* Product Card Redesign */
.product1 {
    background: var(--bg-white);
    border-radius: 0px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.product1:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

/* Product List Header */
.prolisthead {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 15px 20px;
    border-bottom: 2px solid var(--primary-blue);
}

.prolisthead .row {
    display: flex;
    align-items: center;
}

.prolisthead .col-md-9 {
    display: flex;
    align-items: center;
}

.prolisthead .col-md-3 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.prolisthead .text-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.prolistheadname {
    display: flex;
    align-items: center;
}

.prolistheadname img {
    margin-right: 12px;
    height: 35px;
    width: auto;
    object-fit: contain;
    background: var(--bg-white);
    padding: 4px;
    border-radius: var(--radius-sm);
}

.prolistheadname a {
    display: inline-block;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.4;
    transition: var(--transition);
}

.prolistheadname a:hover {
    color: var(--primary-blue);
    text-decoration: none;
}

/* Product Body */
.pro1body {
    padding: 18px;
}

/* Expand/Collapse Button - Border Only */
.expandlink a,
.expandlink .btn {
    background: transparent !important;
    color: var(--primary-blue) !important;
    border: 2px solid var(--primary-blue) !important;
    padding: 6px 16px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    border-radius: 20px !important;
    transition: var(--transition) !important;
    text-decoration: none !important;
}

.expandlink a:hover,
.expandlink .btn:hover {
    background: var(--primary-blue) !important;
    color: var(--bg-white) !important;
    border-color: var(--primary-blue) !important;
}

/* Product Image Container */
.productimage2 {
    position: relative;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    padding: 20px;
    margin-bottom: 20px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.productimage2:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.productimage2 img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.productimage2:hover img {
    transform: scale(1.05);
}

/* Wishlist Button - Blue Only */
.listwishbtn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.listwishbtn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bg-white);
    border-radius: 50%;
    color: var(--primary-blue);
    font-size: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.listwishbtn a:hover {
    background: var(--primary-blue);
    color: var(--bg-white);
    transform: scale(1.1);
}

/* Product Table */
.product1table table {
    width: 100%;
    font-size: 13px;
    border-collapse: separate;
    border-spacing: 0;
}

.product1table table tr {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.product1table table tr:hover {
    background: var(--bg-light);
}

.product1table table tr:last-child {
    border-bottom: none;
}

.product1table table tr td,
.product1table table tr th {
    padding: 10px 10px;
    vertical-align: top;
}

.product1table table tr th {
    font-weight: 600;
    width: 40%;
    color: var(--text-dark);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.product1table table tr td {
    color: var(--text-medium);
    font-size: 13px;
}

/* MRP Styling - Blue color only */
.product1table table tr#trmrp td {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 16px;
}

/* Buy Now and Add to Cart Buttons - Side by Side */
.pro1body .text-right {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    margin-top: 15px;
}

/* Buy Now Button - With Background */
.addtocartbtnmain {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(0, 168, 255);
    color: var(--bg-white);
    padding: 10px 12px;
    border-radius: 5px!important;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    letter-spacing: 0.3px;
}

.addtocartbtnmain:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--bg-white);
    text-decoration: none;
}

.addtocartbtnmain i {
    font-size: 14px;
}

/* Add to Cart Button - Border Only */
.prolisthead .addtocartbtnmain {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: none;
}

.prolisthead .addtocartbtnmain:hover {
    background: var(--primary-blue);
    color: var(--bg-white);
    border-color: var(--primary-blue);
}

/* Sort Dropdown */
#drpfilter {
    padding: 10px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg-white);
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

#drpfilter:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

/* Empty Stock Message */
.litemptystock {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-medium);
    font-size: 18px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .filtermainbox {
        position: relative;
        top: 0;
        max-height: none;
        margin-bottom: 30px;
    }
    
    .col-md-9.col-12 {
        padding-left: 15px;
    }
}

@media (max-width: 767px) {
    .prolistheadname a {
        font-size: 14px;
    }
    
    .product1table table tr th,
    .product1table table tr td {
        padding: 8px 6px;
        font-size: 12px;
    }
    
    .addtocartbtnmain {
        padding: 8px 18px;
        font-size: 12px;
        width: auto;
        justify-content: center;
    }
    
    .filterhead h3 {
        font-size: 14px;
    }
    
    .topshowfilter #litheading {
        font-size: 13px;
    }
}

/* Print Styles Enhancement */
@media print {
    .filtermainbox,
    .topshowfilter,
    .addtocartbtnmain,
    .listwishbtn {
        display: none !important;
    }
    
    .product1 {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .col-md-9.col-12 {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Navigation Stripe Styles */
.navigation-stripe {
    transition: all 0.3s ease;
}

/* Hide navigation stripe on defaultbrand.aspx */
body[class*="defaultbrand"] .navigation-stripe,
.page-defaultbrand .navigation-stripe {
    display: none !important;
}

/* ========================================
   RESPONSIVE STYLES FOR PREMIUM SECTIONS
   ======================================== */

/* Modern Search Filter Premium - Responsive */
.modern-search-filter-premium {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (max-width: 992px) {
    .modern-search-filter-premium {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .premium-filter-tabs {
        flex-wrap: wrap;
    }
    
    .premium-tab-btn {
        flex: 1 1 calc(50% - 8px);
        min-width: calc(50% - 8px);
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .premium-filter-form {
        padding: 20px;
    }
    
    .premium-filter-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .premium-filter-field,
    .premium-filter-field-wide {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .premium-filter-button {
        width: 100%;
    }
    
    .btn-premium-search {
        width: 100%;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .modern-search-filter-premium {
        padding: 0 10px;
    }
    
    .premium-filter-tabs {
        padding: 6px;
        gap: 6px;
    }
    
    .premium-tab-btn {
        flex: 1 1 calc(50% - 6px);
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .premium-tab-btn i {
        display: none;
    }
    
    .premium-filter-form {
        padding: 15px;
    }
    
    .premium-label {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .premium-input {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .premium-filter-container {
        border-radius: 12px;
    }
}

/* New Products Carousel Section - Responsive */
.new-products-carousel-section {
    padding: 40px 0;
    overflow: hidden;
}

@media (max-width: 992px) {
    .new-products-carousel-section {
        padding: 30px 0;
    }
    
    .new-products-carousel-section .section-title {
        font-size: 28px;
        text-align: center;
    }
    
    .new-products-carousel-section .section-subtitle {
        text-align: center;
    }
    
    .new-products-carousel-section .carousel-wrapper {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .new-products-carousel-section {
        padding: 25px 0;
    }
    
    .new-products-carousel-section .section-title {
        font-size: 24px;
    }
    
    .new-products-carousel-section .carousel-wrapper {
        padding: 0 35px;
    }
    
    .new-products-carousel-section .carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .new-products-carousel-section {
        padding: 20px 0;
    }
    
    .new-products-carousel-section .section-title {
        font-size: 20px;
        padding: 0 15px;
    }
    
    .new-products-carousel-section .section-subtitle {
        font-size: 12px;
        padding: 0 15px;
    }
    
    .new-products-carousel-section .carousel-wrapper {
        padding: 0 30px;
    }
    
    .new-products-carousel-section .carousel-nav {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .new-products-carousel-section .products-carousel {
        gap: 12px;
    }
    
    .new-products-carousel-section .products-carousel .product-card-modern {
        flex: 0 0 200px;
        max-width: 200px;
    }
    
    .new-products-carousel-section .products-carousel .product-image-wrapper {
        height: 140px;
    }
    
    .new-products-carousel-section .products-carousel .product-info {
        padding: 12px;
    }
    
    .new-products-carousel-section .products-carousel .product-title {
        font-size: 13px;
    }
}

/* Recent Searches Section - Responsive */
.recent-searches-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.recent-searches-section .container {
    max-width: auto;
    margin: 0 auto;
    padding: 0 15px;
}

.recent-searches-section .section-title {
    font-size: 28px;
    margin-bottom: 25px;
}

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

.recent-search-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.recent-search-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

@media (max-width: 992px) {
    .recent-searches-section {
        padding: 30px 0;
    }
    
    .recent-searches-section .section-title {
        font-size: 24px;
        text-align: center;
    }
    
    .recent-searches-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .recent-searches-section {
        padding: 25px 0;
    }
    
    .recent-searches-section .section-title {
        font-size: 22px;
    }
    
    .recent-searches-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .recent-search-item {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .recent-searches-section {
        padding: 20px 0;
    }
    
    .recent-searches-section .section-title {
        font-size: 18px;
    }
    
    .recent-searches-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .recent-search-item {
        padding: 12px 15px;
        border-radius: 8px;
    }
}

/* ========================================
   PRODUCTS CAROUSEL CLEAN - RESPONSIVE
   ======================================== */

.products-carousel-clean {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-carousel-clean::-webkit-scrollbar {
    display: none;
}

.products-carousel-clean .product-card,
.products-carousel-clean .product-item,
.products-carousel-clean > div {
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
    min-width: 250px;
}

@media (max-width: 1200px) {
    .products-carousel-clean .product-card,
    .products-carousel-clean .product-item,
    .products-carousel-clean > div {
        flex: 0 0 calc(33.333% - 14px);
        max-width: calc(33.333% - 14px);
    }
}

@media (max-width: 992px) {
    .products-carousel-clean .product-card,
    .products-carousel-clean .product-item,
    .products-carousel-clean > div {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .products-carousel-clean {
        gap: 15px;
        padding: 15px 0;
    }
    
    .products-carousel-clean .product-card,
    .products-carousel-clean .product-item,
    .products-carousel-clean > div {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
        min-width: 160px;
    }
}

@media (max-width: 576px) {
    .products-carousel-clean {
        gap: 12px;
        padding: 10px 0;
    }
    
    .products-carousel-clean .product-card,
    .products-carousel-clean .product-item,
    .products-carousel-clean > div {
        flex: 0 0 calc(50% - 6px);
        max-width: calc(50% - 6px);
        min-width: 140px;
    }
}
