/* --- 1. GLOBAL RESETS & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.section-padding {
    padding: 60px 0;
}

.text-center {
    text-align: center;
}

/* --- 2. HEADER & NAVIGATION --- */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #b33939; /* Deep Spice Red */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-weight: 600;
    color: #333;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #e67e22;
}

.cart-status {
    background: #e67e22;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

/* --- 3. LANDING BANNER (HERO SLIDER) --- */
.hero-slider {
    position: relative;
    height: 75vh;
    background: #eee;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.slide.active {
    display: flex;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.slide-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

/* --- 4. INFINITE SCROLLING BAR --- */
.scrolling-bar {
    background: #b33939;
    color: white;
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
}

.scroll-track {
    display: inline-block;
    animation: scrollText 20s linear infinite;
}

.scroll-item {
    display: inline-block;
    padding: 0 30px;
    font-weight: bold;
    text-transform: uppercase;
}

@keyframes scrollText {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- 5. WHY CHOOSE PARAG MASALE --- */
.why-choose {
    background: #fffaf0;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-card img {
    width: 60px;
    margin: 0 auto 15px;
}

/* --- 6. BEST SELLERS (HORIZONTAL SCROLL) --- */
.horizontal-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    scrollbar-width: none;
}

.horizontal-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.product-card-small {
    flex: 0 0 250px;
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s;
}

.product-card-small:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.add-to-cart {
    background: #e67e22;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

/* --- 7. VIDEO SNIPPETS (VERTICAL) --- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.video-card video {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    border-radius: 12px;
}

/* --- 8. ADMIN DASHBOARD STYLES --- */
.admin-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: #f4f4f4;
    border-radius: 8px;
}

.admin-form div {
    margin-bottom: 15px;
}

.admin-form input, .admin-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* --- 9. FOOTER --- */
footer {
    background: #222;
    color: #fff;
    padding: 40px 0;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
