* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0b0a0a;
    color: #f0f0f0;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #1f1f1f;
}
::-webkit-scrollbar-thumb {
    background: #ff5e00;
    border-radius: 10px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 94, 0, 0.25);
    padding: 16px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff7e2e, #ff3c00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #eaeaea;
    font-weight: 500;
    transition: 0.2s;
}

.nav-links a:hover {
    color: #ff6a1a;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.6rem;
    color: #fff;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #ff4500;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 30px;
    padding: 2px 6px;
    min-width: 20px;
    text-align: center;
}

.order-now-btn {
    background: linear-gradient(95deg, #ff5e00, #ff2e00);
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
    color: white !important;
    box-shadow: 0 4px 12px rgba(255, 68, 0, 0.3);
    transition: transform 0.2s;
}

.order-now-btn:hover {
    transform: scale(1.02);
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #ff6a1a;
}

.hero {
    background: radial-gradient(circle at 80% 20%, #1f140e, #030101);
    padding: 70px 0 80px;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text h2 {
    font-size: 3.2rem;
    font-weight: 800;
}

.highlight {
    color: #ff7a2c;
}

.cta-btn {
    background: #ff4d0d;
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    transition: 0.2s;
}

.cta-btn:hover {
    background: #ff621f;
    transform: translateY(-3px);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 48px 0 32px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #ff5e00, transparent);
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 30px;
}

.category-card {
    background: rgba(30, 30, 35, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 40px;
    padding: 16px 28px;
    text-align: center;
    flex: 1;
    min-width: 100px;
    border: 1px solid rgba(255, 94, 0, 0.3);
    font-weight: 600;
    transition: 0.2s;
    cursor: default;
}

.category-card i {
    font-size: 1.8rem;
    color: #ff6a1a;
    margin-right: 10px;
}

.category-card:hover {
    background: #ff5e0022;
    transform: translateY(-5px);
}

.deals-grid, .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0 40px;
}

.card {
    background: rgba(20, 20, 24, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 28px;
    padding: 24px 20px 20px;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 94, 0, 0.2);
}

.card:hover {
    transform: translateY(-6px);
    border-color: #ff5e00;
}

.price {
    font-size: 1.7rem;
    font-weight: 800;
    color: #ff8533;
    margin: 12px 0;
}

.stars {
    color: #ffaa33;
    margin: 8px 0;
}

.btn-add {
    background: #ff5e00;
    border: none;
    padding: 10px 0;
    width: 100%;
    border-radius: 40px;
    font-weight: bold;
    color: white;
    margin-top: 12px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-add:hover {
    background: #ff7b2c;
    transform: scale(0.98);
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.testimonial-card {
    background: rgba(255, 94, 0, 0.08);
    backdrop-filter: blur(8px);
    border-radius: 30px;
    padding: 28px;
    flex: 1;
    border-left: 4px solid #ff5e00;
}

/* Cart Dropdown */
.cart-dropdown {
    position: absolute;
    top: 70px;
    right: 20px;
    width: 360px;
    max-height: 500px;
    overflow-y: auto;
    background: #141414e6;
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 20px;
    box-shadow: 0 20px 35px rgba(0,0,0,0.6);
    border: 1px solid #ff5e00;
    z-index: 1100;
    display: none;
    flex-direction: column;
    gap: 14px;
}

.cart-dropdown.active {
    display: flex !important; /* Force open */
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    padding: 8px 0;
    font-size: 0.85rem;
}

.cart-item-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.cart-item-controls button {
    background: #ff5e00;
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.remove-item {
    background: transparent;
    color: #ff5e5e;
    border: none;
    margin-left: 8px;
    cursor: pointer;
}

.cart-total {
    font-weight: bold;
    font-size: 1.2rem;
    border-top: 2px solid #ff5e00;
    padding-top: 12px;
    text-align: right;
}

.checkout-cart-btn {
    background: #ff5e00;
    padding: 10px;
    border-radius: 30px;
    color: white;
    margin-top: 8px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.close-cart-btn {
    background: #333;
    margin-top: 8px;
    padding: 8px;
    border-radius: 30px;
    color: white;
    border: none;
    cursor: pointer;
}

footer {
    background: #050303;
    margin-top: 80px;
    padding: 40px 0 20px;
    border-top: 1px solid #ff5e0033;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.social i {
    font-size: 1.8rem;
    margin-right: 16px;
    color: #ff7a2c;
    transition: 0.2s;
    cursor: pointer;
}

.social i:hover {
    color: white;
}

@media (max-width: 860px) {
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
        background: #0f0f0fe6;
        backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: 28px;
    }
    .nav-links.active {
        display: flex;
    }
    .hamburger {
        display: block;
    }
    .cart-dropdown {
        width: 300px;
        right: 10px;
    }
    .hero-text h2 {
        font-size: 2.3rem;
    }
}
/* ========== CART & DELIVERY OPTIONS STYLES ========== */

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.6rem;
    color: #fff;
    transition: 0.2s;
}

.cart-icon:hover {
    color: #ff6a1a;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #ff4500;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 30px;
    padding: 2px 6px;
    min-width: 20px;
    text-align: center;
}

.cart-dropdown {
    position: absolute;
    top: 70px;
    right: 20px;
    width: 380px;
    max-height: 550px;
    overflow-y: auto;
    background: #121212e6;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid #ff5e00;
    z-index: 1100;
    display: none;
    flex-direction: column;
    gap: 12px;
}

.cart-dropdown.active {
    display: flex;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    padding: 12px 0;
    font-size: 0.85rem;
}

.cart-item-info {
    flex: 2;
}

.cart-item-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.cart-item-controls button {
    background: #ff5e00;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.remove-item {
    background: transparent !important;
    color: #ff5e5e !important;
    font-size: 1rem;
}

.cart-total {
    font-weight: bold;
    font-size: 1rem;
    border-top: 2px solid #ff5e00;
    padding-top: 12px;
    text-align: right;
}

.empty-cart {
    text-align: center;
    padding: 30px;
    opacity: 0.7;
}

.checkout-btn {
    background: linear-gradient(95deg, #ff5e00, #ff2e00);
    padding: 12px;
    border-radius: 40px;
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
    margin-top: 8px;
}

.close-btn {
    background: #2a2a2a;
    padding: 10px;
    border-radius: 40px;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 5px;
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Delivery Options */
.delivery-options {
    background: rgba(255, 94, 0, 0.1);
    border-radius: 16px;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid rgba(255, 94, 0, 0.3);
}

.option-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.delivery-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    transition: 0.2s;
    flex: 1;
    justify-content: center;
}

.delivery-option:hover {
    background: rgba(255, 94, 0, 0.2);
}

.delivery-option input {
    accent-color: #ff5e00;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.delivery-option span {
    font-size: 0.9rem;
}

/* Timer Modal */
.timer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.timer-modal.active {
    display: flex;
}

.timer-modal-content {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border-radius: 40px;
    padding: 40px;
    text-align: center;
    border: 2px solid #ff5e00;
    max-width: 350px;
    width: 90%;
    animation: pulse 0.5s ease;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.timer-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff5e00, #ff2e00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.timer-circle span {
    font-size: 3rem;
    font-weight: bold;
    color: white;
}

.timer-modal-content p {
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.timer-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.order-more-btn {
    background: #2a2a2a;
    border: 1px solid #ff5e00;
    padding: 12px 20px;
    border-radius: 40px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    flex: 1;
}

.checkout-charge-btn {
    background: linear-gradient(95deg, #ff5e00, #ff2e00);
    border: none;
    padding: 12px 20px;
    border-radius: 40px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    flex: 1;
}
