* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #f8fafc;
}

/* ================= NAVBAR ================= */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
}

.nav-links a:hover {
    color: #2563eb;
}

.hamburger {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* ================= HERO ================= */
.hero {
    background:linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url('https://res.cloudinary.com/dwaqbsthr/image/upload/v1776330790/banner%20image.png')
    center/cover no-repeat;

    color: white;
    text-align: center;
    padding: 5rem 1rem;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.hero-content p {
    max-width: 500px;
    margin: auto;
    opacity: 0.9;
}

.btn-primary {
    margin-top: 1.5rem;
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary:hover {
    background: #1d4ed8;
}

/* ================= SECTION ================= */
.menu-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.8rem;
}

.section-header p {
    color: #6b7280;
}

/* ================= PRODUCTS GRID ================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.2rem;
}

/* product card */
.product-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.product-info {
    padding: 1rem;
}

.product-info h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.price {
    color: #2563eb;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.add-to-cart-btn {
    width: 100%;
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.7rem;
    border-radius: 10px;
    cursor: pointer;
}

.add-to-cart-btn:hover {
    background: #1d4ed8;
}

/* ================= CART ================= */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    z-index: 2000;

    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.close-btn {
    border: none;
    background: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-total {
    padding: 1rem;
    border-top: 1px solid #eee;
}

.total-row, .grand-total {
    display: flex;
    justify-content: space-between;
    margin: 0.5rem 0;
}

.grand-total {
    font-weight: 700;
    font-size: 1.2rem;
}

/* ================= WHATSAPP BUTTON ================= */
.btn-whatsapp {
    margin: 1rem;
    background: #25D366;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
}

/* ================= FLOATING CART ================= */
.floating-cart-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2563eb;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(37,99,235,0.4);
}

/* ================= FOOTER ================= */
.footer {
    background: #111827;
    color: #d1d5db;
    padding: 2rem 1rem;
    margin-top: 3rem;
    text-align: center;
}

.footer h3 {
    color: white;
}

.start-own {
    color: #2563eb;
    text-decoration: none;
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    padding: 1rem;
}

.mobile-menu a {
    padding: 0.8rem;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
}

/* ================= DESKTOP IMPROVEMENTS ================= */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .hero-content h2 {
        font-size: 2.8rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

    .product-image {
        height: 180px;
    }
}
.about-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.value-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.value-card i {
    font-size: 2rem;
    color: #00c853;
    margin-bottom: 0.8rem;
}
/* ================= SEARCH BAR ================= */
.search-container {
    max-width: 500px;
    margin: 1.5rem auto 2rem;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 0.9rem 1rem;
    padding-left: 2.5rem;
    border-radius: 30px;
    border: 1px solid #e5e7eb;
    outline: none;
    font-size: 0.95rem;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.search-container input:focus {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37,99,235,0.15);
}

.search-container i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

/* ================= DELIVERY SECTION ================= */
.delivery-section {
    padding: 1rem;
    border-top: 1px solid #eee;
}

.delivery-section label {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.4rem;
    display: block;
}

.delivery-section select,
.delivery-section input {
    width: 100%;
    padding: 0.7rem;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.delivery-section select:focus,
.delivery-section input:focus {
    border-color: #2563eb;
    outline: none;
}

/* hide elements */
.hidden {
    display: none;
}

/* ================= CART IMPROVEMENTS ================= */
.cart-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #f1f1f1;
}

.cart-item h4 {
    font-size: 0.95rem;
}

.cart-item button {
    margin: 0 3px;
    padding: 2px 6px;
    border: none;
    background: #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
}

.cart-item button:hover {
    background: #d1d5db;
}

/* ================= BUTTON IMPROVEMENTS ================= */
.add-to-cart-btn,
.btn-whatsapp,
.btn-primary {
    transition: all 0.2s ease;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(37,99,235,0.25);
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

/* ================= FLOATING CART POLISH ================= */
.floating-cart-btn {
    transition: all 0.25s ease;
}

.floating-cart-btn:hover {
    transform: scale(1.08);
}

/* ================= PRODUCT CARD ENHANCEMENT ================= */
.product-card {
    transition: all 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ================= HERO IMPROVEMENT ================= */
.hero-content h2 {
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.05rem;
}

/* ================= FOOTER POLISH ================= */
.footer {
    font-size: 0.9rem;
}

.footer .start-own:hover {
    text-decoration: underline;
}

/* ================= TOAST ================= */
.toast {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    background: #111827;
    color: white;
    padding: 0.7rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 3000;
    animation: fadeInOut 2s ease forwards;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translate(-50%, 10px); }
    10% { opacity: 1; transform: translate(-50%, 0); }
    90% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 10px); }
}
.customer-section {
    padding: 1rem;
    border-top: 1px solid #eee;
}

.customer-section input {
    width: 100%;
    padding: 0.7rem;
    margin-bottom: 0.6rem;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.btn-secondary {
    margin: 0 1rem;
    padding: 0.7rem;
    width: calc(100% - 2rem);
    border: none;
    background: #111827;
    color: white;
    border-radius: 10px;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #000;
}