        /* Preloader Styles */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 99999;
            overflow: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .preloader-content {
            text-align: center;
            animation: pulse 2s infinite ease-in-out;
        }

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

        .preloader-logo {
            width: 120px;
            height: 120px;
            animation: rotate 2.5s linear infinite;
            filter: drop-shadow(0 0 12px rgba(230, 0, 0, 0.6));
        }

        .preloader-logo-wrapper::after {
            content: "";
            position: absolute;
            width: 160px;
            height: 160px;
            border: 3px solid rgba(230, 0, 0, 0.3);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: ringPulse 2.5s infinite ease-in-out;
        }

        .preloader-text {
            margin-top: 24px;
            font-family: "Poppins", sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: #e60000;
            letter-spacing: 0.5px;
        }

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

            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        @keyframes ringPulse {
            0% {
                transform: translate(-50%, -50%) scale(0.9);
                opacity: 0.8;
            }

            100% {
                transform: translate(-50%, -50%) scale(1.2);
                opacity: 0;
            }
        }

        #preloader.fade-out {
            opacity: 0;
            visibility: hidden;
        }

        @media (max-width: 768px) {
            .preloader-logo {
                width: 90px;
                height: 90px;
            }

            .preloader-logo-wrapper::after {
                width: 120px;
                height: 120px;
            }

            .preloader-text {
                font-size: 16px;
                margin-top: 18px;
            }
        }

        @media (max-width: 576px) {
            .preloader-logo {
                width: 70px;
                height: 70px;
            }

            .preloader-logo-wrapper::after {
                width: 100px;
                height: 100px;
            }

            .preloader-text {
                font-size: 14px;
                margin-top: 16px;
            }
        }

        :root {
            --chibo-red: #FF0000;
            --chibo-black: #000000;
            --chibo-white: #FFFFFF;
            --chibo-gray: #6c757d;
            --chibo-light-gray: #f8f9fa;
        }

        * {
            font-family: 'Inter', sans-serif;
        }

        body {
            line-height: 1.6;
            color: var(--chibo-black);
        }

        /* Reduced horizontal gaps for a wider layout */
        .container {
            max-width: 100% !important;
            padding-left: 20px !important;
            padding-right: 20px !important;
        }

        @media (min-width: 576px) {
            .container {
                max-width: 540px !important;
                padding-left: 15px !important;
                padding-right: 15px !important;
            }
        }

        @media (min-width: 768px) {
            .container {
                max-width: 720px !important;
            }
        }

        @media (min-width: 992px) {
            .container {
                max-width: 960px !important;
            }
        }

        @media (min-width: 1200px) {
            .container {
                max-width: 1140px !important;
                padding-left: 20px !important;
                padding-right: 20px !important;
            }
        }

        @media (min-width: 1400px) {
            .container {
                max-width: 1320px !important;
            }
        }

        @media (min-width: 1600px) {
            .container {
                max-width: 1520px !important;
            }
        }

        @media (min-width: 1800px) {
            .container {
                max-width: 1720px !important;
            }
        }

        /* Extreme mobile optimization */
        @media (max-width: 480px) {
            .container {
                padding-left: 8px !important;
                padding-right: 8px !important;
            }
        }

        .navbar-brand {
            display: inline-block;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
        }

        .navbar-brand img {
            transition: all 0.3s ease;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }

        .navbar-brand:hover img {
            transform: scale(1.05);
            filter: drop-shadow(0 4px 8px rgba(255, 0, 0, 0.3));
        }

        /* Mobile navbar optimizations */
        @media (max-width: 991.98px) {
            .navbar-brand img {
                height: 40px !important;
                max-width: 120px;
            }

            .navbar>.container {
                padding-left: 1rem;
                padding-right: 1rem;
            }

            .navbar-toggler {
                padding: 0.5rem;
                font-size: 1.1rem;
                border: none;
                background: none;
            }

            .navbar-toggler:focus {
                box-shadow: none;
            }

            .nav-link {
                padding: 0.5rem 0.75rem;
                font-size: 0.9rem;
            }
        }

        /* Footer Styling */
        .footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
            padding: 3rem 0 1.5rem;
            border-top: 3px solid var(--chibo-red);
        }

        .footer-logo {
            display: inline-block;
        }

        .footer-logo a {
            display: inline-block;
            transition: all 0.3s ease;
        }

        .footer-logo img {
            transition: all 0.3s ease;
            filter: drop-shadow(0 4px 10px rgba(255, 0, 0, 0.3));
        }

        .footer-logo a:hover img {
            transform: scale(1.05);
            filter: drop-shadow(0 6px 15px rgba(255, 0, 0, 0.5));
        }

        .social-icon {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            background: var(--chibo-red);
            color: white;
            transform: translateY(-3px);
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--chibo-red);
            padding-left: 5px;
        }

        .footer-links i {
            font-size: 0.7rem;
            color: var(--chibo-red);
        }

        /* Contact Card Design */
        .contact-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 1.5rem;
            border: 1px solid rgba(255, 0, 0, 0.2);
            backdrop-filter: blur(10px);
        }

        .contact-items {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.75rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
            border: 1px solid transparent;
        }

        .contact-item:hover {
            background: rgba(255, 0, 0, 0.1);
            border-color: rgba(255, 0, 0, 0.3);
            transform: translateX(5px);
        }

        .contact-icon {
            width: 45px;
            height: 45px;
            min-width: 45px;
            background: linear-gradient(135deg, var(--chibo-red) 0%, #cc0000 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
        }

        .contact-text {
            flex: 1;
        }

        .contact-text small {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .contact-text span {
            font-size: 0.95rem;
            font-weight: 500;
        }

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

        .footer-link:hover {
            color: var(--chibo-red) !important;
            text-decoration: underline;
        }

        /* Footer mobile optimization */
        @media (max-width: 767.98px) {
            .footer {
                padding: 2.5rem 0 1.5rem;
            }

            .footer-logo img {
                max-width: 150px !important;
            }

            .contact-card {
                margin-top: 1rem;
            }

            .contact-icon {
                width: 40px;
                height: 40px;
                min-width: 40px;
                font-size: 1rem;
            }

            .contact-text span {
                font-size: 0.9rem;
            }

            .social-icon {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }
        }

        .btn-primary {
            background-color: var(--chibo-red);
            border-color: var(--chibo-red);
        }

        .btn-primary:hover {
            background-color: #cc0000;
            border-color: #cc0000;
        }

        .btn-outline-primary {
            color: var(--chibo-red);
            border-color: var(--chibo-red);
        }

        .btn-outline-primary:hover {
            background-color: var(--chibo-red);
            border-color: var(--chibo-red);
        }

        /* Cart Drawer Styles */
        .cart-drawer {
            position: fixed;
            top: 0;
            right: -400px;
            width: 400px;
            height: 100vh;
            background: white;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
            z-index: 1050;
            transition: right 0.3s ease;
        }

        .cart-drawer.open {
            right: 0;
        }

        .cart-drawer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1049;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .cart-drawer.open .cart-drawer-overlay {
            opacity: 1;
            visibility: visible;
        }

        .cart-drawer-content {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .cart-drawer-header {
            padding: 1rem;
            border-bottom: 1px solid #dee2e6;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cart-drawer-body {
            flex: 1;
            overflow-y: auto;
            padding: 1rem;
        }

        .cart-drawer-footer {
            padding: 1rem;
            border-top: 1px solid #dee2e6;
            background: #f8f9fa;
        }

        .cart-item {
            display: flex;
            align-items: center;
            padding: 0.75rem 0;
            border-bottom: 1px solid #eee;
        }

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

        .cart-item-image {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 0.375rem;
            margin-right: 0.75rem;
        }

        .cart-item-details {
            flex: 1;
        }

        .cart-item-name {
            font-weight: 500;
            margin-bottom: 0.25rem;
        }

        .cart-item-variants {
            font-size: 0.875rem;
            color: #6c757d;
            margin-bottom: 0.25rem;
        }

        .cart-item-price {
            font-weight: 600;
            color: #28a745;
        }

        .cart-item-remove {
            background: none;
            border: none;
            color: #dc3545;
            cursor: pointer;
            padding: 0.25rem;
        }

        @media (max-width: 768px) {
            .cart-drawer {
                width: 100vw;
                right: -100vw;
            }
        }

        .text-primary {
            color: var(--chibo-red) !important;
        }

        .bg-primary {
            background-color: var(--chibo-red) !important;
        }

        .navbar {
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.95);
            position: -webkit-sticky;
            /* Safari */
            position: sticky;
            top: 0;
            z-index: 1030;
        }

        /* iOS Safari specific fixes */
        @supports (-webkit-touch-callout: none) {
            .navbar {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                width: 100%;
                z-index: 1030;
            }

            body {
                padding-top: 70px;
                /* Adjust based on navbar height */
            }

            .main-content {
                margin-top: 0;
            }
        }

        /* iOS viewport height fix */
        @media screen and (max-width: 768px) {
            .min-vh-100 {
                min-height: -webkit-fill-available;
            }
        }

        /* Navbar performance optimizations */
        .navbar-brand,
        .nav-link,
        .dropdown-toggle {
            will-change: transform;
        }

        .navbar-brand:hover img {
            transform: scale(1.05);
            filter: drop-shadow(0 4px 8px rgba(255, 0, 0, 0.3));
        }

        .nav-link {
            transition: color 0.2s ease, background-color 0.2s ease;
        }

        .nav-link:hover {
            color: var(--chibo-red);
        }

        /* Cart icon styling */
        .nav-link[onclick*="openCartModal"] {
            padding: 0.5rem 0.75rem;
            display: flex;
            align-items: center;
        }

        .nav-link[onclick*="openCartModal"] i {
            font-size: 1.1rem;
        }

        .cart-count {
            font-size: 0.7rem;
            min-width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Navigation spacing */
        .ms-auto.d-flex {
            gap: 1rem;
        }

        @media (max-width: 991.98px) {
            .ms-auto.d-flex {
                gap: 0.75rem;
            }
        }

        .card {
            border: none;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

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

        .footer {
            background-color: var(--chibo-black);
            color: var(--chibo-white);
            padding: 3rem 0 1rem;
            margin-top: auto;
        }

        .footer a {
            color: var(--chibo-white);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: var(--chibo-red);
        }

        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 20px;
            right: 20px;
            background-color: #25d366;
            color: white;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 1000;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            background-color: #128c7e;
            color: white;
            transform: scale(1.1);
        }

        .whatsapp-float i {
            margin: 0;
        }

        /* Mobile Sidebar - Fixed Drawer Design */
        .mobile-sidebar {
            position: fixed;
            top: 0;
            left: -320px;
            width: 320px;
            height: 100vh;
            background: #ffffff;
            box-shadow: 2px 0 20px rgba(0, 0, 0, 0.2);
            z-index: 1050;
            transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            will-change: left;
            border-right: 1px solid #e9ecef;
        }

        .mobile-sidebar.open {
            left: 0 !important;
        }

        .mobile-sidebar-content {
            height: 100%;
            display: flex;
            flex-direction: column;
            background: #ffffff;
            position: relative;
            z-index: 1051;
        }

        .mobile-sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1049;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            will-change: opacity, visibility;
        }

        .mobile-sidebar.open .mobile-sidebar-overlay {
            opacity: 1;
            visibility: visible;
        }

        .mobile-sidebar-header {
            padding: 1rem;
            border-bottom: 1px solid #e9ecef;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #ffffff;
            flex-shrink: 0;
        }

        .mobile-sidebar-body {
            padding: 1rem;
            flex: 1;
            overflow-y: auto;
        }

        .mobile-sidebar .nav-link {
            padding: 0.75rem 1rem;
            border-radius: 8px;
            margin-bottom: 0.25rem;
            transition: background-color 0.2s ease, color 0.2s ease;
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #333;
        }

        .mobile-sidebar .nav-link:hover {
            background: rgba(255, 0, 0, 0.1);
            color: var(--chibo-red);
        }

        .mobile-sidebar .nav-link i {
            width: 20px;
            margin-right: 0.75rem;
            flex-shrink: 0;
        }

        /* Responsive sidebar widths */
        @media (max-width: 991.98px) {
            .mobile-sidebar {
                width: 300px;
                left: -300px;
            }
        }

        @media (max-width: 768px) {
            .mobile-sidebar {
                width: 280px;
                left: -280px;
            }
        }

        @media (max-width: 576px) {
            .mobile-sidebar {
                width: 260px;
                left: -260px;
            }
        }

        @media (max-width: 480px) {
            .mobile-sidebar {
                width: 240px;
                left: -240px;
            }
        }

        .min-vh-100 {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .main-content {
            flex: 1;
        }

        .hero-section {
            background: linear-gradient(135deg, var(--chibo-red) 0%, #cc0000 100%);
            color: white;
            padding: 4rem 0;
        }

        .hero-section h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .hero-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }

            .hero-section p {
                font-size: 1rem;
            }

            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 24px;
                bottom: 15px;
                right: 15px;
            }
        }

        .loading {
            display: none;
        }

        .loading.show {
            display: block;
        }

        .alert {
            border: none;
            border-radius: 8px;
        }

        .form-control:focus {
            border-color: var(--chibo-red);
            box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
        }

        .form-select:focus {
            border-color: var(--chibo-red);
            box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
        }

        /* Desktop Cart Quantity Input - Reduced size */
        /* Desktop Cart Quantity Input - Reduced size */
        .cart-qty-input {
            font-size: 0.9rem !important;
            padding: 0.35rem 0.25rem !important;
            font-weight: 700 !important;
            color: #212529 !important;
            text-align: center !important;
            border: 2px solid #dee2e6 !important;
            background-color: #fff !important;
            min-width: 45px !important;
        }

        .cart-qty-input:focus {
            border-color: #dc3545 !important;
            box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
            outline: none !important;
        }

        .cart-qty-input-group .btn {
            font-size: 0.9rem !important;
            padding: 0.4rem 0.6rem !important;
            font-weight: 600 !important;
        }

        .cart-qty-input-group {
            width: 120px !important;
        }

        /* Cart Modal - Reduced font sizes */
        #cartModal .modal-title {
            font-size: 1rem !important;
        }

        #cartModal .table th {
            font-size: 0.75rem !important;
            padding: 0.5rem 0.3rem !important;
        }

        #cartModal .table td {
            font-size: 0.7rem !important;
            padding: 0.5rem 0.3rem !important;
        }

        #cartModal .modal-footer .btn {
            font-size: 0.85rem !important;
            padding: 0.5rem 1rem !important;
        }

        #cartModal .form-check-label {
            font-size: 0.85rem !important;
        }

        #cartModal .form-check-label small {
            font-size: 0.7rem !important;
        }

        #cartModal .small {
            font-size: 0.75rem !important;
        }

        /* Mobile Cart Modal Optimizations */
        @media (max-width: 768px) {
            .modal-dialog {
                margin: 0.5rem;
                max-width: calc(100% - 1rem);
            }

            .modal-content {
                border-radius: 12px;
            }

            .modal-header {
                padding: 0.75rem 1rem;
            }

            .modal-header .modal-title {
                font-size: 0.9rem;
            }

            .modal-body {
                padding: 0.75rem;
                max-height: 60vh;
                overflow-y: auto;
            }

            .modal-footer {
                padding: 0.6rem 0.75rem;
            }

            .table th,
            .table td {
                padding: 0.25rem 0.15rem;
                font-size: 0.65rem;
            }

            .table th {
                font-size: 0.6rem;
            }

            .input-group-sm .btn {
                padding: 0.15rem 0.25rem;
                font-size: 0.55rem;
            }

            .input-group-sm .form-control {
                padding: 0.15rem 0.05rem;
                font-size: 0.55rem;
            }

            /* Reduced cart quantity input for mobile */
            .cart-qty-input {
                font-size: 0.8rem !important;
                padding: 0.3rem 0.2rem !important;
                font-weight: 700 !important;
            }

            .cart-qty-input-group .btn {
                font-size: 0.75rem !important;
                padding: 0.3rem 0.5rem !important;
                font-weight: 600 !important;
            }

            .cart-qty-input-group {
                width: 95px !important;
            }

            .btn-sm {
                padding: 0.15rem 0.3rem;
                font-size: 0.6rem;
            }

            .form-check-label {
                font-size: 0.7rem;
            }

            .form-check-label small {
                font-size: 0.6rem;
            }

            .modal-footer .btn {
                font-size: 0.7rem;
                padding: 0.35rem 0.7rem;
            }

            .modal-footer .d-flex.gap-2 {
                flex-direction: row;
                gap: 0.5rem !important;
                justify-content: space-between;
            }

            .modal-footer .d-flex.gap-2 .btn {
                flex: 1;
                max-width: 48%;
            }
        }

        @media (max-width: 576px) {
            .modal-dialog {
                margin: 0.25rem;
                max-width: calc(100% - 0.5rem);
            }

            .modal-body {
                padding: 0.5rem;
                max-height: 65vh;
            }

            .modal-header {
                padding: 0.5rem 0.75rem;
            }

            .modal-header .modal-title {
                font-size: 0.85rem;
            }

            .modal-footer {
                padding: 0.5rem 0.6rem;
            }

            .table th,
            .table td {
                padding: 0.15rem 0.1rem;
                font-size: 0.6rem;
            }

            .table th {
                font-size: 0.55rem;
            }

            .input-group-sm {
                width: 70px !important;
            }

            .input-group-sm .btn {
                padding: 0.1rem 0.15rem;
                font-size: 0.5rem;
            }

            .input-group-sm .form-control {
                padding: 0.1rem 0.05rem;
                font-size: 0.5rem;
            }

            /* Reduced cart quantity input for small mobile screens */
            .cart-qty-input {
                font-size: 0.75rem !important;
                padding: 0.25rem 0.15rem !important;
                font-weight: 700 !important;
            }

            .cart-qty-input-group .btn {
                font-size: 0.7rem !important;
                padding: 0.25rem 0.4rem !important;
                font-weight: 600 !important;
            }

            .cart-qty-input-group {
                width: 85px !important;
            }

            .btn-sm {
                padding: 0.1rem 0.25rem;
                font-size: 0.55rem;
            }

            .form-check-label {
                font-size: 0.65rem;
            }

            .form-check-label small {
                font-size: 0.55rem;
            }

            .modal-footer .btn {
                font-size: 0.65rem;
                padding: 0.3rem 0.6rem;
            }

            .modal-footer .d-flex.gap-2 {
                flex-direction: row;
                gap: 0.4rem !important;
                justify-content: space-between;
            }

            .modal-footer .d-flex.gap-2 .btn {
                flex: 1;
                max-width: 48%;
            }
        }

        /* VAT checkbox visibility enhancements */
        .vat-option {
            padding: 0.75rem 1rem;
            border: 1px solid #dee2e6;
            border-radius: 0.5rem;
            background: #fff9f9;
        }

        .vat-option .form-check-input {
            width: 1.2rem;
            height: 1.2rem;
            margin-top: 0.2rem;
            border-color: #dc3545;
        }

        .vat-option .form-check-input:checked {
            background-color: #dc3545;
            border-color: #dc3545;
        }

        .vat-option .form-check-input:focus {
            box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, .25);
            border-color: #dc3545;
        }

        .vat-option .form-check-label {
            font-size: 0.95rem;
            color: #212529;
            margin-left: 0.25rem;
        }

        .vat-option .form-check-label strong {
            font-weight: 700;
        }

        .vat-option .form-check-label small {
            font-size: 0.8rem;
        }