    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --kfc-red: #E4002B;
            --kfc-white: #FFFFFF;
            --kfc-black: #000000;
            --kfc-gold: #FFC72C;
            --kfc-gray: #F5F5F5;
            --kfc-dark-gray: #333333;
            --success-green: #28a745;
            --whatsapp-green: #25D366;
            --email-blue: #4285F4;
        }
        
        body {
            background-color: var(--kfc-white);
            color: var(--kfc-dark-gray);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background-color: var(--kfc-red);
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 30px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-icon {
            color: var(--kfc-white);
            font-size: 2.5rem;
            background-color: var(--kfc-black);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .logo-text {
            color: var(--kfc-white);
        }
        
        .logo-text h1 {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: 1px;
        }
        
        .logo-text p {
            font-size: 0.8rem;
            opacity: 0.9;
        }
        
        /* Main Navigation */
        .main-nav {
            display: flex;
            justify-content: center;
        }
        
        .nav-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            background-color: var(--kfc-black);
            border-radius: 50px;
            padding: 5px;
            gap: 5px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }
        
        .nav-links a {
            color: var(--kfc-white);
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            padding: 12px 20px;
            border-radius: 50px;
            text-align: center;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .nav-links a i {
            font-size: 1.1rem;
        }
        
        .nav-links a:hover, .nav-links a.active {
            background-color: var(--kfc-red);
            color: var(--kfc-white);
            transform: translateY(-2px);
        }
        
        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .cart-icon {
            position: relative;
            cursor: pointer;
            color: var(--kfc-white);
            font-size: 1.5rem;
        }
        
        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: var(--kfc-gold);
            color: var(--kfc-black);
            border-radius: 50%;
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            font-weight: bold;
        }
        
        .order-btn {
            background-color: var(--kfc-gold);
            color: var(--kfc-black);
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .order-btn:hover {
            background-color: var(--kfc-white);
            transform: scale(1.05);
        }
        
        /* Floating Order Button */
        .floating-order-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(45deg, var(--whatsapp-green), #128C7E);
            color: white;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
            z-index: 999;
            cursor: pointer;
            transition: all 0.3s;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .floating-order-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
        }
        
        .floating-order-btn span {
            position: absolute;
            bottom: 80px;
            right: 0;
            background-color: var(--kfc-red);
            color: white;
            padding: 8px 15px;
            border-radius: 30px;
            font-weight: bold;
            font-size: 0.9rem;
            white-space: nowrap;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .floating-order-btn:hover span {
            opacity: 1;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1623241891379-321b0b367c82?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            color: var(--kfc-white);
            padding: 100px 0;
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h2 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--kfc-white);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero h2 span {
            color: var(--kfc-gold);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--kfc-red);
            color: var(--kfc-white);
            padding: 16px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }
        
        .cta-button:hover {
            background-color: var(--kfc-gold);
            color: var(--kfc-black);
            transform: translateY(-3px);
        }
        
        /* Category Navigation */
        .category-nav {
            background-color: var(--kfc-gray);
            padding: 20px 0;
            border-bottom: 3px solid var(--kfc-red);
        }
        
        .category-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 10px;
        }
        
        .category-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 15px 10px;
            background-color: var(--kfc-white);
            border-radius: 10px;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            color: var(--kfc-dark-gray);
        }
        
        .category-item:hover, .category-item.active {
            background-color: var(--kfc-red);
            color: var(--kfc-white);
            transform: translateY(-5px);
        }
        
        .category-item i {
            font-size: 1.8rem;
            margin-bottom: 8px;
        }
        
        .category-item span {
            font-weight: 600;
            font-size: 0.9rem;
            text-align: center;
        }
        
        /* Product Grid */
        .products-section {
            padding: 80px 0;
            background-color: var(--kfc-white);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--kfc-black);
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            display: inline-block;
            padding-bottom: 15px;
            position: relative;
            font-weight: 800;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 5px;
            background-color: var(--kfc-red);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: var(--kfc-white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #eee;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
        }
        
        .product-img {
            height: 200px;
            background-color: var(--kfc-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--kfc-red);
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--kfc-red);
            color: var(--kfc-white);
            padding: 5px 10px;
            border-radius: 4px;
            font-weight: 700;
            font-size: 0.8rem;
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-info h3 {
            color: var(--kfc-black);
            margin-bottom: 10px;
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .product-info p {
            color: #666;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
        
        .product-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .price {
            font-weight: 800;
            color: var(--kfc-red);
            font-size: 1.4rem;
        }
        
        .add-to-cart {
            background-color: var(--kfc-red);
            color: var(--kfc-white);
            border: none;
            padding: 10px 18px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .add-to-cart:hover {
            background-color: var(--kfc-black);
        }
        
        /* Cart Modal */
        .cart-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .cart-modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .cart-content {
            background-color: white;
            width: 90%;
            max-width: 800px;
            max-height: 80vh;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transform: translateY(50px);
            transition: transform 0.4s;
        }
        
        .cart-modal.active .cart-content {
            transform: translateY(0);
        }
        
        .cart-header {
            background-color: var(--kfc-red);
            color: white;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .cart-header h3 {
            font-size: 1.8rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .close-cart {
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .close-cart:hover {
            transform: rotate(90deg);
        }
        
        .cart-items {
            padding: 20px;
            max-height: 40vh;
            overflow-y: auto;
        }
        
        .cart-item {
            display: grid;
            grid-template-columns: auto 1fr auto auto;
            align-items: center;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        
        .cart-item:last-child {
            border-bottom: none;
        }
        
        .cart-item-img {
            width: 60px;
            height: 60px;
            background-color: var(--kfc-gray);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--kfc-red);
            font-size: 1.5rem;
        }
        
        .cart-item-info h4 {
            margin-bottom: 5px;
        }
        
        .cart-item-price {
            font-weight: bold;
            color: var(--kfc-red);
        }
        
        .cart-item-quantity {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .quantity-btn {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: var(--kfc-gray);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-weight: bold;
        }
        
        .quantity-btn:hover {
            background-color: var(--kfc-red);
            color: white;
        }
        
        .remove-item {
            color: #ff4444;
            background: none;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 5px;
        }
        
        .cart-footer {
            padding: 20px;
            background-color: var(--kfc-gray);
            border-top: 2px solid var(--kfc-red);
        }
        
        .cart-total {
            display: flex;
            justify-content: space-between;
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .cart-actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        
        .cart-btn {
            padding: 15px;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s;
        }
        
        .checkout-btn {
            background-color: var(--success-green);
            color: white;
        }
        
        .checkout-btn:hover {
            background-color: #218838;
        }
        
        .clear-cart-btn {
            background-color: #ff4444;
            color: white;
        }
        
        .clear-cart-btn:hover {
            background-color: #cc0000;
        }
        
        /* Order Form Modal */
        .order-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .order-modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .order-content {
            background-color: white;
            width: 90%;
            max-width: 600px;
            max-height: 90vh;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transform: translateY(50px);
            transition: transform 0.4s;
            overflow-y: auto;
        }
        
        .order-modal.active .order-content {
            transform: translateY(0);
        }
        
        .order-header {
            background-color: var(--kfc-red);
            color: white;
            padding: 20px;
            text-align: center;
        }
        
        .order-header h3 {
            font-size: 1.8rem;
        }
        
        .order-form {
            padding: 25px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--kfc-dark-gray);
        }
        
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            border-color: var(--kfc-red);
            outline: none;
        }
        
        .order-summary {
            background-color: var(--kfc-gray);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        
        .order-summary h4 {
            margin-bottom: 10px;
            color: var(--kfc-red);
        }
        
        .order-items-list {
            max-height: 150px;
            overflow-y: auto;
            margin-bottom: 15px;
        }
        
        .order-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #ddd;
        }
        
        .order-item:last-child {
            border-bottom: none;
        }
        .order-date {
            padding: 8px 0;
            margin-bottom: 10px;
            font-weight: bold;
            color: var(--kfc-red);
            border-bottom: 2px solid var(--kfc-red);
        }
        .order-total {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--kfc-red);
            text-align: right;
        }
        
        .order-methods {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .order-method {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
            border: 2px solid #ddd;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .order-method:hover, .order-method.active {
            border-color: var(--kfc-red);
            background-color: rgba(228, 0, 43, 0.05);
        }
        
        .order-method i {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
        .whatsapp-method i {
            color: var(--whatsapp-green);
        }
        
        .email-method i {
            color: var(--email-blue);
        }
        
        .order-method p {
            font-weight: 600;
            text-align: center;
        }
        
        .submit-order-btn {
            width: 100%;
            padding: 16px;
            background-color: var(--kfc-red);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .submit-order-btn:hover {
            background-color: var(--kfc-black);
        }
        
        /* Success Message */
        .success-message {
            position: fixed;
            top: 100px;
            right: 20px;
            background-color: var(--success-green);
            color: white;
            padding: 20px 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 3000;
            transform: translateX(400px);
            transition: transform 0.5s;
        }
        
        .success-message.show {
            transform: translateX(0);
        }
        
        /* Footer */
        footer {
            background-color: var(--kfc-black);
            color: var(--kfc-white);
            padding: 60px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            color: var(--kfc-gold);
            margin-bottom: 20px;
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .footer-column p, .footer-column a {
            color: #ccc;
            margin-bottom: 10px;
            display: block;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column a:hover {
            color: var(--kfc-gold);
        }
        
        .contact-info i {
            color: var(--kfc-gold);
            width: 20px;
            margin-right: 10px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }
        
        .social-icons a {
            background-color: var(--kfc-red);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }
        
        .social-icons a:hover {
            background-color: var(--kfc-gold);
            color: var(--kfc-black);
        }
        
        .newsletter input {
            padding: 12px 15px;
            border-radius: 4px;
            border: none;
            width: 100%;
            margin-bottom: 10px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Responsive Design - Tablet (992px and below) */
        @media (max-width: 992px) {
            .header-container {
                grid-template-columns: auto 1fr auto;
                gap: 15px;
            }
            
            .logo-text h1 {
                font-size: 1.4rem;
            }
            
            .logo-text p {
                font-size: 0.7rem;
            }
            
            .nav-links {
                grid-template-columns: repeat(3, 1fr);
                gap: 3px;
            }
            
            .nav-links a {
                padding: 8px 12px;
                font-size: 0.9rem;
            }
            
            .nav-links a i {
                font-size: 0.9rem;
            }
            
            .category-container {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .hero {
                padding: 60px 0;
            }
            
            .hero h2 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .cart-actions, .order-methods {
                grid-template-columns: 1fr;
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
                gap: 20px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }
        
        /* Responsive Design - Mobile (768px and below) */
        @media (max-width: 768px) {
            * {
                font-size: 15px;
            }
            
            .container {
                padding: 0 15px;
            }
            
            /* Header Mobile */
            header {
                padding: 10px 0;
            }
            
            .header-container {
                grid-template-columns: auto 1fr auto;
                gap: 10px;
            }
            
            .logo-icon {
                width: 45px;
                height: 45px;
                font-size: 1.8rem;
            }
            
            .logo-text h1 {
                font-size: 1.2rem;
                letter-spacing: 0.5px;
            }
            
            .logo-text p {
                font-size: 0.65rem;
            }
            
            .main-nav {
                display: none;
            }
            
            .nav-links {
                display: none;
            }
            
            .cart-icon {
                font-size: 1.3rem;
            }
            
            .order-btn {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
            
            .header-actions {
                gap: 15px;
            }
            
            /* Category Navigation Mobile */
            .category-nav {
                padding: 12px 0;
            }
            
            .category-container {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }
            
            .category-item {
                padding: 10px 8px;
                font-size: 0.75rem;
            }
            
            .category-item i {
                font-size: 1.5rem;
                margin-bottom: 5px;
            }
            
            .category-item span {
                font-size: 0.7rem;
            }
            
            /* Hero Section Mobile */
            .hero {
                padding: 40px 0;
            }
            
            .hero-content {
                max-width: 100%;
            }
            
            .hero h2 {
                font-size: 1.6rem;
                margin-bottom: 15px;
                letter-spacing: 0.5px;
            }
            
            .hero p {
                font-size: 0.9rem;
                margin-bottom: 20px;
            }
            
            .cta-button {
                padding: 12px 25px;
                font-size: 0.95rem;
                letter-spacing: 0.5px;
            }
            
            /* Products Section Mobile */
            .products-section {
                padding: 40px 0;
            }
            
            .section-title {
                margin-bottom: 30px;
            }
            
            .section-title h2 {
                font-size: 1.6rem;
            }
            
            .section-title h2:after {
                width: 60px;
                height: 4px;
            }
            
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .product-card {
                border-radius: 8px;
            }
            
            .product-img {
                height: 150px;
                font-size: 3rem;
            }
            
            .product-badge {
                padding: 4px 8px;
                font-size: 0.7rem;
                top: 10px;
                right: 10px;
            }
            
            .product-info {
                padding: 12px;
            }
            
            .product-info h3 {
                font-size: 1.1rem;
                margin-bottom: 5px;
            }
            
            .product-info p {
                font-size: 0.8rem;
                margin-bottom: 8px;
                display: none;
            }
            
            .product-quantity {
                margin-bottom: 8px;
            }
            
            .qty-increase, .qty-decrease {
                padding: 3px 6px;
                font-size: 0.9rem;
            }
            
            .qty-input {
                width: 40px;
            }
            
            .price {
                font-size: 1.1rem;
            }
            
            .product-price {
                flex-direction: column;
                gap: 8px;
            }
            
            .add-to-cart {
                width: 100%;
                padding: 8px 10px;
                font-size: 0.85rem;
                justify-content: center;
            }
            
            /* Cart Modal Mobile */
            .cart-content {
                width: 95%;
                max-height: 85vh;
            }
            
            .cart-header h3 {
                font-size: 1.4rem;
            }
            
            .cart-items {
                max-height: 50vh;
                padding: 15px;
            }
            
            .cart-item {
                grid-template-columns: auto 1fr;
                gap: 10px;
                padding: 10px 0;
            }
            
            .cart-item-img {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .cart-item-info h4 {
                font-size: 0.95rem;
            }
            
            .cart-item-quantity {
                grid-column: 1 / -1;
                justify-content: center;
                gap: 8px;
            }
            
            .cart-total {
                font-size: 1.2rem;
                margin-bottom: 15px;
            }
            
            .cart-actions {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .cart-btn {
                padding: 12px;
                font-size: 0.9rem;
            }
            
            /* Order Modal Mobile */
            .order-content {
                width: 95%;
                max-height: 90vh;
                max-width: 100%;
            }
            
            .order-header h3 {
                font-size: 1.4rem;
            }
            
            .order-form {
                padding: 15px;
            }
            
            .form-group {
                margin-bottom: 15px;
            }
            
            .form-group label {
                font-size: 0.9rem;
                margin-bottom: 6px;
            }
            
            .form-group input, .form-group textarea, .form-group select {
                padding: 10px 12px;
                font-size: 1rem;
                border-radius: 6px;
            }
            
            .order-summary {
                padding: 12px;
                margin-bottom: 15px;
            }
            
            .order-summary h4 {
                font-size: 1rem;
                margin-bottom: 8px;
            }
            
            .order-items-list {
                max-height: 120px;
            }
            
            .order-item {
                padding: 5px 0;
            }
            
            .order-total {
                font-size: 1.1rem;
            }
            
            .order-methods {
                grid-template-columns: 1fr;
                gap: 12px;
                margin-bottom: 15px;
            }
            
            .order-method {
                padding: 15px;
            }
            
            .order-method i {
                font-size: 2rem;
                margin-bottom: 8px;
            }
            
            .order-method p {
                font-size: 0.95rem;
            }
            
            .order-method small {
                font-size: 0.75rem;
            }
            
            .submit-order-btn {
                padding: 12px;
                font-size: 1rem;
            }
            
            /* Success Message Mobile */
            .success-message {
                right: 10px;
                left: 10px;
                top: 20px;
                transform: translateX(0);
                transform: translateY(-150px);
                font-size: 0.9rem;
                padding: 15px;
                transition: transform 0.5s;
            }
            .success-message.show {
                transform: translateY(0);
            }
            .success-message i {
                font-size: 1.5rem;
                flex-shrink: 0;
            }
            
            /* Floating Button Mobile */
            .floating-order-btn {
                bottom: 20px;
                right: 20px;
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .floating-order-btn span {
                font-size: 0.8rem;
                padding: 6px 12px;
            }
            
            /* Footer Mobile */
            footer {
                padding: 40px 0 20px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .footer-column h3 {
                font-size: 1.2rem;
                margin-bottom: 12px;
            }
            
            .footer-column p, .footer-column a {
                font-size: 0.85rem;
                margin-bottom: 8px;
            }
            
            .social-icons {
                gap: 10px;
            }
            
            .social-icons a {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
            
            .newsletter input {
                font-size: 1rem;
            }
            
            .copyright {
                font-size: 0.75rem;
                padding-top: 20px;
                margin-top: 20px;
            }
            
            /* About Section Mobile */
            .about-section {
                padding: 40px 0;
            }
            
            .about-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .about-content h2 {
                font-size: 1.4rem;
                margin-bottom: 15px;
            }
            
            .about-content > p {
                font-size: 0.95rem;
            }
            
            .about-features {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            
            .feature {
                padding: 15px;
            }
            
            .feature i {
                font-size: 1.4rem;
            }
            
            .feature h3 {
                font-size: 1rem;
            }
            
            .feature p {
                font-size: 0.85rem;
            }
            
            .image-placeholder {
                height: 250px;
            }
            
            .image-placeholder i {
                font-size: 3rem;
            }
            
            .image-placeholder h3 {
                font-size: 1.3rem;
            }
            
            /* Testimonials Mobile */
            .testimonials-section {
                padding: 40px 0;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .testimonial-card {
                padding: 15px;
                border-left: 4px solid var(--kfc-red);
            }
            
            .testimonial-text {
                font-size: 0.9rem;
                margin-bottom: 15px;
            }
            
            .author-avatar {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .testimonial-author h4 {
                font-size: 0.95rem;
            }
            
            .testimonial-author p {
                font-size: 0.8rem;
            }
        }
        
        /* Responsive Design - Small Mobile (480px and below) */
        @media (max-width: 480px) {
            * {
                font-size: 14px;
            }
            
            .container {
                padding: 0 12px;
            }
            
            /* Header Extra Small */
            header {
                padding: 8px 0;
            }
            
            .header-container {
                gap: 8px;
            }
            
            .logo-icon {
                width: 40px;
                height: 40px;
                font-size: 1.5rem;
            }
            
            .logo-text h1 {
                font-size: 1rem;
            }
            
            .logo-text p {
                font-size: 0.6rem;
            }
            
            .order-btn {
                padding: 6px 12px;
                font-size: 0.8rem;
            }
            
            .cart-icon {
                font-size: 1.1rem;
            }
            
            .cart-count {
                width: 18px;
                height: 18px;
                font-size: 0.75rem;
            }
            
            /* Category Navigation Extra Small */
            .category-nav {
                padding: 8px 0;
            }
            
            .category-container {
                grid-template-columns: repeat(3, 1fr);
                gap: 5px;
            }
            
            .category-item {
                padding: 6px 4px;
                border-radius: 6px;
            }
            
            .category-item i {
                font-size: 1.2rem;
                margin-bottom: 2px;
            }
            
            .category-item span {
                font-size: 0.6rem;
                display: none;
            }
            
            /* Hero Extra Small */
            .hero {
                padding: 30px 0;
            }
            
            .hero h2 {
                font-size: 1.3rem;
                margin-bottom: 10px;
            }
            
            .hero p {
                font-size: 0.85rem;
                margin-bottom: 15px;
            }
            
            .cta-button {
                padding: 10px 20px;
                font-size: 0.85rem;
            }
            
            /* Products Grid Extra Small */
            .products-section {
                padding: 25px 0;
            }
            
            .section-title {
                margin-bottom: 20px;
            }
            
            .section-title h2 {
                font-size: 1.4rem;
            }
            
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            
            .product-img {
                height: 120px;
                font-size: 2.5rem;
            }
            
            .product-info {
                padding: 8px;
            }
            
            .product-info h3 {
                font-size: 0.95rem;
                margin-bottom: 3px;
            }
            
            .price {
                font-size: 1rem;
            }
            
            .add-to-cart {
                padding: 6px 8px;
                font-size: 0.75rem;
            }
            
            .add-to-cart i {
                display: none;
            }
            
            /* Modals Extra Small */
            .cart-content, .order-content {
                width: 98%;
            }
            
            .cart-item-quantity {
                margin-top: 8px;
            }
            
            .floating-order-btn {
                width: 55px;
                height: 55px;
                font-size: 1.3rem;
                bottom: 15px;
                right: 15px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .about-features {
                gap: 8px;
            }
        }
        
        /* Testimonials Section */
        .testimonials-section {
            background-color: var(--kfc-gray);
            padding: 80px 0;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border-left: 5px solid var(--kfc-red);
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .star-rating {
            color: var(--kfc-gold);
            margin-bottom: 15px;
            font-size: 1.2rem;
            display: flex;
            gap: 5px;
        }
        
        .testimonial-text {
            color: var(--kfc-dark-gray);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--kfc-red);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .testimonial-author h4 {
            margin-bottom: 3px;
            color: var(--kfc-black);
        }
        
        .testimonial-author p {
            color: #999;
            font-size: 0.9rem;
        }
        
        /* About Section */
        .about-section {
            background-color: white;
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(228, 0, 43, 0.05) 0%, rgba(255, 199, 44, 0.05) 100%);
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--kfc-black);
            font-weight: 800;
        }
        
        .about-content > p {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .feature {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }
        
        .feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        }
        
        .feature i {
            color: var(--kfc-red);
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .feature h3 {
            color: var(--kfc-black);
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
        
        .feature p {
            color: #999;
            font-size: 0.95rem;
        }
        
        .image-placeholder {
            height: 400px;
            background: linear-gradient(135deg, var(--kfc-red), var(--kfc-gold));
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .image-placeholder i {
            font-size: 5rem;
            margin-bottom: 20px;
            opacity: 0.9;
        }
        
        .image-placeholder h3 {
            font-size: 1.8rem;
            text-align: center;
        }
        
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .product-card {
            animation: slideInUp 0.5s ease-out;
        }
        
        /* Responsive Testimonials */
        @media (max-width: 768px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .image-placeholder {
                height: 300px;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        .testimonial-card {
            animation: fadeInScale 0.6s ease-out;
        }
        
        .floating-order-btn {
            animation: bounce 2s infinite;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .success-message {
            animation: slideDown 0.4s ease-out;

        }

