/* GLOBAL */
body {
    background: #0b0b0b;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    padding-top: 90px; /* ✅ FIXED NAVBAR ISSUE */
}

/* HEADINGS */
h1, h2, h3, h4 {
    color: #ffffff;
    font-weight: 600;
}

/* PARAGRAPH */
p {
    color: #cccccc;
}

/* NAVBAR */
.navbar-brand img {
    height: 40px;
    width: auto;
}

.navbar {
    background: rgba(0,0,0,0.7) !important;
    backdrop-filter: blur(12px);
    transition: 0.3s;
}

.nav-link {
    transition: 0.3s;
}

.nav-link:hover {
    color: #ffb703 !important;
}

/* BADGES */
.badge {
    position: absolute;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 20px;
    z-index: 2;
}

.bestseller {
    top: 10px;
    left: 10px;
    background: #ffb703;
    color: #000;
    font-weight: bold;
}

.veg {
    top: 10px;
    right: 10px;
    background: #2ecc71;
    color: #000;
    font-weight: bold;
}

.rating {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    padding: 5px 8px;
    border-radius: 8px;
    font-size: 12px;
    color: #ffb703;
}

/* HERO */
.hero {
    min-height: 100vh;
    padding: 20px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)),
    url('https://images.unsplash.com/photo-1509042239860-f550ce710b93') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 60px;
}

.hero p {
    font-size: 18px;
}

/* BUTTON */
.btn-custom {
    background: linear-gradient(45deg, #ffb703, #fb8500);
    color: #000;
    border-radius: 30px;
    padding: 10px 25px;
    border: none;
    transition: 0.3s;
}

.btn-custom:hover {
    transform: scale(1.05);
}

/* ACTIVE FILTER */
.active-filter {
    background: #fb8500 !important;
    color: #000 !important;
}

/* CARDS */
.card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card:hover {
    transform: translateY(-8px);
}

/* IMAGE FIX */
.card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

/* BUTTON ALIGN */
.card .btn {
    margin-top: auto;
}

/* GALLERY */
.gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
}

/* FORM */
input, textarea {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: white !important;
}

/* FOOTER */
.footer {
    background: #000;
    padding: 30px;
    text-align: center;
    margin-top: 50px;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background: #ffb703;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .hero {
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 32px;
    }

    h1 {
        font-size: 26px;
    }
}
