/* Modern Design System for Direct Mobility Online */
:root {
    --primary-color: #8a2e8a; /* Logo Purple */
    --primary-light: #a64ca6;
    --secondary-color: #f8f9fa;
    --accent-color: #7d7d7d; /* Logo Gray */
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(138, 46, 138, 0.1);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(138, 46, 138, 0.15);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    overflow-y: scroll;
    background-color: var(--white);
    line-height: 1.6;
}

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

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

.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal-left {
    opacity: 0;
}

.reveal-left.active {
    animation: slideInLeft 0.8s ease-out forwards;
}

/* Navbar Styling */
.navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

/* Fix for Products link border bottom - Absolute Removal */
.navbar-nav .nav-item.dropdown .nav-link::after {
    display: none !important;
    width: 0 !important;
    opacity: 0 !important;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: 20px;
    background: var(--white);
    padding: 2rem;
    min-width: 600px !important;
    border-top: 5px solid var(--primary-color);
    left: 50% !important;
    transform: translateX(-50%) translateY(20px) !important;
    transition: var(--transition);
    visibility: hidden;
    opacity: 0;
    display: none; /* Changed from block to none for better click handling */
}

.dropdown-menu.show {
    display: block !important;
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0) !important;
}

/* Desktop Hover Support */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block !important;
        visibility: visible;
        opacity: 1;
        transform: translateX(-50%) translateY(0) !important;
    }
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.dropdown-item:hover {
    background-color: rgba(138, 46, 138, 0.05);
    color: var(--primary-color);
    transform: translateX(8px);
}

.dropdown-item.active {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateX(8px);
}

/* Animated Search - Capsule Shape */
.search-container {
    position: relative;
    width: 250px;
    height: 40px;
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    cursor: text;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.search-container:focus-within {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.search-container.active {
    width: 280px;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.search-input {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.95rem;
    color: var(--text-dark);
    padding-left: 10px;
}

.search-btn {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Social Icons */
.social-group a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    background: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid var(--glass-border);
}

.social-group a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px) rotate(360deg);
}

.social-group a.facebook:hover { background: #1877f2; }
.social-group a.x-twitter:hover { background: #000000; }

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/hero-new.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 4rem;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    color: var(--white);
    animation: fadeInUp 1s ease-out;
    padding-bottom: 5rem;
}

.hero-content h1 {
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white) !important;
    text-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    max-width: 700px;
    font-weight: 500;
    margin-left: auto;
    margin-right: auto;
}

.btn-modern {
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    border: none;
}

.btn-primary-modern {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(138, 46, 138, 0.4);
    z-index: 1;
    overflow: hidden;
    position: relative;
    display: inline-block;
    text-align: center;
}

.btn-primary-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
    z-index: -1;
}

.btn-primary-modern:hover {
    background: var(--primary-light);
    color: var(--white);
    box-shadow: 0 15px 35px rgba(138, 46, 138, 0.5);
}

.btn-primary-modern:hover::after {
    transform: translateX(100%);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Welcome Section */
.welcome-section {
    padding: 5rem 0 0 0;
    background: var(--white);
    position: relative;
    background-image: radial-gradient(var(--primary-color) 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    background-position: center;
    background-attachment: fixed;
}

.welcome-card {
    background: var(--white);
    padding: 4rem;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.08);
    border: 1px solid rgba(138, 46, 138, 0.1);
}

.welcome-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    letter-spacing: -2px;
}

.welcome-text p {
    font-size: 1.25rem;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto;
    line-height: 2;
    font-weight: 400;
}

/* Pricing Styling */
.product-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 1.5rem;
    background: rgba(138, 46, 138, 0.05);
    padding: 10px;
    border-radius: 12px;
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    text-align: center;
    cursor: pointer;
    z-index: 10;
}

.scroll-down i {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}
.section-title {
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.category-card {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    background: var(--white);
    height: 100%;
    position: relative;
}

.category-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(138, 46, 138, 0.12);
}

.category-card img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.category-card .card-body {
    padding: 1.5rem;
    text-align: center;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.category-card .card-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0;
    color: var(--text-dark);
    transition: var(--transition);
}

.category-card:hover .card-title {
    color: var(--primary-color);
}

/* Product Cards */
.product-card {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(138, 46, 138, 0.1);
    border-color: rgba(138, 46, 138, 0.1);
}

.product-card img {
    transition: transform 0.6s ease;
    padding: 1rem;
    height: 300px;
    object-fit: contain;
}

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

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(138, 46, 138, 0.3);
}

.product-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.product-card h5 {
    font-size: 1.15rem;
}

/* Section Spacing */
.py-large {
    padding: 5rem 0 !important;
}

/* Footer */
footer {
    background: #0f172a; /* Premium Dark Slate */
    color: var(--white);
    padding: 5rem 0;
}

.footer-link {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 0.8rem;
}

.footer-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-section-title {
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.feature-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem 2rem;
}

@media (max-width: 991px) {
    .feature-products-grid {
        grid-template-columns: 1fr;
    }
    .search-container {
        width: 100%;
        margin-top: 1rem;
    }
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: rotate(360deg);
}

/* Responsive Tweaks */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 991px) {
    .navbar {
        background: var(--white);
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-section {
        height: auto;
        padding: 10rem 0 5rem;
        text-align: center;
    }
    .hero-content .d-flex {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-section {
        padding: 8rem 0 4rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
}

.welcome-text h1, .welcome-text h2, .welcome-text h3 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    letter-spacing: -2px;
    font-family: 'Outfit', sans-serif;
    text-align: center;
}
/* News Cards Grid */
.news-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid rgba(138, 46, 138, 0.08);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(138, 46, 138, 0.08);
    border-color: rgba(138, 46, 138, 0.2);
}

.news-img-wrapper {
    height: 220px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.news-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.news-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.news-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: var(--transition);
}

.news-card:hover .news-title {
    color: var(--primary-color);
}

.news-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-read-more {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: var(--transition);
    width: fit-content;
}

.btn-read-more i {
    font-size: 0.8rem;
    transition: transform 0.25s ease;
}

.btn-read-more:hover {
    color: var(--primary-dark);
}

.btn-read-more:hover i {
    transform: translateX(4px);
}
/* Breadcrumb Section */
.breadcrumb-section {
    padding: 120px 0 35px;
    background: var(--secondary-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumb {
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

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

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

.page-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

/* Pagination */
.pagination-container {
    margin-top: 5rem;
}

.pagination {
    gap: 8px;
}

.page-link {
    border: 1px solid #e2e8f0;
    color: var(--text-dark);
    padding: 10px 18px;
    border-radius: 12px !important;
    font-weight: 600;
    transition: var(--transition);
}

.page-link:hover {
    background-color: rgba(138, 46, 138, 0.05);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(138, 46, 138, 0.3);
}

.page-item.disabled .page-link {
    color: var(--text-light);
    background-color: var(--secondary-color);
    border-color: #e2e8f0;
}

/* Contact Us Page */
.page-header {
    background-color: var(--primary-color, #0f4c81); /* fallback just in case */
    color: white;
    padding: 140px 0 60px;
    text-align: center;
}
.page-header h1 {
    font-weight: 700;
    margin-bottom: 0;
}
.contact-info-icon {
    color: var(--primary-color, #0f4c81);
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}
.contact-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}
.map-placeholder {
    width: 100%;
    height: 300px;
    background: #e9ecef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}
.form-control:focus {
    border-color: var(--primary-color, #0f4c81);
    box-shadow: 0 0 0 0.25rem rgba(15, 76, 129, 0.25);
}
.error-message {
    color: #dc3545;
    font-size: 0.875em;
    margin-top: 0.25rem;
    display: none;
}
        /* Sidebar Filters */
        .filter-sidebar {
            background: var(--white);
            border-radius: 24px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border: 1px solid rgba(138, 46, 138, 0.08);
            position: sticky;
            top: 100px;
        }
        
        .filter-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--glass-border);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .filter-group {
            margin-bottom: 2rem;
        }
        
        .filter-group-title {
            font-weight: 600;
            font-size: 1rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Custom Checkboxes */
        .form-check-input:checked {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .form-check-input:focus {
            border-color: var(--primary-light);
            box-shadow: 0 0 0 0.25rem rgba(138, 46, 138, 0.25);
        }
        
        .form-check-label {
            font-size: 0.95rem;
            color: var(--text-dark);
            font-weight: 500;
            cursor: pointer;
        }

        /* Price Range */
        .price-inputs {
            display: flex;
            gap: 10px;
            align-items: center;
            margin-top: 10px;
        }
        
        .price-inputs input {
            width: 100%;
            padding: 8px 12px;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            font-size: 0.9rem;
            outline: none;
            transition: var(--transition);
        }
        
        .price-inputs input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(138, 46, 138, 0.15);
        }
        
        .slider-styled {
            height: 6px;
            background: #e2e8f0;
            border-radius: 3px;
            position: relative;
            margin: 20px 0 10px;
        }
        
        .slider-progress {
            height: 100%;
            background: var(--primary-color);
            position: absolute;
            left: 10%;
            right: 20%;
            border-radius: 3px;
        }
        
        .slider-handle {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--white);
            border: 3px solid var(--primary-color);
            position: absolute;
            top: 50%;
            transform: translate(-50%, -50%);
            cursor: pointer;
            box-shadow: var(--shadow-sm);
            transition: transform 0.2s ease;
        }
        
        .slider-handle:hover {
            transform: translate(-50%, -50%) scale(1.15);
        }

        /* Sort Dropdown & Top bar */
        .listing-top-bar {
            background: var(--white);
            border-radius: 20px;
            padding: 1rem 1.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
            border: 1px solid rgba(0,0,0,0.02);
        }
        
        .custom-select {
            padding: 10px 20px;
            border-radius: 30px;
            border: 1px solid #e2e8f0;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-dark);
            outline: none;
            background-color: var(--white);
            transition: var(--transition);
            cursor: pointer;
        }
        
        .custom-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(138, 46, 138, 0.15);
        }

        /* Product Cards styling fixes for list view snippets */
        .product-card-desc {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 1rem;
            height: 2.7rem;
        }
        
        /* Mobile filter toggle button */
        .mobile-filter-btn {
            display: none;
        }
        
        /* Pagination */
        .pagination-container {
            margin-top: 4rem;
        }
        
        .pagination {
            gap: 8px;
        }
        
        .page-link {
            border: 1px solid #e2e8f0;
            color: var(--text-dark);
            padding: 10px 18px;
            border-radius: 12px !important;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .page-link:hover {
            background-color: rgba(138, 46, 138, 0.05);
            color: var(--primary-color);
            border-color: var(--primary-color);
            transform: translateY(-2px);
        }
        
        .page-item.active .page-link {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: var(--white);
            box-shadow: 0 4px 10px rgba(138, 46, 138, 0.3);
        }
        
        .page-item.disabled .page-link {
            color: var(--text-light);
            background-color: var(--secondary-color);
            border-color: #e2e8f0;
        }

        @media (max-width: 991px) {
            .filter-sidebar {
                position: static;
                margin-bottom: 2rem;
            }
            .mobile-filter-btn {
                display: flex;
                align-items: center;
                gap: 8px;
                width: 100%;
                justify-content: center;
                margin-bottom: 1.5rem;
            }
            .filter-sidebar-wrapper {
                display: none;
            }
            .filter-sidebar-wrapper.show {
                display: block;
            }
        }
    

/* Product View Styles */

    .breadcrumb-section {
        padding: 120px 0 35px;
        background: var(--secondary-color);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .breadcrumb {
        margin-bottom: 0.8rem;
        font-weight: 500;
    }
    
    .breadcrumb-item a {
        color: var(--text-light);
        text-decoration: none;
        transition: var(--transition);
    }
    
    .breadcrumb-item a:hover {
        color: var(--primary-color);
    }
    
    .breadcrumb-item.active {
        color: var(--primary-color);
    }

    /* Product Gallery */
    .product-gallery {
        background: var(--white);
        padding: 1.5rem;
        border-radius: 24px;
        border: 1px solid rgba(138, 46, 138, 0.08);
        box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    }
    
    .main-img-container {
        height: 450px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-radius: 18px;
        background: #f8fafc;
        border: 1px solid rgba(0,0,0,0.02);
        position: relative;
    }
    
    .main-img-container img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
        transition: transform 0.5s ease;
    }
    
    .main-img-container:hover img {
        transform: scale(1.05);
    }
    
    .thumbnail-gallery {
        display: flex;
        gap: 12px;
        margin-top: 15px;
        overflow-x: auto;
        padding-bottom: 8px;
    }
    
    .thumbnail-gallery::-webkit-scrollbar {
        height: 6px;
    }
    
    .thumbnail-gallery::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 10px;
    }
    
    .thumbnail-gallery::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 10px;
    }
    
    .thumbnail-gallery::-webkit-scrollbar-thumb:hover {
        background: var(--primary-color);
    }
    
    .thumb-item {
        flex: 0 0 calc(25% - 9px);
        height: 90px;
        border-radius: 12px;
        border: 2px solid transparent;
        overflow: hidden;
        background: #f8fafc;
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .thumb-item img {
        max-height: 85%;
        max-width: 85%;
        object-fit: contain;
    }
    
    .thumb-item:hover, .thumb-item.active {
        border-color: var(--primary-color);
        transform: translateY(-2px);
        box-shadow: var(--shadow-sm);
    }

    /* Product Info Right Column */
    .product-info-panel {
        padding-left: 1rem;
    }
    
    .availability-badge {
        display: inline-block;
        padding: 6px 14px;
        background: rgba(46, 204, 113, 0.15);
        color: #27ae60;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 1rem;
    }
    
    .product-meta-list {
        list-style: none;
        padding: 0;
        margin: 2rem 0;
        border-top: 1px solid #f1f5f9;
        border-bottom: 1px solid #f1f5f9;
        padding: 1.2rem 0;
    }
    
    .product-meta-list li {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
        color: var(--text-dark);
        font-weight: 500;
    }
    
    .product-meta-list li span {
        color: var(--text-light);
        font-weight: 400;
        display: inline-block;
        width: 100px;
    }
    
    .detail-price-box {
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--primary-color);
        margin: 1rem 0;
    }
    
    .price-ex-vat {
        font-size: 1.1rem;
        color: var(--text-light);
        font-weight: 500;
        margin-left: 10px;
    }

    /* VAT Exemption Section */
    .vat-relief-card {
        background: rgba(138, 46, 138, 0.04);
        border: 1px dashed var(--primary-color);
        border-radius: 16px;
        padding: 1.2rem;
        margin: 1.5rem 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }
    
    .vat-relief-text h6 {
        color: var(--primary-color);
        font-weight: 700;
        margin-bottom: 4px;
    }
    
    .vat-relief-text p {
        font-size: 0.85rem;
        color: var(--text-dark);
        margin: 0;
    }
    
    .btn-vat-action {
        background: var(--primary-color);
        color: var(--white);
        border: 2px solid var(--primary-color);
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 0.9rem;
        font-weight: 700;
        transition: all 0.3s ease;
        text-decoration: none;
        white-space: nowrap;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(138, 46, 138, 0.25);
    }
    
    .btn-vat-action:hover {
        background: var(--white);
        color: var(--primary-color);
        border-color: var(--primary-color);
        box-shadow: 0 6px 18px rgba(138, 46, 138, 0.35);
    }

    /* Quantity & Add to Cart */
    .purchase-actions {
        display: flex;
        gap: 15px;
        margin-top: 2rem;
    }
    
    .qty-selector {
        display: flex;
        align-items: center;
        border: 2px solid #e2e8f0;
        border-radius: 30px;
        overflow: hidden;
        background: var(--white);
    }
    
    .qty-btn {
        background: transparent;
        border: none;
        padding: 0 16px;
        font-size: 1.2rem;
        font-weight: bold;
        color: var(--text-dark);
        transition: var(--transition);
    }
    
    .qty-btn:hover {
        background: var(--secondary-color);
        color: var(--primary-color);
    }
    
    .qty-input {
        width: 45px;
        text-align: center;
        border: none;
        outline: none;
        font-weight: 700;
        color: var(--text-dark);
        background: transparent;
    }

    /* Tabs Section */
    .tabs-container {
        margin-top: 5rem;
    }
    
    .nav-tabs-custom {
        border-bottom: 2px solid #e2e8f0;
        gap: 10px;
    }
    
    .nav-tabs-custom .nav-link {
        border: none;
        background: transparent;
        color: var(--text-light);
        font-weight: 600;
        padding: 12px 25px;
        font-size: 1.05rem;
        border-bottom: 3px solid transparent;
        margin: 0;
        transition: var(--transition);
        border-radius: 0;
    }
    
    .nav-tabs-custom .nav-link::after {
        display: none !important;
    }
    
    .nav-tabs-custom .nav-link:hover {
        color: var(--primary-color);
    }
    
    .nav-tabs-custom .nav-link.active {
        color: var(--primary-color) !important;
        border-bottom-color: var(--primary-color);
        background: transparent;
    }
    
    .tab-content-custom {
        padding: 2.5rem 0;
        font-size: 1.05rem;
        color: var(--text-dark);
        line-height: 1.8;
    }

    /* VAT Modal */
    .vat-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1050;
        background: rgba(15, 23, 42, 0.6);
        backdrop-filter: blur(8px);
        align-items: center;
        justify-content: center;
        padding: 1.5rem;
    }
    
    .vat-modal.show {
        display: flex;
    }
    
    .vat-modal-content {
        background: var(--white);
        border-radius: 30px;
        width: 100%;
        max-width: 600px;
        box-shadow: 0 25px 60px rgba(0,0,0,0.2);
        overflow: hidden;
        border: 1px solid var(--glass-border);
        animation: modalFadeIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    
    @keyframes modalFadeIn {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .vat-modal-header {
        background: var(--primary-color);
        color: var(--white);
        padding: 1.5rem 2rem;
        position: relative;
    }
    
    .vat-modal-header h5 {
        font-weight: 800;
        margin: 0;
        font-size: 1.3rem;
    }
    
    .vat-modal-header .btn-close-white {
        position: absolute;
        top: 50%;
        right: 2rem;
        transform: translateY(-50%);
        background: transparent;
        border: none;
        color: var(--white);
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    .vat-modal-body {
        padding: 2rem;
    }
    
    .vat-modal-body label {
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 0.4rem;
    }
    
    .vat-form-control {
        border-radius: 12px;
        border: 1px solid #e2e8f0;
        padding: 10px 15px;
        font-size: 0.95rem;
    }
    
    .vat-form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(138, 46, 138, 0.15);
    }
    
    /* Related Products Section Header */
    .related-products-header {
        margin-top: 6rem;
        margin-bottom: 3rem;
    }

/* Cart specific styles */
.cart-table {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(138, 46, 138, 0.08);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.cart-table table {
    min-width: max-content;
}

.cart-table th,
.cart-table td {
    vertical-align: middle;
    padding: 1rem;
    white-space: nowrap;
}

.cart-table img {
    width: 80px;
    height: auto;
    object-fit: contain;
}

.qty-selector {
    display: inline-flex;
    align-items: center;
    border: 2px solid #e2e8f0;
    border-radius: 30px;
    overflow: hidden;
    min-width: 110px;
}

.qty-btn {
    background: transparent;
    border: none;
    padding: 0 12px;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-dark);
}

.qty-input {
    width: 40px;
    text-align: center;
    border: none;
    outline: none;
    font-weight: 700;
    color: var(--text-dark);
}

.remove-btn {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 1.4rem;
    cursor: pointer;
}

.order-summary-card {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(138, 46, 138, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    padding: 2rem;
}

.vat-relief-card {
    background: linear-gradient(145deg, rgba(138, 46, 138, 0.05), rgba(138, 46, 138, 0.01));
    border: 1px solid rgba(138, 46, 138, 0.15);
    border-left: 4px solid var(--primary-color);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(138, 46, 138, 0.03);
    transition: all 0.3s ease;
}

.vat-relief-card:hover {
    box-shadow: 0 8px 25px rgba(138, 46, 138, 0.08);
}

.vat-relief-text h6 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.vat-relief-text p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}


/* FROM checkout.html */

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Breadcrumb ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.breadcrumb-section {
    padding: 120px 0 35px;
    background: var(--secondary-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumb {
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

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

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

.page-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.checkout-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    position: relative;
}

.checkout-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 200px;
}

.checkout-step::before {
    content: '';
    position: absolute;
    top: 22px;
    left: -50%;
    width: 100%;
    height: 3px;
    background: #e2e8f0;
    z-index: 0;
}

.checkout-step:first-child::before {
    display: none;
}

.checkout-step.completed::before,
.checkout-step.active::before {
    background: var(--primary-color);
}

.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e2e8f0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    border: 3px solid transparent;
}

.checkout-step.active .step-circle {
    background: var(--primary-color);
    color: var(--white);
    border-color: rgba(138, 46, 138, 0.25);
    box-shadow: 0 4px 15px rgba(138, 46, 138, 0.35);
}

.checkout-step.completed .step-circle {
    background: var(--primary-color);
    color: var(--white);
}

.step-label {
    margin-top: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition);
}

.checkout-step.active .step-label,
.checkout-step.completed .step-label {
    color: var(--primary-color);
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Form Card ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.checkout-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(138, 46, 138, 0.08);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.checkout-card h4 {
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.35rem;
}

.checkout-card h4 i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Form Inputs ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.form-floating>.form-control,
.form-floating>.form-select,
.checkout-input {
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-floating>.form-control:focus,
.form-floating>.form-select:focus,
.checkout-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(138, 46, 138, 0.15);
}

.form-floating>label {
    padding: 12px 16px;
    color: var(--text-light);
}

.field-error {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 4px;
    display: none;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Payment Method Cards ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.payment-option {
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.payment-option:hover {
    border-color: rgba(138, 46, 138, 0.3);
    background: rgba(138, 46, 138, 0.02);
}

.payment-option.selected {
    border-color: var(--primary-color);
    background: rgba(138, 46, 138, 0.04);
    box-shadow: 0 4px 12px rgba(138, 46, 138, 0.1);
}

.payment-option .payment-icon {
    width: 50px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f8fafc;
    font-size: 1.4rem;
}

.payment-option .payment-icon.visa {
    color: #1a1f71;
}

.payment-option .payment-icon.mastercard {
    color: #eb001b;
}

.payment-option .payment-icon.paypal {
    color: #003087;
}

.payment-option .payment-icon.applepay {
    color: #000;
}

.payment-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.payment-sublabel {
    font-size: 0.8rem;
    color: var(--text-light);
}

.payment-radio {
    margin-left: auto;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Card Input Group ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.card-details-panel {
    display: none;
    padding: 1.5rem;
    background: rgba(138, 46, 138, 0.02);
    border-radius: 16px;
    margin-top: 12px;
    border: 1px solid rgba(138, 46, 138, 0.08);
    animation: fadeSlideDown 0.35s ease;
}

.card-details-panel.show {
    display: block;
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.card-icons-row {
    display: flex;
    gap: 8px;
    margin-bottom: 1rem;
}

.card-icons-row img,
.card-icons-row i {
    font-size: 1.8rem;
    opacity: 0.5;
}

.card-icons-row i.active-card {
    opacity: 1;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Order Summary Sidebar ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.order-summary-card {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(138, 46, 138, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    padding: 2rem;
    position: sticky;
    top: 100px;
}

.order-summary-card h5 {
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

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

.summary-item-img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-item-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.summary-item-info {
    flex: 1;
}

.summary-item-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.summary-item-qty {
    font-size: 0.75rem;
    color: var(--text-light);
}

.summary-item-price {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9rem;
    white-space: nowrap;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.summary-row.total {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    padding-top: 12px;
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
    padding: 12px;
    background: rgba(46, 204, 113, 0.08);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #27ae60;
}

.secure-badge i {
    font-size: 1rem;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Success Overlay ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.order-success-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.order-success-overlay.show {
    display: flex;
}

.order-success-box {
    background: var(--white);
    border-radius: 30px;
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 520px;
    width: 100%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

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

.success-checkmark {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.35);
}

.success-checkmark i {
    font-size: 2.5rem;
    color: #fff;
}

.order-success-box h2 {
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.order-success-box .order-number {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.order-success-box p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Responsive ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
@media (max-width: 768px) {
    .checkout-card {
        padding: 1.5rem;
    }

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

    .checkout-steps {
        gap: 0;
    }

    .step-label {
        font-size: 0.72rem;
    }

    .step-circle {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
}
