
        :root {
            --primary-color: #202033;
            --primary-light: #3a3b5c;
            --primary-dark: #151626;
            --accent-color: #4f46e5;
            --accent-light: #6366f1;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --danger-color: #ef4444;
            --text-dark: #1f2937;
            --text-muted: #6b7280;
            --border-light: #e5e7eb;
            --bg-light: #f9fafb;
            --bg-secondary: #f3f4f6;
            --white: #ffffff;
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--white);
            overflow-x:hidden;
        }
        
        

        /* Fixed Top Bar Styles */
        .top-bar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
            padding: 8px 0;
            font-size: 0.875rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }

        .top-bar-contact {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.9);
        }

        .top-bar-contact a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .top-bar-contact a:hover {
            color: white;
        }

        .top-bar-menu {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .top-bar-dropdown {
            position: relative;
        }

        .top-bar-dropdown > a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .top-bar-dropdown > a:hover {
            color: white;
            background: rgba(255, 255, 255, 0.1);
        }

        .top-bar-dropdown img {
            width: 20px;
            height: 15px;
            border-radius: 2px;
        }

        .dropdown-menu {
            background: white;
            border: none;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            padding: 8px 0;
            margin-top: 8px;
            min-width: 180px;
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 16px;
            color: var(--text-dark) !important;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .dropdown-item:hover {
            background: var(--bg-light) !important;
            color: var(--primary-color);
        }

        .dropdown-item img {
            width: 20px;
            height: 15px;
        }

        .top-bar-user {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .top-bar-user a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            padding: 6px 12px;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-weight: 500;
            white-space: nowrap;
        }

        .top-bar-user a:hover {
            color: white;
            background: rgba(255, 255, 255, 0.1);
        }

        /* Header Main Styles */
        .header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header-main {
            padding: 1rem 0;
        }

        .logo img {
            max-height: 45px;
            transition: transform 0.3s ease;
        }

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

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: var(--bg-light);
            border: none;
            border-radius: 8px;
            padding: 8px 12px;
            color: var(--primary-color);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle:hover {
            background: var(--primary-color);
            color: white;
        }

        /* Search Bar Styles */
        .search-container {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
        }

        .search-form {
            position: relative;
            display: flex;
            align-items: center;
        }

        .search-input {
            width: 100%;
            padding: 14px 22px 14px 50px;
            border: 2px solid transparent;
            border-radius: 50px;
            background: var(--bg-light);
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(32, 32, 51, 0.08);
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary-color);
            background: white;
            box-shadow: 0 8px 25px rgba(32, 32, 51, 0.15);
            transform: translateY(-1px);
        }

        .search-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 1.1rem;
            z-index: 10;
        }

        .search-button {
            position: absolute;
            right: 4px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-color);
            border: none;
            border-radius: 50px;
            padding: 10px 20px;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
            z-index: 5;
        }

        .search-button:hover {
            background: var(--primary-dark);
            transform: translateY(-50%) scale(1.05);
        }

        /* Cart and User Actions */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .cart-container {
            position: relative;
        }

        .cart-icon {
            background: var(--bg-light);
            border-radius: 50px;
            padding: 12px 16px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .cart-icon:hover {
            background: white;
            box-shadow: 0 8px 25px rgba(32, 32, 51, 0.15);
            transform: translateY(-2px);
            text-decoration: none;
        }

        .cart-icon i {
            color: var(--primary-color);
            font-size: 1.4rem;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--danger-color);
            color: white;
            border-radius: 50px;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: bold;
            min-width: 24px;
        }

        .checkout-btn {
            background: var(--primary-color);
            border: none;
            border-radius: 25px;
            padding: 10px 20px;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            white-space: nowrap;
        }

        .checkout-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            color: white;
            text-decoration: none;
        }

        /* Navigation Styles */
        .main-nav {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-top: 1px solid var(--border-light);
            padding: 12px 0;
            transition: all 0.3s ease;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-item > a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            padding: 10px 18px;
            border-radius: 25px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-item > a:hover {
            background: rgba(32, 32, 51, 0.08);
            color: var(--primary-color);
            text-decoration: none;
        }

        .app-downloads {
            margin-left: auto;
            display: flex;
            gap: 1rem;
        }

        .app-downloads img {
            height: 35px;
            transition: transform 0.3s ease;
        }

        .app-downloads a:hover img {
            transform: scale(1.05);
        }

        /* Mobile Navigation Styles */
        .mobile-nav {
            display: none;
            background: white;
            border-top: 1px solid var(--border-light);
            padding: 1rem 0;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            z-index: 999;
        }

        .mobile-nav.show {
            display: block;
        }

        .mobile-nav-menu {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .mobile-nav-item {
            border-bottom: 1px solid var(--border-light);
        }

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

        .mobile-nav-item > a {
            display: block;
            padding: 15px 20px;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .mobile-nav-item > a:hover {
            background: var(--bg-light);
            color: var(--primary-color);
            text-decoration: none;
        }

        .mobile-submenu {
            background: var(--bg-light);
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .mobile-submenu.show {
            max-height: 300px;
        }

        .mobile-submenu a {
            padding: 10px 40px;
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            display:block;
            text-decoration: none;
        }

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

        .mobile-nav-toggle {
            background: none;
            border: none;
            color: var(--text-muted);
            float: right;
            font-size: 1rem;
            margin-top: 2px;
        }

        .mobile-app-downloads {
            padding: 20px;
            text-align: center;
            border-top: 1px solid var(--border-light);
        }

        .mobile-app-downloads h6 {
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .mobile-app-downloads .app-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .mobile-app-downloads img {
            height: 30px;
        }

        /* Hero Banner - REDUCED SIZE */
        .hero-banner {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--accent-color) 100%);
            color: white;
            padding: 40px 0 60px;
            position: relative;
            overflow: hidden;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
            pointer-events: none;
        }

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

        .hero-banner h1 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-banner .lead {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-hero-primary {
            background: white;
            color: var(--primary-color);
            border: 2px solid white;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-hero-primary:hover {
            background: transparent;
            color: white;
            transform: translateY(-2px);
            text-decoration: none;
        }

        .btn-hero-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.5);
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-hero-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
            color: white;
            transform: translateY(-2px);
            text-decoration: none;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            max-height: 300px;
            object-fit: cover;
        }

		main {
			background: white;
			margin-top: -10px;
			border-radius: 30px 30px 0 0;
			position: relative;
			z-index: 1;
			padding-top: 30px;
		}

		/* Increase top padding for small screens */
		@media (max-width: 700px) {
			main {
				padding-top: 50px; /* or whatever value you want */
			}
		}

        /* Section Styles */
        .section {
            padding: 60px 0;
        }

        .section-alt {
            background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-secondary) 100%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Feature Cards */
        .feature-card {
            background: white;
            padding: 30px 25px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid var(--border-light);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(32, 32, 51, 0.15);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.8rem;
        }

        .feature-card h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 14px;
            color: var(--primary-color);
        }

        .feature-card p {
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* Product Grid */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .product-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid var(--border-light);
        }

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

        .product-image {
            width: 100%;
            height: 200px;
            background: var(--bg-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--text-muted);
        }

        .product-info {
            padding: 20px;
        }

        .product-title {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-dark);
        }

        .product-price {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 12px;
        }

        .view-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .view-btn:hover {
            background: var(--primary-dark);
            color: white;
            text-decoration: none;
            transform: translateY(-1px);
        }

        /* App Download Section */
        .app-download-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
            color: white;
            padding: 60px 0;
        }

        .app-download-section h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .app-download-section .lead {
            font-size: 1.15rem;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .app-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .app-buttons img {
            height: 30px;
            transition: transform 0.3s ease;
        }

        .app-buttons a:hover img {
            transform: scale(1.05);
        }

        /* Footer Styles */
        footer {
            background: var(--primary-color);
            color: white;
            padding: 50px 0 25px;
        }

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

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .footer-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-nav a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .footer-nav a:hover {
            color: white;
        }

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

        .social-btn {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .social-btn:hover {
            background: var(--accent-color);
            transform: translateY(-2px);
            color: white;
            text-decoration: none;
        }

        /* Payment Section */
        .payment-section {
            padding: 25px 20px;
            background: rgba(255, 255, 255, 0.05);
            margin: 15px 0;
            border-radius: 16px;
        }

        .payment-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .security-badges {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .security-badge {
            background: white;
            padding: 6px 10px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .security-badge img {
            height: 20px;
            width: auto;
        }

        .payment-methods {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }

        .payment-method {
            background: white;
            padding: 6px 10px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .payment-method:hover {
            transform: translateY(-2px);
        }

        .payment-method img {
            height: 18px;
            width: auto;
        }

        /* Bottom Footer */
        .footer-bottom {
            padding: 25px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: white;
        }

        .country-selector {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: white;
            padding: 8px 12px;
            font-size: 0.9rem;
        }

        .country-selector option {
            background: var(--primary-color);
            color: white;
        }

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

        /* Responsive Design */
        @media (max-width: 991px) {
            .main-nav {
                display: none !important;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .header {
                position: relative;
            }
            
            .mobile-nav {
                position: relative;
                top: 0;
            }
        }

        @media (max-width: 768px) {
            .top-bar-menu {
                gap: 0.5rem;
            }
            
            .top-bar-contact {
                font-size: 0.8rem;
            }
            
            .top-bar-user {
                gap: 0.25rem;
            }
            
            .top-bar-user a {
                padding: 4px 8px;
                font-size: 0.8rem;
            }
            
            .hero-banner h1 {
                font-size: 2rem;
            }

            .hero-banner .lead {
                font-size: 1rem;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }

            .search-input {
                padding: 12px 18px 12px 45px;
                font-size: 0.9rem;
            }

            .search-button {
                padding: 8px 16px;
                font-size: 0.9rem;
            }

            .header-actions {
                gap: 0.5rem;
            }
            
            .checkout-btn {
                padding: 8px 16px;
                font-size: 0.9rem;
            }
            
            .cart-icon {
                padding: 10px 12px;
            }
            
            .cart-icon i {
                font-size: 1.2rem;
            }

            .footer-links,
            .footer-bottom,
            .payment-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-nav {
                justify-content: center;
            }

            .security-badges,
            .payment-methods {
                justify-content: center;
            }

            .hero-banner {
                padding: 30px 0 50px;
            }

            .section {
                padding: 40px 0;
            }
        }

        @media (max-width: 576px) {
            .top-bar {
                padding: 6px 0;
                font-size: 0.8rem;
            }
            
            .top-bar .container {
                flex-direction: column;
                gap: 0.5rem;
            }
            
            .top-bar-contact {
                order: 2;
            }
            
            .top-bar-menu {
                order: 1;
            }
            
            .search-container {
                margin: 10px 0;
            }
            
            .header-main .row {
                gap: 10px;
            }
            
            .logo img {
                max-height: 35px;
            }
            
            .checkout-btn span {
                display: none;
            }
        }

        /* Loading Animation */
        .loading-placeholder {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
            border-radius: 12px;
            height: 200px;
        }

        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        /* Pulse animation for cart */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .pulse {
            animation: pulse 0.5s ease-in-out;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 4px;
        }

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

        /* Accessibility improvements */
        a:focus, button:focus {
            outline: 2px solid var(--accent-color);
            outline-offset: 2px;
        }
/* Modal styles for "View All" functionality */
.modal-fullscreen {
    --modal-padding: 1rem;
    --modal-header-height: 60px;
}

	/* Desktop styles - 90% screen coverage */
	.modal-fullscreen .modal-dialog {
		max-width: 90vw;
		width: 90vw;
		height: 90vh;
		margin: 5vh auto;
	}

	.modal-fullscreen .modal-content {
		height: 100%;
		border-radius: 0.5rem;
		box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
	}

	.modal-fullscreen .modal-header {
		min-height: var(--modal-header-height);
		flex-shrink: 0;
		border-bottom: 1px solid var(--bs-border-color);
	}

	.modal-fullscreen .modal-body {
		height: calc(100% - var(--modal-header-height));
		overflow-y: auto;
		overflow-x: hidden;
		scroll-behavior: smooth;
		padding: var(--modal-padding);
		/* Custom scrollbar for webkit browsers */
		scrollbar-width: thin;
		scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
	}

	.modal-fullscreen .modal-body::-webkit-scrollbar {
		width: 6px;
	}

	.modal-fullscreen .modal-body::-webkit-scrollbar-track {
		background: transparent;
	}

	.modal-fullscreen .modal-body::-webkit-scrollbar-thumb {
		background-color: rgba(0, 0, 0, 0.2);
		border-radius: 3px;
	}

	.modal-fullscreen .modal-body::-webkit-scrollbar-thumb:hover {
		background-color: rgba(0, 0, 0, 0.4);
	}

	/* Tablet styles */
	@media (max-width: 991px) and (min-width: 768px) {
		.modal-fullscreen .modal-dialog {
			max-width: 95vw;
			width: 95vw;
			height: 95vh;
			margin: 2.5vh auto;
		}
		
		.modal-fullscreen {
			--modal-padding: 0.75rem;
		}
	}

	/* Mobile styles - true fullscreen */
	@media (max-width: 767px) {
		.modal-fullscreen .modal-dialog {
			width: 100vw;
			height: 100vh;
			max-width: none;
			margin: 0;
			padding: 0;
		}
		
		.modal-fullscreen .modal-content {
			height: 100vh;
			border: 0;
			border-radius: 0;
		}
		
		.modal-fullscreen {
			--modal-padding: 0.5rem;
			--modal-header-height: 56px;
		}
		
		/* Hide modal backdrop blur on mobile for better performance */
		.modal-fullscreen ~ .modal-backdrop {
			background-color: #000;
		}
	}

	/* Very small screens */
	@media (max-width: 480px) {
		.modal-fullscreen {
			--modal-padding: 0.25rem;
			--modal-header-height: 52px;
		}
		
		.modal-fullscreen .modal-header {
			padding: 0.5rem;
		}
		
		.modal-fullscreen .modal-title {
			font-size: 1.1rem;
		}
	}

	/* Animation improvements */
	.modal-fullscreen.fade .modal-dialog {
		transition: transform 0.3s ease-out;
		transform: scale(0.9);
	}

	.modal-fullscreen.show .modal-dialog {
		transform: scale(1);
	}

	/* Focus management */
	.modal-fullscreen .btn-close:focus {
		box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
	}

	/* Loading state for modal content */
	.modal-fullscreen .modal-body.loading {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 200px;
	}

	.modal-fullscreen .modal-body.loading::before {
		content: '';
		width: 2rem;
		height: 2rem;
		border: 2px solid #f3f3f3;
		border-top: 2px solid #007bff;
		border-radius: 50%;
		animation: spin 1s linear infinite;
	}

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

	/* Prevent body scroll when modal is open */
	body.modal-open {
		overflow: hidden;
	}

	/* High contrast mode support */
	@media (prefers-contrast: high) {
		.modal-fullscreen .modal-content {
			border: 2px solid;
		}
		
		.modal-fullscreen .modal-header {
			border-bottom-width: 2px;
		}
	}

	/* Reduced motion support */
	@media (prefers-reduced-motion: reduce) {
		.modal-fullscreen .modal-body {
			scroll-behavior: auto;
		}
		
		.modal-fullscreen.fade .modal-dialog {
			transition: none;
		}
	}
        /* Animation for mobile menu */
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mobile-nav.show {
            animation: slideDown 0.3s ease-out;
        }
        
/* News Slider Section - Shoppi Homepage */
.news-section {
    padding: 60px 0;
    background: #f9fafb; /* var(--bg-light) */
}

.news-slider {
    position: relative;
    padding: 0 50px;
}

.news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin: 0 10px;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.news-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-date {
    font-size: 0.875rem;
    color: #6b7280; /* var(--text-muted) */
    margin-bottom: 8px;
}

.news-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937; /* var(--text-dark) */
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 0.95rem;
    color: #6b7280; /* var(--text-muted) */
    line-height: 1.5;
    margin-bottom: 15px;
}

.read-more-link {
    color: #4f46e5; /* var(--accent-color) */
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #6366f1; /* var(--accent-light) */
    text-decoration: underline;
}

/* Responsive adjustments for news section */
@media (max-width: 992px) {
    .news-slider {
        padding: 0 30px;
    }
    
    .news-card {
        margin: 0 8px;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 40px 0;
    }
    
    .news-slider {
        padding: 0 20px;
    }
    
    .news-image {
        height: 160px;
    }
    
    .news-content {
        padding: 15px;
    }
    
    .news-title {
        font-size: 1rem;
    }
    
    .news-excerpt {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .news-slider {
        padding: 0 10px;
    }
    
    .news-card {
        margin: 0 5px;
    }
    
    .news-image {
        height: 140px;
    }
    
    .news-content {
        padding: 12px;
    }
    
    .news-date {
        font-size: 0.8rem;
    }
    
    .news-title {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .news-excerpt {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .read-more-link {
        font-size: 0.85rem;
    }
}

/* Slick carousel overrides for news slider */
#news-slider.slick-slider {
    margin-bottom: 0;
}

#news-slider .slick-prev,
#news-slider .slick-next {
    width: 40px;
    height: 40px;
    background: rgba(32, 32, 51, 0.8); /* var(--primary-color) with opacity */
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
}

#news-slider .slick-prev:hover,
#news-slider .slick-next:hover {
    background: #202033; /* var(--primary-color) */
    transform: translate(0, -50%) scale(1.1);
}

#news-slider .slick-prev {
    left: 0;
}

#news-slider .slick-next {
    right: 0;
}

#news-slider .slick-prev:before,
#news-slider .slick-next:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 16px;
    color: white;
}

#news-slider .slick-prev:before {
    content: '\f104'; /* fa-chevron-left */
}

#news-slider .slick-next:before {
    content: '\f105'; /* fa-chevron-right */
}

#news-slider .slick-dots {
    bottom: -35px;
}

#news-slider .slick-dots li button:before {
    color: #202033; /* var(--primary-color) */
    font-size: 10px;
}

#news-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #4f46e5; /* var(--accent-color) */
}

/* Loading state for news */
.news-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.news-loading i {
    font-size: 2rem;
    color: #6b7280; /* var(--text-muted) */
}

/* Empty state for news */
.news-empty {
    text-align: center;
    padding: 40px;
    color: #6b7280; /* var(--text-muted) */
}

/* News placeholder image */
.news-image[src*="news-placeholder"] {
    background: #f3f4f6; /* var(--bg-secondary) */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.news-image[src*="news-placeholder"]:before {
    content: '\f1ea'; /* fa-newspaper */
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
    font-size: 3rem;
    color: #e5e7eb; /* var(--border-light) */
    position: absolute;
}


/* Modal Overlay */
.shoppi-modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	z-index: 10000;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.shoppi-modal-overlay.active {
	display: flex;
	opacity: 1;
}

.shoppi-modal-container {
	position: relative;
	width: 100%;
	height: 100%;
	max-width: 400px;
	margin: 0 auto;
	background: #000;
	overflow: hidden;
}

.shoppi-close-btn {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.shoppi-close-btn:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: scale(1.1);
}

.shoppi-video-container {
	position: relative;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	scroll-snap-type: y mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
	scroll-behavior: smooth;
}

.shoppi-video-container::-webkit-scrollbar {
	display: none;
}

.shoppi-video-item {
	position: relative;
	width: 100%;
	height: 100vh;
	scroll-snap-align: start;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000;
	cursor: pointer;
	overflow: hidden;
}

.shoppi-video-item:nth-child(even) {
	background: linear-gradient(45deg, #f093fb, #f5576c);
}

.shoppi-video-item:nth-child(3n) {
	background: linear-gradient(45deg, #4facfe, #00f2fe);
}

.shoppi-video-item:nth-child(4n) {
	background: linear-gradient(45deg, #43e97b, #38f9d7);
}

.shoppi-video-item:nth-child(5n) {
	background: linear-gradient(45deg, #fa709a, #fee140);
}

.shoppi-video-background {
	width: 100%;
	height: 100%;
	position: relative;
	transition: transform 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.shoppi-video-item:hover .shoppi-video-background {
	transform: scale(1.05);
}

.shoppi-video-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	color: white;
	padding: 20px;
	z-index: 5;
}

.shoppi-video-info h3 {
	font-size: 16px;
	margin-bottom: 8px;
	font-weight: 600;
}

.shoppi-video-info p {
	font-size: 14px;
	opacity: 0.9;
	line-height: 1.4;
}

.shoppi-video-controls {
	position: absolute;
	right: 20px;
	bottom: 100px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	z-index: 5;
}

.shoppi-control-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	font-size: 20px;
}

.shoppi-control-btn:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: scale(1.1);
}

.shoppi-profile-btn {
	position: relative;
	overflow: hidden;
	border: 2px solid rgba(255,255,255,0.8);
	font-size: 16px;
}

.shoppi-play-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	z-index: 3;
	opacity: 1;
}

.shoppi-play-overlay:hover {
	background: rgba(0, 0, 0, 0.7);
	transform: translate(-50%, -50%) scale(1.1);
}

.shoppi-play-button {
	font-size: 28px;
	animation: pulse 2s infinite;
	color: white;
	line-height: 1;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.1); opacity: 0.8; }
}

.shoppi-loading-more {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	color: white;
	font-size: 18px;
	flex-direction: column;
	scroll-snap-align: start;
	background: linear-gradient(45deg, #2c3e50, #34495e);
}

.shoppi-loading-more .shoppi-spinner {
	margin-bottom: 20px;
	width: 40px;
	height: 40px;
	border: 4px solid #333;
	border-top: 4px solid #fff;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

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

.shoppi-video-content {
	text-align: center;
	color: white;
	font-size: 24px;
	font-weight: bold;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
	transition: opacity 0.3s ease;
}

.shoppi-video-iframe-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.shoppi-video-player {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: none;
}

.shoppi-mock-video {
	transition: all 0.3s ease;
}

/* Playing state styles */
.shoppi-video-item.playing .shoppi-play-overlay {
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.shoppi-video-item.playing .shoppi-video-content {
	opacity: 0;
	transition: opacity 0.3s ease;
}

.shoppi-video-item.playing .shoppi-video-background {
	transform: scale(1.02);
}

.shoppi-video-item.playing::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 2px solid rgba(255, 255, 255, 0.3);
	pointer-events: none;
	z-index: 1;
}

.shoppi-play-overlay {
	transition: opacity 0.3s ease;
}

.shoppi-video-content {
	transition: opacity 0.3s ease;
}

@media (max-width: 480px) {
	.shoppi-modal-container {
		max-width: 100%;
	}
	
	.shoppi-video-overlay {
		padding: 15px;
	}
	
	.shoppi-video-controls {
		right: 15px;
		bottom: 80px;
	}
}
