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

/* Festive Gradient Background */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 25%, #f7931e 50%, #ffcc02 75%, #ff6b35 100%);
    background-size: 400% 400%;
    min-height: 100vh;
    text-align: left;
}

/* Floating Particles */
body::before {
    display: none;
}




/* Pop-up Notifications */
.popup-notification {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 240, 0.95));
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.cashback-popup {
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ffcc02);
    background-size: 200% 200%;
    color: white;
    border: 3px solid #ff6b35;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    animation: cashbackPulse 3s ease-in-out infinite;
}

@keyframes cashbackPulse {
    0%, 100% { 
        background-position: 0% 50%;
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    }
    50% { 
        background-position: 100% 50%;
        box-shadow: 0 12px 35px rgba(255, 107, 53, 0.7);
    }
}

.discount-popup {
    background: linear-gradient(135deg, #27ae60, #2ecc71, #a8e063);
    background-size: 200% 200%;
    color: white;
    border: 3px solid #27ae60;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.5);
    animation: discountPulse 3s ease-in-out infinite;
}

@keyframes discountPulse {
    0%, 100% { 
        background-position: 0% 50%;
        box-shadow: 0 8px 25px rgba(39, 174, 96, 0.5);
    }
    50% { 
        background-position: 100% 50%;
        box-shadow: 0 12px 35px rgba(39, 174, 96, 0.7);
    }
}

.popup-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup-text {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.popup-close {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Category Filter */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 5px 0;
    justify-content: center;
    padding: 3px;
    background: transparent;
    border-radius: 6px;
    min-height: 50px;
}

.category-btn {
    padding: 8px 12px;
    border: 2px solid #ff6b35;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    color: #ff6b35;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.category-btn:hover {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.category-btn.active {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
}

/* Category Badge */
.category-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #f5576c);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Category Sections */
.category-section {
    margin: 30px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    border-left: 4px solid #ff6b35;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
}

.category-title {
    font-size: 24px;
    color: #ff6b35;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
    text-align: left;
}



main {
    overflow: visible;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Main Banner */
.main-banner {
    width: 100%;
    height: auto;
    overflow: visible;
    position: relative;
    background: none;
    border: none;
    box-shadow: none;
    margin: 0 auto;
}

.main-banner-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    filter: brightness(1.2) contrast(1.1);
    margin: 0 auto;
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

/* Fixed Icons */
.fixed-icons {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
    z-index: 1000;
}

/* Confetti Effect */
body::after {
    display: none;
}

.fixed-icons .cart-icon,
.fixed-icons .admin-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    padding: 10px 14px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 1.5rem;
    position: relative;
}

.fixed-icons .cart-icon {
    position: relative;
}

.fixed-icons .cart-icon #cart-count-fixed {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.fixed-icons .cart-icon:hover,
.fixed-icons .user-icon:hover,
.fixed-icons .admin-icon:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.floating-icons .cart-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    padding: 10px 14px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 1.5rem;
    position: relative;
}

.floating-icons .admin-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    padding: 10px 14px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 1.5rem;
}

.floating-icons .cart-icon:hover,
.floating-icons .admin-icon:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.floating-icons .cart-icon #cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Sale Banner */
.sale-banner {
    background: linear-gradient(90deg, #ff6b35, #ff8c42, #ffcc02, #27ae60, #3498db, #9b59b6, #ff6b35);
    background-size: 300% 100%;
    padding: 10px 0;
    margin: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    z-index: 100;
}

.scrolling-text {
    display: inline-block;
    white-space: nowrap;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    width: 100%;
    text-align: center;
    animation: scrollText 20s linear infinite;
}

@keyframes scrollText {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Legal Disclaimer Banner */
.legal-banner {
    background: linear-gradient(135deg, #ff8c42 0%, #ffcc02 50%, #ff6b35 100%);
    color: white;
    padding: 8px 0;
    overflow: hidden;
    border-bottom: 2px solid #ff6b35;
    z-index: 99;
    position: relative;
}

.legal-scrolling-text {
    display: inline-block;
    white-space: nowrap;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    width: 100%;
    text-align: center;
    animation: scrollLegalText 25s linear infinite;
}

@keyframes scrollLegalText {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Products Section */
.products {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.9);
    flex: 1;
    overflow-y: auto;
    backdrop-filter: blur(10px);
}

.products h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #ff6b35;
    font-weight: bold;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.catalog-status {
    grid-column: 1 / -1;
    margin: 24px 0;
    text-align: center;
    color: #7f8c8d;
    font-weight: 600;
}

/* Responsive for different screen sizes */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 240, 0.95));
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.15);
    border: 2px solid rgba(255, 107, 53, 0.1);
    backdrop-filter: blur(10px);
}

.product-card:hover {
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
    border-color: #ff6b35;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #e74c3c, #ff6b35);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.35);
    z-index: 2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: #ecf0f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    overflow: hidden;
    position: relative;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-emoji {
    font-size: 4rem;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
    color: #2c3e50;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
}

.product-info p {
    color: #7f8c8d;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-align: left;
}

.product-info .price {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    text-align: left;
}

.product-info .original-price {
    font-size: 1.05rem;
    text-decoration: line-through;
    color: #95a5a6;
    font-weight: normal;
}

.product-info .discounted-price {
    font-size: 1.45rem;
    font-weight: 800;
    color: #27ae60;
}

.admin-pricing {
    margin: 5px 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.admin-original-price {
    font-size: 0.95rem;
    text-decoration: line-through;
    color: #95a5a6;
    font-weight: normal;
}

.admin-discounted-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #27ae60;
}


.add-to-cart {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
}

.add-to-cart:hover {
    background: linear-gradient(135deg, #f7931e, #f5576c);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.add-to-cart:hover {
    background: #e55a2b;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffcc02 100%);
    color: white;
    padding: 30px 20px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f093fb, #25D366, #E1306C, #ff6b35);
    background-size: 200% 100%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}

.footer-contact {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-info {
    margin: 5px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e0e0e0;
}

.contact-info:hover {
    color: #f093fb;
}

.footer-social {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-copyright {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-copyright p {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.footer-tagline {
    color: #f093fb !important;
    font-style: italic;
    font-size: 0.85rem !important;
}

.social-button {
    padding: 12px 25px;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-button:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.social-icon {
    font-size: 1.4rem;
}

.instagram-button {
    background: linear-gradient(45deg, #E1306C, #833AB4, #C13584, #E1306C);
    background-size: 300% 300%;
    position: relative;
    overflow: hidden;
}

.instagram-button:hover {
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.5);
}

.whatsapp-button {
    background: linear-gradient(45deg, #25D366, #128C7E, #075E54);
    background-size: 200% 200%;
    position: relative;
    overflow: hidden;
}

.whatsapp-button:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
}

.floating-whatsapp:hover {
    background: linear-gradient(45deg, #128C7E, #075E54);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-logo {
    font-size: 1.5rem;
}

.whatsapp-text {
    font-weight: bold;
    font-size: 1rem;
}

/* Responsive for floating WhatsApp */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        left: 20px;
        padding: 12px 20px;
    }
    
    .whatsapp-text {
        font-size: 0.9rem;
    }
    
    .whatsapp-logo {
        font-size: 1.3rem;
    }
    
    /* Mobile Logo Optimization */
    .logo-container {
        height: 50vh;
    }
    
    .main-logo {
        object-fit: contain;
    }
    
    /* Mobile Category Filter */
    .category-filter {
        max-height: 120px;
        gap: 6px;
        padding: 8px;
    }
    
    .category-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    /* Mobile Fixed Icons */
    .fixed-icons {
        top: 5px;
        right: 5px;
        gap: 6px;
    }
    
    .fixed-icons .cart-icon,
    .fixed-icons .admin-icon {
        padding: 8px 12px;
        font-size: 1.2rem;
    }
    
    /* Mobile Product Grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-image {
        height: 120px;
    }
    
    .product-info h3 {
        font-size: 0.9rem;
    }
    
    .product-info .price {
        font-size: 1rem;
    }
    
    /* Mobile Cart/Admin Panel */
    .cart-sidebar,
    .admin-panel {
        width: 100%;
        right: -100%;
    }
    
    /* Mobile Container */
    .container {
        padding: 0 15px;
    }
    
    /* Mobile Category Section */
    .category-section {
        margin: 20px 0;
        padding: 15px;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

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

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

.cart-header button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #ecf0f1;
    text-align: left;
}

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

.cart-item-info h4 {
    margin-bottom: 5px;
    text-align: left;
}

.cart-item-price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cart-original-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: #95a5a6;
}

.cart-item-price .original-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: #95a5a6;
}

.cart-item-price .discounted-price {
    font-weight: bold;
    color: #27ae60;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.cart-item-info p {
    color: #7f8c8d;
    text-align: left;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-quantity button {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    border-radius: 3px;
}

.cart-item-remove {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    margin-left: 10px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #ecf0f1;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.minimum-order-info {
    text-align: center;
    margin-bottom: 15px;
    color: #7f8c8d;
    font-size: 0.85rem;
}

.checkout-button {
    width: 100%;
    padding: 15px;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
}

.checkout-button:hover:not(:disabled) {
    background: #e55a2b;
}

.checkout-button:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    opacity: 0.8;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.open {
    display: flex;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
}

.order-summary {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

.order-summary h4 {
    margin-bottom: 10px;
}

.order-summary .total {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Order Download Button */
.download-order-button {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 10px;
}

.download-order-button:hover {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.5);
}

.order-item-actions {
    margin-top: 10px;
    text-align: right;
}

/* Sparkle Effect */
.order-item {
    position: relative;
}

/* User Authentication Tabs */
.user-auth-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.auth-tab {
    flex: 1;
    padding: 12px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
}

.auth-tab.active {
    color: #ff6b35;
    border-bottom: 2px solid #ff6b35;
}

.auth-tab:hover {
    color: #ff6b35;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
}

.submit-button:hover {
    background: #e55a2b;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-container {
        margin-bottom: 0px;
        max-height: 50vh;
    }

    .main-logo {
        max-height: 50vh;
        object-fit: contain;
    }

    .floating-icons {
        top: 8px;
        right: 8px;
        gap: 6px;
    }

    .floating-icons .cart-icon,
    .floating-icons .user-icon,
    .floating-icons .admin-icon {
        padding: 8px 12px;
        font-size: 1.3rem;
    }

    .scrolling-text {
        font-size: 1.2rem;
    }

    .legal-scrolling-text {
        font-size: 1.0rem;
    }

    .products h2 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .sale-banner {
        padding: 1px 0;
        margin: 0px 0;
    }

    .legal-banner {
        padding: 0px 0;
    }

    .products {
        padding: 3px 0;
    }

    /* Force 2 columns on mobile */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-image {
        height: 120px;
        font-size: 1.5rem;
    }
    
    .product-info h3 {
        font-size: 0.9rem;
    }
    
    .product-info .price {
        font-size: 1rem;
    }
    
    .add-to-cart {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .admin-panel {
        width: 100%;
        right: -100%;
    }
    
    /* Mobile Category Filter */
    .category-filter {
        max-height: 120px;
        gap: 6px;
        padding: 8px;
    }
    
    .category-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    /* Mobile Container */
    .container {
        padding: 0 12px;
    }
    
    /* Mobile Category Section */
    .category-section {
        margin: 15px 0;
        padding: 12px;
    }
    
    .category-title {
        font-size: 1.1rem;
    }
}

/* Extra Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .logo-container {
        max-height: 40vh;
    }
    
    .main-logo {
        max-height: 40vh;
    }
    
    /* Keep 2 columns but with smaller gaps */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .product-image {
        height: 100px;
        font-size: 1.3rem;
    }
    
    .product-info h3 {
        font-size: 0.8rem;
    }
    
    .product-info .price {
        font-size: 0.9rem;
    }
    
    .add-to-cart {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    /* Smaller category buttons */
    .category-filter {
        max-height: 140px;
        gap: 4px;
        padding: 6px;
    }
    
    .category-btn {
        padding: 5px 8px;
        font-size: 10px;
    }
    
    /* Smaller container padding */
    .container {
        padding: 0 8px;
    }
    
    /* Smaller category section */
    .category-section {
        margin: 12px 0;
        padding: 10px;
    }
    
    .category-title {
        font-size: 1rem;
    }
    
    /* Smaller WhatsApp and Instagram buttons */
    .floating-whatsapp {
        bottom: 12px;
        left: 12px;
        padding: 8px 14px;
    }
    
    .floating-instagram {
        bottom: 12px;
        right: 12px;
        padding: 8px 14px;
    }
    
    .whatsapp-text {
        font-size: 0.8rem;
    }
    
    .whatsapp-logo {
        font-size: 1.1rem;
    }
    
    .instagram-text {
        font-size: 0.8rem;
    }
    
    .instagram-logo {
        font-size: 1.1rem;
    }
    
    /* Smaller fixed icons */
    .fixed-icons {
        top: 5px;
        right: 5px;
        gap: 4px;
    }
    
    .fixed-icons .cart-icon,
    .fixed-icons .admin-icon {
        padding: 6px 10px;
        font-size: 1rem;
    }
}

/* Admin Panel */
.admin-panel {
    position: fixed;
    top: 0;
    right: -500px;
    width: min(500px, 100vw);
    max-width: 100vw;
    height: 100%;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1500;
    transition: right 0.3s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.admin-panel.open {
    right: 0;
}

.admin-header {
    padding: 20px;
    border-bottom: 1px solid #ecf0f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

.admin-header-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.admin-header button {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.logout-button {
    font-size: 0.9rem !important;
    padding: 5px 15px;
    background: rgba(255,255,255,0.2) !important;
    border-radius: 3px;
    transition: background 0.3s;
}

.logout-button:hover {
    background: rgba(255,255,255,0.3) !important;
}

.admin-tabs {
    display: flex;
    border-bottom: 1px solid #ecf0f1;
}

.tab-button {
    flex: 1;
    padding: 15px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
    border-bottom: 3px solid transparent;
}

.tab-button:hover {
    background: #f8f9fa;
}

.tab-button.active {
    border-bottom: 3px solid #ff6b35;
    background: #fff8f0;
}

.tab-content {
    display: none;
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.tab-content.active {
    display: block;
}

.admin-section {
    margin-bottom: 30px;
}

.admin-section h4 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 1.2rem;
}

.admin-product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.admin-product-info {
    flex: 1;
    min-width: 220px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-product-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ecf0f1;
}

.admin-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-product-emoji {
    font-size: 2rem;
}

.admin-product-details {
    flex: 1;
}

.admin-product-info h5 {
    margin-bottom: 5px;
    color: #ff6b35;
}

.admin-product-info p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.admin-product-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.admin-product-actions button {
    padding: 5px 10px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.9rem;
    z-index: 10;
    position: relative;
}

.image-preview {
    margin-top: 10px;
    border: 2px dashed #ddd;
    border-radius: 5px;
    padding: 10px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-image {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}

.delete-button {
    background: #e74c3c;
    color: white;
}

.delete-button:hover {
    background: #e55a2b;
}

.edit-button {
    background: #ff6b35;
    color: white;
}

.edit-button:hover {
    background: #e55a2b;
}

.export-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.export-button {
    padding: 10px;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.export-button:hover {
    background: #e55a2b;
}

.order-day-group {
    margin-bottom: 20px;
}

.order-day-header {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-weight: bold;
}

.order-item {
    background: #fff8f0;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    border-left: 4px solid #ff6b35;
}

.order-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: bold;
}

.order-item-customer {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.order-item-products {
    background: white;
    padding: 10px;
    border-radius: 3px;
    margin-bottom: 10px;
}

.order-item-product {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #ecf0f1;
}

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

.order-item-total {
    text-align: right;
    font-weight: bold;
    color: #ff6b35;
}

.download-order-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.download-order-btn:hover {
    background: linear-gradient(135deg, #2980b9, #1a5276);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

/* Admin Order Items - CRITICAL: was missing, causing alignment issues */
.admin-order-item {
    background: #fff8f0;
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 16px;
    border-left: 5px solid #ff6b35;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.admin-order-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.15);
}

.admin-order-item h5 {
    margin: 0 0 12px 0;
    color: #ff6b35;
    font-size: 1.1rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    padding-bottom: 8px;
}

.admin-order-item p {
    margin: 6px 0;
    color: #34495e;
    font-size: 0.9rem;
    line-height: 1.5;
}

.admin-order-item p strong {
    color: #2c3e50;
    font-weight: 600;
    min-width: 80px;
    display: inline-block;
}

/* Fix delete button hover (was orange, should be dark red) */
.delete-button:hover {
    background: #c0392b;
}

/* Fix export buttons on small screens */
@media (max-width: 480px) {
    .export-buttons {
        grid-template-columns: 1fr;
    }
}

/* Fix category-section product-grid responsive (don't override global) */
.category-section .product-grid {
    display: grid;
    gap: 15px;
}

/* Improve modal content alignment and scroll */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
    padding: 24px;
    scroll-behavior: smooth;
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #ff6b35;
    border-radius: 4px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ecf0f1;
}

.modal-header h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin: 0;
}

.modal-header button {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #95a5a6;
    line-height: 1;
    transition: color 0.2s;
}

.modal-header button:hover {
    color: #e74c3c;
}

/* Improve form group alignment */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Submit button styling */
.submit-button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.35);
}

/* Order summary styling */
.order-summary {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid #ecf0f1;
}

.order-summary h4 {
    color: #ff6b35;
    margin: 0 0 12px 0;
    font-size: 1.1rem;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 0.95rem;
    color: #34495e;
}

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

.order-summary .total {
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    margin-top: 10px;
    border-top: 2px solid #ff6b35;
    font-weight: 700;
    font-size: 1.15rem;
    color: #2c3e50;
}

/* Category title alignment fix */
.category-title {
    margin: 30px 0 18px 0;
    padding: 12px 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border-radius: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
    display: inline-block;
}

.category-section {
    margin-bottom: 40px;
}

/* Category filter alignment fix */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
    justify-content: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.category-btn {
    padding: 8px 16px;
    background: white;
    border: 2px solid #ecf0f1;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: #34495e;
    transition: all 0.2s;
}

.category-btn:hover {
    border-color: #ff6b35;
    color: #ff6b35;
    transform: translateY(-1px);
}

.category-btn.active {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Checkout button disabled state */
.checkout-button:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    opacity: 0.7;
    transform: none;
    box-shadow: none;
}

/* Admin panel width on small screens */
@media (max-width: 540px) {
    .admin-panel {
        width: 100%;
        right: -100%;
    }
}

/* Product info alignment */
.product-info h3 {
    font-size: 1.05rem;
    line-height: 1.3;
    min-height: 2.6em;
    display: flex;
    align-items: flex-start;
}

.product-info .price {
    color: #ff6b35;
}

.add-to-cart {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s;
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(255, 107, 53, 0.3);
}

.add-to-cart:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Notifications alignment */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    z-index: 10000;
    font-weight: 600;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Container proper alignment */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Logo container alignment */
.logo-container {
    text-align: center;
    padding: 20px 15px 10px;
    max-width: 100%;
    overflow: hidden;
}

.main-logo {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.status-confirmed, .status-paid, .status-completed {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-shipped {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.status-cancelled, .status-failed {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Promotional Pop-ups Banner (Highlighted Left & Right side-by-side on iPhone and Desktop) */
.promo-popups-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 12px 0 22px 0;
    width: 100%;
    box-sizing: border-box;
}

.promo-popup {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 16px;
    border-radius: 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promo-popup:hover {
    transform: translateY(-3px) scale(1.01);
}

.promo-popup::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 35%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(25deg);
    animation: promoShine 4.5s infinite ease-in-out;
    pointer-events: none;
}

@keyframes promoShine {
    0% { left: -60%; }
    25% { left: 140%; }
    100% { left: 140%; }
}

/* Left Cashback Banner - Radiant Golden Glow */
.promo-left {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 50%, #d35400 100%);
    border: 2px solid #f1c40f;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(243, 156, 18, 0.35);
    animation: promoGlowLeft 3s infinite ease-in-out;
}

/* Right Discount Banner - Vibrant Crimson Firecracker */
.promo-right {
    background: linear-gradient(135deg, #ff4757 0%, #ee5253 50%, #c0392b 100%);
    border: 2px solid #ff6b81;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(238, 82, 83, 0.35);
    animation: promoGlowRight 3s infinite ease-in-out;
}

@keyframes promoGlowLeft {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(243, 156, 18, 0.35);
        border-color: #f1c40f;
    }
    50% {
        box-shadow: 0 8px 24px rgba(243, 156, 18, 0.6), 0 0 0 3px rgba(241, 196, 15, 0.3);
        border-color: #ffeaa7;
    }
}

@keyframes promoGlowRight {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(238, 82, 83, 0.35);
        border-color: #ff6b81;
    }
    50% {
        box-shadow: 0 8px 24px rgba(238, 82, 83, 0.6), 0 0 0 3px rgba(255, 107, 129, 0.3);
        border-color: #ff7675;
    }
}

.promo-popup-text {
    font-size: clamp(0.78rem, 2.2vw, 1rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.25px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.promo-popup-text strong {
    font-weight: 900;
}

/* iPhone & Mobile specific adjustments - strictly 1 on left and 1 on right */
@media (max-width: 600px) {
    .promo-popups-container {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px;
        margin: 8px 0 16px 0;
    }

    .promo-popup {
        padding: 9px 6px;
        border-radius: 11px;
        min-height: 52px;
    }

    .promo-popup-text {
        font-size: 0.74rem;
        line-height: 1.25;
    }
}

@media (max-width: 380px) {
    .promo-popups-container {
        gap: 6px;
    }

    .promo-popup {
        padding: 7px 4px;
        min-height: 48px;
    }

    .promo-popup-text {
        font-size: 0.68rem;
    }
}





