/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f5f5;
    padding-top: 80px;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: linear-gradient(90deg, #1e293b, #0f172a, #1e3a8a);
    padding: 14px 30px;
    color: white;

    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    animation: slideDown 0.6s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* LOGO */
.logo {
    font-size: 22px;
    font-weight: bold;
}

/* NAV LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    color: #e2e8f0;
    text-decoration: none;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #60a5fa;
}

.nav-links li::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #60a5fa;
    bottom: -6px;
    left: 0;
    transition: 0.3s;
}

.nav-links li:hover::after {
    width: 100%;
}

/* RIGHT SIDE */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-box {
    padding: 6px 10px;
    border-radius: 5px;
    border: none;
}

/* CART ICON */
.cart-icon {
    position: relative;
    cursor: pointer;
}

#cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: red;
    color: white;
    padding: 2px 6px;
    border-radius: 50%;
}

/* MOBILE */
.menu-icon {
    display: none;
}

@media (max-width: 768px) {
    .menu-icon { display: block; }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #0f172a;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }
}

/* 🌟 HERO SECTION */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    gap: 50px;

    background: linear-gradient(120deg, #eef2ff, #f8fafc);
}

/* TEXT */
.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 42px;
    color: #1e293b;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
    color: #64748b;
    margin: 20px 0;
}

/* 🔥 BUTTON */
.hero-btn {
    display: inline-block;
    padding: 14px 30px;

    background: linear-gradient(90deg, #3b82f6, #2563eb);
    color: white;

    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;

    box-shadow: 0 8px 20px rgba(59,130,246,0.4);

    transition: 0.3s;
}

.hero-btn:hover {
    transform: scale(1.08);
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    box-shadow: 0 10px 30px rgba(37,99,235,0.6);
}

/* IMAGE */
.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 380px;
    width: 100%;
    border-radius: 15px;

    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    transition: 0.4s;
}

.hero-image img:hover {
    transform: scale(1.05) rotate(1deg);
}


/* 👤 OWNER SECTION */
.owner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 80px 10%;
    gap: 50px;

    background: linear-gradient(120deg, #f8fafc, #eef2ff);
}

/* IMAGE */
.owner-image {
    flex: 1;
    text-align: center;
}

.owner-image img {
    max-width: 280px;
    width: 100%;

    border-radius: 50%;
    border: 6px solid #3b82f6;

    box-shadow: 0 10px 30px rgba(0,0,0,0.3);

    transition: 0.4s;
}

.owner-image img:hover {
    transform: scale(1.08);
}

/* TEXT */
.owner-content {
    flex: 1;
}

.owner-content h2 {
    font-size: 30px;
    color: #1e293b;
}

.owner-content h3 {
    font-size: 22px;
    color: #3b82f6;
    margin: 10px 0;
}

.owner-content p {
    font-size: 16px;
    color: #64748b;
    margin: 10px 0;
}

/* 📞 BUTTON */
.contact-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;

    background: linear-gradient(90deg, #22c55e, #16a34a);
    color: white;

    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;

    box-shadow: 0 6px 20px rgba(34,197,94,0.4);

    transition: 0.3s;
}

.contact-btn:hover {
    transform: scale(1.08);
    background: linear-gradient(90deg, #16a34a, #15803d);
    box-shadow: 0 8px 25px rgba(22,163,74,0.6);
}


/* 📱 RESPONSIVE */
@media (max-width: 768px) {
    .hero, .owner {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-image img {
        max-width: 300px;
    }

    .owner-image img {
        max-width: 200px;
    }
}
/* PRODUCTS */
.products {
    padding: 60px 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

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

.product-card {
    background: white;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
}

.product-card img {
    width: 100%;
    height: 140px;
}

.qty {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}

/* BUTTONS */
.btn-group {
    display: flex;
    gap: 5px;
}

.btn-group button {
    flex: 1;
    padding: 6px;
    border: none;
    cursor: pointer;
}

.btn-group button:first-child {
    background: #2563eb;
    color: white;
}

.btn-group button:last-child {
    background: #22c55e;
    color: white;
}

/* CART DROPDOWN */
.cart-box {
    position: fixed;
    right: 20px;
    top: 80px;
    width: 320px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    display: none;
    z-index: 9999;
}

/* CART ITEM */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #fff;
    margin-bottom: 10px;
}

.remove-btn {
    background: red;
    color: white;
    border: none;
    padding: 3px 6px;
    cursor: pointer;
}

/* 🌈 CART PAGE COLORFUL UI */

.cart-container {
    display: flex;
    gap: 25px;
    padding: 100px 8% 40px;
    background: linear-gradient(120deg, #eef2ff, #f8fafc);
}

/* LEFT BOX */
.cart-items-box {
    flex: 2;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* RIGHT BOX */
.price-box {
    flex: 1;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    height: fit-content;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);

    position: sticky;
    top: 100px;
}

/* 🛒 CART ITEM */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px;
    margin-bottom: 12px;

    background: #f9fafb;
    border-radius: 10px;

    transition: 0.3s;
}

.cart-item:hover {
    transform: scale(1.02);
    background: #eef2ff;
}

/* TEXT */
.cart-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.cart-item p {
    font-size: 13px;
    color: #64748b;
}

/* ❌ REMOVE BUTTON */
.remove-btn {
    background: linear-gradient(90deg, #ef4444, #dc2626);
    border: none;
    color: white;
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    transition: 0.3s;
}

.remove-btn:hover {
    transform: scale(1.1);
}

/* 🎟 COUPON BOX */
.coupon-box {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.coupon-box input {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #cbd5f5;
    outline: none;
}

/* APPLY BUTTON */
.coupon-box button {
    padding: 10px 15px;
    border: none;
    border-radius: 6px;

    background: linear-gradient(90deg, #6366f1, #4f46e5);
    color: white;
    cursor: pointer;
    font-weight: bold;

    transition: 0.3s;
}

.coupon-box button:hover {
    transform: scale(1.05);
}

/* COUPON TEXT */
.coupon-text {
    color: #16a34a;
    font-size: 13px;
    margin-top: 8px;
}

/* 💰 PRICE ROW */
.price-row {
    display: flex;
    justify-content: space-between;
    margin: 12px 0;
    font-size: 14px;
}

.discount {
    color: #16a34a;
}

/* TOTAL */
.total {
    font-weight: bold;
    font-size: 18px;
    color: #1e293b;
}

/* 🔥 PLACE ORDER BUTTON */
.place-order {
    width: 100%;
    padding: 14px;
    margin-top: 20px;

    border: none;
    border-radius: 8px;

    background: linear-gradient(90deg, #f97316, #ea580c);
    color: white;
    font-weight: bold;
    font-size: 15px;

    cursor: pointer;
    transition: 0.3s;
}

.place-order:hover {
    transform: scale(1.05);
}

/* 🛍 SHOP BUTTON (EMPTY CART) */
.cart-empty a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;

    background: linear-gradient(90deg, #22c55e, #16a34a);
    color: white;
    text-decoration: none;
    border-radius: 6px;
}

.cart-empty a:hover {
    transform: scale(1.05);
}

/* 📱 MOBILE */
@media (max-width: 768px) {
    .cart-container {
        flex-direction: column;
        padding: 80px 20px;
    }
}

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

@media (max-width: 768px) {
    .hero, .owner, .cart-container {
        flex-direction: column;
        text-align: center;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* 🌈 GLOBAL SMOOTH EFFECT */
* {
    transition: all 0.3s ease-in-out;
}

/* 🔥 NAV LINKS HOVER */
.nav-links li a:hover {
    color: #38bdf8;
    text-shadow: 0 0 8px rgba(56,189,248,0.7);
}

/* 🛒 CART ICON HOVER */
.cart-icon:hover {
    transform: scale(1.2);
}

/* 🔍 SEARCH BOX HOVER */
.search-box:hover {
    box-shadow: 0 0 10px rgba(99,102,241,0.5);
}

/* 🌟 HERO IMAGE HOVER */
.hero-image img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* 👤 OWNER IMAGE HOVER */
.owner-image img:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* 🛍 PRODUCT CARD HOVER */
.product-card {
    transition: 0.4s;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: linear-gradient(135deg, #dbeafe, #f0f9ff, #eef2ff);
    box-shadow: 0 15px 35px rgba(59,130,246,0.4);
}

/* 🖼 PRODUCT IMAGE HOVER */
.product-card img:hover {
    transform: scale(1.1);
}

/* 🔢 QTY BUTTON HOVER */
.qty button:hover {
    background: linear-gradient(90deg, #60a5fa, #2563eb);
    color: white;
    transform: scale(1.2);
}

/* 🎯 ALL BUTTONS HOVER */
button {
    transition: 0.3s;
}

button:hover {
    transform: scale(1.1);
    filter: brightness(1.15);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* 🛒 CART BOX HOVER */
.cart-box:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* 🧾 CART ITEM HOVER */
.cart-item:hover {
    transform: scale(1.04);
    background: linear-gradient(120deg, #e0f2fe, #ede9fe);
    box-shadow: 0 8px 20px rgba(99,102,241,0.4);
}

/* ❌ REMOVE BUTTON HOVER */
.remove-btn:hover {
    background: linear-gradient(90deg, #dc2626, #b91c1c);
    transform: scale(1.15) rotate(-2deg);
    box-shadow: 0 5px 15px rgba(220,38,38,0.5);
}

/* 🎟 COUPON BUTTON HOVER */
.coupon-box button:hover {
    background: linear-gradient(90deg, #4f46e5, #4338ca);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(79,70,229,0.5);
}

/* 💰 PRICE BOX HOVER */
.price-box:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* 🔥 PLACE ORDER BUTTON HOVER */
.place-order:hover {
    background: linear-gradient(90deg, #ea580c, #c2410c);
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(234,88,12,0.5);
}

/* 🛍 EMPTY CART BUTTON HOVER */
.cart-empty a:hover {
    background: linear-gradient(90deg, #16a34a, #15803d);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(22,163,74,0.5);
}
/* 🌈 PREMIUM CART ITEM DESIGN */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 16px;
    margin-bottom: 15px;

    border-radius: 12px;

    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    border: 1px solid #e2e8f0;

    box-shadow: 0 5px 15px rgba(0,0,0,0.08);

    transition: all 0.3s ease;
}

/* LEFT SIDE TEXT */
.cart-item h4 {
    font-size: 17px;
    color: #1e293b;
    margin-bottom: 5px;
}

.cart-item p {
    font-size: 13px;
    color: #64748b;
}

/* RIGHT SIDE */
.cart-item .price-box {
    text-align: right;
}

/* 💰 PRICE STYLE */
.cart-item .price {
    font-size: 16px;
    font-weight: bold;
    color: #2563eb;
}

/* 🔥 HOVER EFFECT */
.cart-item:hover {
    transform: translateY(-5px) scale(1.02);

    background: linear-gradient(135deg, #dbeafe, #eef2ff);

    box-shadow: 0 10px 30px rgba(59,130,246,0.3);
}

/* ❌ REMOVE BUTTON PREMIUM */
.remove-btn {
    margin-top: 5px;

    background: linear-gradient(90deg, #ef4444, #dc2626);
    border: none;
    color: white;

    padding: 6px 12px;
    border-radius: 6px;

    font-size: 12px;
    cursor: pointer;

    transition: 0.3s;
}

.remove-btn:hover {
    transform: scale(1.15) rotate(-2deg);
    box-shadow: 0 5px 20px rgba(220,38,38,0.5);
}

/* 🎨 PREMIUM BUTTONS */

/* ADD TO CART */
.btn-group button:first-child {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-group button:first-child:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(37,99,235,0.5);
}

/* BUY NOW */
.btn-group button:last-child {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border-radius: 8px;
    font-weight: bold;
}

.btn-group button:last-child:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(34,197,94,0.5);
}

/* 🔢 QTY BUTTON */
.qty button {
    border-radius: 6px;
    background: #e2e8f0;
    font-weight: bold;
}

.qty button:hover {
    background: linear-gradient(90deg, #60a5fa, #2563eb);
    color: white;
}

/* 🛒 CART ITEM CARD */
.cart-item {
    background: linear-gradient(120deg, #ffffff, #f1f5f9);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 12px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.08);

    transition: 0.3s;
}

/* ✨ HOVER EFFECT */
.cart-item:hover {
    transform: translateY(-5px) scale(1.02);
    background: linear-gradient(120deg, #e0f2fe, #ede9fe);
    box-shadow: 0 12px 25px rgba(99,102,241,0.4);
}

/* ❌ REMOVE BUTTON */
.remove-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: bold;
}

.remove-btn:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: scale(1.1);
}

/* 🎟 COUPON BUTTON */
button[onclick="applyCoupon()"] {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    border-radius: 6px;
    padding: 8px 12px;
}

button[onclick="applyCoupon()"]:hover {
    transform: scale(1.08);
    box-shadow: 0 5px 20px rgba(79,70,229,0.5);
}

/* 🔥 PLACE ORDER BUTTON */
.place-order, 
button[onclick="checkout()"] {
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 10px;
    font-size: 16px;
}

.place-order:hover,
button[onclick="checkout()"]:hover {
    transform: scale(1.07);
    box-shadow: 0 10px 25px rgba(234,88,12,0.5);
}

/* 🛍 EMPTY CART BUTTON */
.cart-empty a {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 8px;
}

.cart-empty a:hover {
    transform: scale(1.08);
}

/* 🧾 PRICE BOX ENHANCED */
.price-box {
    border-radius: 15px;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* 💰 PRICE ROW */
.price-row {
    font-size: 15px;
    padding: 5px 0;
}

/* TOTAL */
.total {
    font-size: 20px;
    color: #111827;
}
/* 🔥 COMMON BUTTON BASE */
.btn-pro {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    overflow: hidden;

    transition: 0.3s;
}

/* 🔵 SHOP NOW BUTTON */
.shop-btn {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    color: white;

    box-shadow: 0 8px 20px rgba(59,130,246,0.4);
}

.shop-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(37,99,235,0.6);
}

/* 🟢 WHATSAPP BUTTON */
.whatsapp-btn {
    background: linear-gradient(90deg, #25d366, #16a34a);
    color: white;

    box-shadow: 0 8px 20px rgba(37,211,102,0.4);
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(22,163,74,0.6);
}

/* ✨ SHINE EFFECT */
.btn-pro::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );

    transition: 0.5s;
}

.btn-pro:hover::before {
    left: 100%;
}
/* 🌈 CONTACT SECTION */
.contact-section {
    padding: 100px 10% 60px;
    background: linear-gradient(135deg, #e0f2fe, #eef2ff, #f0f9ff);
    text-align: center;
}

/* TITLE */
.contact-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-sub {
    color: #64748b;
    margin-bottom: 40px;
}

/* FLEX */
.contact-container {
    display: flex;
    gap: 30px;
}

/* LEFT BOX */
.contact-info {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 15px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* RIGHT FORM */
.contact-form {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 15px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* INPUT */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 12px;

    border-radius: 8px;
    border: 1px solid #cbd5f5;
}

/* BUTTON GROUP */
.contact-buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* 🔥 BUTTON BASE */
.btn {
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    text-align: center;

    transition: 0.3s;
}

/* DIFFERENT COLORS */
.whatsapp {
    background: linear-gradient(90deg, #25D366, #16a34a);
}

.call {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
}

.email {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

/* 🚀 SEND BUTTON */
.send-btn {
    width: 100%;
    margin-top: 15px;
    padding: 14px;

    border: none;
    border-radius: 8px;

    background: linear-gradient(90deg, #f97316, #ea580c);
    color: white;
    font-weight: bold;

    cursor: pointer;
}

/* 🔥 ANIMATIONS */
.btn:hover,
.send-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* 🗺 MAP */
.map-box {
    margin-top: 40px;
}

.map-box iframe {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    border: none;

    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* 📱 MOBILE */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .search-box {
        display: none;
    }

    .search-icon {
        display: block;
        cursor: pointer;
    }

    .search-box.active {
        display: block;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 200px;
    }
}