 

                 :root {
            --primary: #0e5881;
            --primary-dark: #0a4a6a;
            --secondary: #f9c422;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --white: #ffffff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --radius: 12px;
            --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
            --easing: cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Top Bar */
        .top-bar {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 10px 0;
            font-size: 14px;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-info {
            display: flex;
            gap: 20px;
        }

        .contact-info span {
            display: flex;
            align-items: center;
        }

        .contact-info i {
            margin-right: 8px;
            color: var(--secondary);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            color: var(--white);
            font-size: 16px;
            transition: var(--transition);
        }

        .social-links a:hover {
            color: var(--secondary);
            transform: translateY(-2px);
        }

        /* Header */
        header {
            background-color: var(--white);
            padding: 18px 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img {
            height: 40px;
        }

        .logo h1 {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            margin: 0;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding: 5px 0;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }

        nav ul li a:hover {
            color: var(--primary);
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        /* Header Actions */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
            justify-content: flex-end;
        }

        /* User Dropdown */
        .user-dropdown {
            position: relative;
        }

        .user-button {
            display: flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: 1.5px solid rgba(14, 88, 129, 0.2);
            padding: 10px 18px;
            border-radius: 25px;
            color: var(--primary);
            font-weight: 500;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
        }

        .user-button:hover {
            background: rgba(14, 88, 129, 0.08);
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(14, 88, 129, 0.15);
        }

        .user-button:active {
            transform: translateY(0);
        }

        .user-button i:first-child {
            font-size: 16px;
            transition: transform 0.3s ease;
        }

        .user-button:hover i:first-child {
            transform: scale(1.1);
        }

        .user-button i:last-child {
            font-size: 11px;
            transition: transform 0.3s ease;
        }

        .user-dropdown:hover .user-button i:last-child {
            transform: rotate(180deg);
        }

        .dropdown-content {
            position: absolute;
            top: calc(100% + 12px);
            right: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px) scale(0.95);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .user-dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .dropdown-content a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 20px;
            color: var(--dark);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.25s ease;
            border-bottom: 1px solid #f0f0f0;
            position: relative;
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }

        .dropdown-content a i {
            width: 18px;
            color: var(--primary);
            font-size: 16px;
            transition: transform 0.3s ease;
        }

        .dropdown-content a:hover {
            background: linear-gradient(90deg, rgba(14, 88, 129, 0.08) 0%, rgba(14, 88, 129, 0.05) 100%);
            color: var(--primary);
            padding-left: 24px;
        }

        .dropdown-content a:hover i {
            transform: scale(1.15);
        }

        /* Cart Icon */
        .cart-icon {
            position: relative;
            font-size: 2px;
            color: var(--primary);
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .cart-icon:hover {
            background: rgba(14, 88, 129, 0.06);
            transform: scale(0.98);
            color: var(--primary-dark);
        }

        .cart-icon:active {
            transform: scale(0.98);
        }

        .cart-count {
            position: absolute;
            top: 2px;
            right: 5px;
            background: linear-gradient(135deg, var(--secondary) 0%, #ffd54f 100%);
            color: var(--dark);
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            border: 2px solid white;
            box-shadow: 0 2px 8px rgba(249, 196, 34, 0.25);
            transition: all 0.18s ease;
            /* subtler pulse */
            animation: pulse 4s infinite;
        }

        .cart-icon:hover .cart-count {
            transform: scale(1.08);
            box-shadow: 0 3px 10px rgba(249, 196, 34, 0.35);
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.03);
            }
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 500px;
            overflow: hidden;
            margin-bottom: 40px;
        }

        .hero-slider {
            display: flex;
            height: 100%;
            transition: transform 0.8s var(--easing);
        }

        .hero-slide {
            min-width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            padding: 0 50px;
            color: var(--white);
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
        }

        .hero-content h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 18px;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .hero-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 3;
        }

        .hero-nav button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: none;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }

        .hero-nav button.active {
            background-color: var(--secondary);
            width: 30px;
            border-radius: 15px;
        }

        /* Main Content Layout */
        .main-content {
            display: flex;
            gap: 20px;
            padding: 0 0 50px;
        }

        /* Sidebar Filters */
        .sidebar {
            width: 240px;
            flex: 0 0 240px;
            max-width: 240px;
            background-color: var(--white);
            padding: 18px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            /* Make sidebar scrollable when content is tall while keeping it sticky */
            max-height: calc(100vh - 140px); /* allow for top bars/spacing */
            overflow: auto;
            -webkit-overflow-scrolling: touch;
            position: sticky;
            top: 90px;
        }

        .filter-group {
            margin-bottom: 16px;
            transition: transform 0.25s var(--easing), box-shadow 0.25s var(--easing);
        }

        .filter-group h3 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark);
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            padding: 10px 12px;
            border-radius: 10px;
            transition: background 0.25s var(--easing), transform 0.18s var(--easing);
        }

        .filter-group h3:hover {
            background: linear-gradient(90deg, rgba(14,88,129,0.06), rgba(14,88,129,0.03));
            transform: translateY(-2px);
        }

        .filter-group h3 i {
            font-size: 14px;
            transition: transform 0.28s var(--easing), color 0.18s var(--easing);
            color: var(--primary);
        }

        .filter-group h3.collapsed i {
            transform: rotate(-90deg);
        }

        /* Smooth accordion using max-height + opacity */
        .filter-options {
            overflow: hidden;
            transition: max-height 0.35s var(--easing), opacity 0.25s ease;
            max-height: 1000px; /* large enough for content when open */
            opacity: 1;
        }

        .filter-options.collapsed {
            max-height: 0;
            opacity: 0;
        }

        .filter-options label {
            display: flex;
            align-items: center;
            margin-bottom: 6px;
            cursor: pointer;
            font-size: 13px;
            color: var(--gray);
            padding: 6px 8px;
            border-radius: 8px;
            transition: background 0.18s var(--easing), transform 0.14s var(--easing), color 0.18s var(--easing);
        }

        .filter-options label:hover {
            background: rgba(14, 88, 129, 0.06);
            transform: translateX(4px);
            color: var(--primary);
        }

        /* Custom scrollbar for desktop browsers */
        .sidebar::-webkit-scrollbar {
            width: 8px;
        }

        .sidebar::-webkit-scrollbar-track {
            background: transparent;
        }

        .sidebar::-webkit-scrollbar-thumb {
            background: rgba(16, 24, 32, 0.08);
            border-radius: 8px;
            border: 2px solid transparent;
            background-clip: padding-box;
        }

        .sidebar:hover::-webkit-scrollbar-thumb {
            background: rgba(16, 24, 32, 0.12);
        }

        /* Subtle focus for controls inside the sidebar */
        .filter-options input:focus + label,
        .filter-options label:focus {
            outline: 2px solid rgba(14,88,129,0.08);
            transform: translateX(4px);
        }

        .filter-options label {
            display: block;
            margin-bottom: 10px;
            cursor: pointer;
            font-size: 13px;
            color: var(--gray);
        }

        .filter-options input[type="checkbox"] {
            margin-right: 10px;
            accent-color: var(--primary);
        }

        .price-range {
            margin-top: 15px;
        }

        .price-range input {
            width: 100%;
        }

        .price-values {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
            font-size: 14px;
            color: var(--gray);
        }

        .filter-button {
            width: 100%;
            padding: 12px;
            background-color: var(--primary);
            color: var(--white);
            border: none;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 10px;
        }

        .filter-button:hover {
            background-color: var(--primary-dark);
            transform: translateY(-1px);
        }

        /* Adverts in sidebar */
        .ad-list { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
        .ad-item img { width: 100%; border-radius: 8px; box-shadow: 0 6px 18px rgba(16,24,40,0.06); display:block; }
        .ad-item a { display:block; overflow:hidden; }

        /* Products Section */
        .products {
            flex: 1;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .section-title h2 {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary);
        }

        .section-title p {
            color: var(--gray);
            font-size: 16px;
        }

        /* Sort By Select - Animated */
        .sort-by {
            padding: 12px 40px 12px 16px;
            border: 2px solid rgba(14, 88, 129, 0.2);
            border-radius: 10px;
            background-color: var(--white);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            color: var(--primary);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230e5881' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 12px;
            outline: none;
            position: relative;
            min-width: 180px;
        }

        .sort-by:hover {
            border-color: var(--primary);
            background-color: rgba(14, 88, 129, 0.05);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(14, 88, 129, 0.15);
        }

        .sort-by:focus {
            border-color: var(--primary);
            background-color: rgba(14, 88, 129, 0.08);
            box-shadow: 0 0 0 3px rgba(14, 88, 129, 0.1);
            transform: translateY(-2px);
        }

        .sort-by:active {
            transform: translateY(0);
        }

        .sort-by option {
            padding: 10px;
            background-color: var(--white);
            color: var(--dark);
            font-weight: 500;
        }

        .sort-by option:hover {
            background-color: rgba(14, 88, 129, 0.1);
        }

        .sort-by option:checked {
            background-color: var(--primary);
            color: var(--white);
        }

        /* Animation for select change */
        @keyframes selectPulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.02);
            }
            100% {
                transform: scale(1);
            }
        }

        .sort-by.changed {
            animation: selectPulse 0.4s ease;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .product-card {
            background-color: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
        }

        .product-image {
            height: 250px;
            overflow: hidden;
            position: relative;
            background-color: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 6px;
        }

        .product-image img {
            /* show the whole image without cropping */
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            transition: var(--transition);
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--secondary);
            color: var(--dark);
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .product-info {
            padding: 20px;
        }

        .product-info h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--dark);
            display: -webkit-box;
            -webkit-line-clamp: 1;
            line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .product-info .price {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .product-info .description {
            font-size: 14px;
            color: var(--gray);
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            height: 40px;
        }

        .rating {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .stars {
            color: #ffc107;
            margin-right: 8px;
            position: relative;
            display: inline-block;
        }

        .stars::before {
            content: '★★★★★';
            color: #ddd;
        }

        .stars .filled {
            color: #ffc107;
            position: absolute;
            top: 0;
            left: 0;
            overflow: hidden;
            white-space: nowrap;
        }

        .rating-value {
            font-size: 14px;
            color: var(--gray);
        }

        .product-actions {
            display: flex;
            gap: 10px;
        }

        .add-to-cart,
.view-product {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    /* Enforce equal width and height */
    width: 100%;
    min-height: 44px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-to-cart {
    background-color: var(--primary);
    color: var(--white);
}

.add-to-cart:hover {
    background-color: var(--primary-dark);
}

        .view-product {
            background-color: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }

        .view-product:hover {
            background-color: var(--primary);
            color: var(--white);
        }




        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 40px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--white);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: var(--gray);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-section ul li a:hover {
            color: var(--secondary);
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .footer-social a {
            color: var(--white);
            font-size: 20px;
            transition: var(--transition);
        }

        .footer-social a:hover {
            color: var(--secondary);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray);
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .main-content {
                flex-direction: column;
            }

            .sidebar {
                width: 100%;
                position: static;
                margin-bottom: 30px;
            }

            .hero-content h1 {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .hero {
                height: 400px;
            }

            .hero-content h1 {
                font-size: 30px;
            }

            .hero-content p {
                font-size: 16px;
            }

            nav ul {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .product-grid {
                grid-template-columns: 1fr;
            }

            .hero-content h1 {
                font-size: 24px;
            }
        }












       /* Banner slider styles */
.main-banner {
    margin: 0;
    position: relative;
    overflow: hidden;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 40px;
    height: 500px;
}

.bannerSwiper {
    width: 100%;
    height: 100%;
}

.bannerSwiper .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.bannerSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Banner Overlay – Centered & Premium */
.banner-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 40px 48px;
    border-radius: 24px;
    background: linear-gradient(
        135deg,
        rgba(14, 88, 129, 0.65),
        rgba(0, 0, 0, 0.55)
    );
    backdrop-filter: blur(6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    animation: bannerFadeUp 0.9s ease both;
}

@keyframes bannerFadeUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.banner-overlay h2 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.banner-overlay p {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 26px;
}

.banner-btn {
    background: linear-gradient(135deg, var(--secondary), #ffd54f);
    color: #222;
    padding: 16px 36px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

.banner-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}


/* Swiper Pagination – Centered Bubble Style */
.swiper-pagination {
    position: absolute;
    bottom: 28px !important;
    left: 50% !important;
    transform: translateX(-50%);
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto !important;
    z-index: 20;
}

/* Default bubble */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
    transition: all 0.35s ease;
    cursor: pointer;
}

/* Active bubble */
.swiper-pagination-bullet-active {
    width: 36px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(
        135deg,
        var(--secondary),
        #ffd54f
    );
    box-shadow: 0 0 0 4px rgba(249, 196, 34, 0.25);
}

/* Hover micro-interaction */
.swiper-pagination-bullet:hover {
    transform: scale(1.3);
    background: rgba(255, 255, 255, 0.85);
}


/* =========================================
   Beautiful Borderless Floating Swiper Arrows
   ========================================= */

/* =========================================
   Premium Custom Swiper Navigation Arrows
   ========================================= */
.bannerSwiper .swiper-button-next,
.bannerSwiper .swiper-button-prev {
    --arrow-size: 50px;
    --arrow-bg: rgba(14, 88, 129, 0.9);
    --arrow-bg-hover: #0e5881;
    --arrow-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    --arrow-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.3);
    --arrow-icon-color: #ffffff;
    --arrow-icon-size: 20px;

    width: var(--arrow-size) !important;
    height: var(--arrow-size) !important;
    border-radius: 50% !important;
    background: var(--arrow-bg) !important;
    color: var(--arrow-icon-color) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: var(--arrow-shadow) !important;
    border: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 10 !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Custom arrow icons with gradient effect */
.bannerSwiper .swiper-button-next::after,
.bannerSwiper .swiper-button-prev::after {
    content: '' !important;
    display: none !important;
}

/* Custom SVG arrows with gradient */
.bannerSwiper .swiper-button-next {
    background: linear-gradient(135deg, #0e5881, #1a73a8) !important;
}

.bannerSwiper .swiper-button-prev {
    background: linear-gradient(135deg, #0e5881, #1a73a8) !important;
}

/* Add custom SVG arrows */
.bannerSwiper .swiper-button-next::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9 18L15 12L9 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    font-size: var(--arrow-icon-size) !important;
    transition: transform 0.3s ease !important;
}

.bannerSwiper .swiper-button-prev::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M15 18L9 12L15 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    font-size: var(--arrow-icon-size) !important;
    transition: transform 0.3s ease !important;
}

/* Hover effects */
.bannerSwiper .swiper-button-next:hover,
.bannerSwiper .swiper-button-prev:hover {
    background: var(--arrow-bg-hover) !important;
    transform: scale(1.1) !important;
    box-shadow: var(--arrow-shadow-hover) !important;
}

.bannerSwiper .swiper-button-next:hover::before {
    transform: translateX(2px) !important;
}

.bannerSwiper .swiper-button-prev:hover::before {
    transform: translateX(-2px) !important;
}

/* Active/click effects */
.bannerSwiper .swiper-button-next:active,
.bannerSwiper .swiper-button-prev:active {
    transform: scale(0.95) !important;
}

/* Positioning */
.bannerSwiper .swiper-button-next {
    right: 30px !important;
}

.bannerSwiper .swiper-button-prev {
    left: 30px !important;
}

/* Mobile refinement */
@media (max-width: 768px) {
    .bannerSwiper .swiper-button-next,
    .bannerSwiper .swiper-button-prev {
        --arrow-size: 40px;
        --arrow-icon-size: 18px;
    }

    .bannerSwiper .swiper-button-next {
        right: 15px !important;
    }

    .bannerSwiper .swiper-button-prev {
        left: 15px !important;
    }
}

/* Animation for arrows on page load */
@keyframes slideInFromLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInFromRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.bannerSwiper .swiper-button-prev {
    animation: slideInFromLeft 0.6s ease-out forwards;
}

.bannerSwiper .swiper-button-next {
    animation: slideInFromRight 0.6s ease-out forwards;
}

/* Delay animations to appear after content */
.bannerSwiper .swiper-button-prev {
    animation-delay: 0.4s;
}

.bannerSwiper .swiper-button-next {
    animation-delay: 0.5s;
}





/* Responsive adjustments */
@media (max-width: 1024px) {
    .main-banner {
        height: 400px;
    }
    .banner-overlay {
        left: 5%;
    }
    .banner-overlay h2 {
        font-size: 36px;
    }
    .banner-overlay p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .main-banner {
        height: 300px;
    }
    .banner-overlay {
        left: 4%;
        max-width: 90%;
    }
    .banner-overlay h2 {
        font-size: 28px;
    }
    .banner-overlay p {
        font-size: 14px;
    }
    .swiper-button-next,
    .swiper-button-prev {
        --arrow-size: 40px;
    }
}

 
    /* Page flash overlay (brief background tint for success) */
    .page-flash-overlay { position: fixed; inset: 0; background: rgba(40,167,69,0.06); pointer-events: none; opacity: 0; transition: opacity 0.25s ease; z-index: 3000; }
    .page-flash-overlay.show { opacity: 1; animation: flashBg 1.1s ease; }
    @keyframes flashBg { 0% { opacity: 0; } 10% { opacity: 1; } 100% { opacity: 0; } }
    








   /* Swiper Pagination (Bubbles) */
.swiper-pagination {
    position: absolute;
    bottom: 20px !important;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    width: auto !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    background-color: var(--secondary) !important;
    width: 32px !important;
    border-radius: 16px !important;
    border: none !important;
    box-shadow: 0 0 0 2px rgba(249, 196, 34, 0.3);
}

/* Hover effect for pagination bullets */
.swiper-pagination-bullet:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}








/* Swiper Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
    --arrow-size: 40px;
    width: var(--arrow-size);
    height: var(--arrow-size);
    border-radius: 50%;
    background-color: rgba(14, 88, 129, 0.8);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Positioning for arrows */
.swiper-button-next {
    right: 20px;
}

.swiper-button-prev {
    left: 20px;
}

/* Responsive adjustments for arrows */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        --arrow-size: 32px;
        font-size: 14px;
    }
}

 





.price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.credit-price {
    background: rgba(249, 196, 34, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(249, 196, 34, 0.3);
}

.credit-price i {
    font-size: 12px;
}