/* =========================
   RESET & BASE
========================= */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background-color: #ffffff;
    color: #212529;
    line-height: 1.5;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* =========================
   HEADER
========================= */
.navbar-brand {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #dc3545 !important;
}

/* Search box */
.navbar .form-control {
    border-radius: 20px;
    font-size: 14px;
    padding: 6px 12px;
}

/* =========================
   HERO SECTION
========================= */
.hero {
    background: linear-gradient(to right, #dc2626, #000000, #111827);
    color: #ffffff;
 /*   min-height: 70vh; */
    padding: 60px 0;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-weight: 700;
}

.hero p {
    color: #f1f1f1;
}

/* =========================
   PRODUCT SECTION
========================= */
.product-img {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Price */
.text-danger {
    font-weight: 600;
}

/* =========================
   BUTTONS
========================= */
.btn {
    border-radius: 30px;
    padding: 10px 16px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-danger {
    background-color: #dc2626;
    border: none;
}

.btn-danger:hover {
    background-color: #b91c1c;
}

.btn-outline-danger:hover {
    background-color: #dc2626;
    color: #fff;
}

/* =========================
   COD FORM
========================= */
#orderForm input {
    border-radius: 8px;
    font-size: 14px;
}

#orderForm input:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 0.15rem rgba(220, 38, 38, 0.25);
}

/* =========================
   STICKY BAR
========================= */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #ddd;
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
}

/* =========================
   WHATSAPP BUTTON
========================= */
.whatsapp-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #25D366;
    color: #ffffff;
    padding: 14px;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* =========================
   FOOTER
========================= */
footer {
    background-color: #111;
}

footer h5, footer h6 {
    font-weight: 600;
}

footer a {
    transition: color 0.2s ease;
}

footer a:hover {
    color: #dc2626 !important;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .hero {
        text-align: center;
        padding: 40px 0;
    }

    .hero img {
        margin-top: 20px;
    }

    .navbar .form-control {
        width: 100% !important;
        margin-top: 10px;
    }

    .sticky-bar {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}