html {
    scroll-behavior: smooth;
}
* {
    transition: background 0.3s ease, color 0.3s ease;
}
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #F8F8F8;
    color: #111;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    color: #111;
}

.nav-icons a {
    margin-left: 15px;
    text-decoration: none;
    color: #111;
    font-size: 16px;
}

/* HERO */

.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('../assets/images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 120px 0;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    font-weight: 600;
}

.hero p {
    margin-top: 15px;
    color: #eee;
    font-size: 16px;
}

.hero-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 35px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #111;
    color: #fff;
}

/* PRODUCT GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}



/* FOOTER */
.footer {
    background: #111;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

/* DESKTOP */
@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .hero h1 {
        font-size: 48px;
    }
}
    
/* PRODUCT CARD UPGRADE */

.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    transition: 0.3s ease;
   box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.product-image {
    width: 100%;
    height: 180px;
    background: #eee;
    border-radius: 6px;
    position: relative;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}
.discount-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #6B2E2E;
    color: #fff;
    font-size: 11px;
    padding: 4px 6px;
    border-radius: 3px;
}

.product-card h3 {
    font-size: 14px;
    margin-top: 10px;
    font-weight: 500;
    min-height: 38px;
}

.price-wrapper {
    margin-top: 6px;
}

.mrp {
    text-decoration: line-through;
    font-size: 12px;
    color: #888;
    margin-right: 5px;
}

.sale-price {
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

.product-detail {
    display:flex;
    flex-direction:column;
    gap:30px;
}

.product-gallery {
    width:100%;
}

.main-image {
    width:100%;
    border-radius:8px;
}

.thumbnail-row {
    display:flex;
    gap:10px;
    margin-top:10px;
}

.thumb {
    width:60px;
    height:60px;
    object-fit:cover;
    border-radius:6px;
    cursor:pointer;
    background:#eee;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.video-thumb {
    background:#111;
    color:#fff;
}

.product-info {
    width:100%;
}

.price-section {
    margin:15px 0;
}


.discount {
    color:#6B2E2E;
    font-weight:600;
}

.sale-price-large {
    font-size:22px;
    font-weight:600;
    margin-top:5px;
}

.buy-btn {
    background:#111;
    color:#fff;
    padding:12px 20px;
    border:none;
    border-radius:8px;
    cursor:pointer;
    width:100%;
    margin-top:20px;
    transition:0.3s ease;
}

.buy-btn:hover {
    background:#6B2E2E;
}
.trust-badges {
    margin-top:20px;
    font-size:14px;
    color:#555;
}

@media(min-width:768px){
    .product-detail {
        flex-direction:row;
        gap:50px;
    }

    .product-gallery, .product-info {
        width:50%;
    }
}
/* ================= CATEGORY SECTION ================= */

.category-section {
    padding: 80px 0;
    background: #F8F8F8;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #6B2E2E;
    display: block;
    margin: 10px auto 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 25px;
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
}

.category-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: 0.4s ease;
}

.category-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
}

.category-overlay h3 {
    margin-bottom: 5px;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);

}
/* ================= TRUST SECTION ================= */

.trust-section {
    background: #fff;
    padding: 60px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 30px;
    text-align: center;
}

.trust-grid div strong {
    display: block;
    margin-bottom: 5px;
}
/* ================= NEWSLETTER ================= */

.newsletter-section {
    background: #111;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.newsletter-form {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 12px;
    width: 280px;
    border: none;
    border-radius: 4px;
}

.newsletter-form button {
    padding: 12px 25px;
    background: #fff;
    color: #111;
    border: none;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
}
section {
    margin-top: 80px;
}
@media(max-width:768px){
    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 28px;
    }
}
.newsletter-form button:hover {
    background:#6B2E2E;
    color:#fff;
}

/* ================= SHOP PAGE ================= */

.shop-container {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    padding: 60px 0;
}

.shop-sidebar {
    background:#fff;
    padding:20px;
    border-radius:12px;
    height: fit-content;
    box-shadow:0 6px 20px rgba(0,0,0,0.04);
}

.filter-group {
    margin-bottom:25px;
}

.filter-group h4 {
    margin-bottom:10px;
}

.filter-btn {
    width:100%;
    padding:10px;
    background:#111;
    color:#fff;
    border:none;
    border-radius:6px;
    cursor:pointer;
}

.shop-topbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 25px;
}

.shop-topbar select {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.shop-products {
    min-height: 60vh;
}

.no-products {
    background: #fff;
    padding: 60px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
    font-size: 16px;
}

/* MOBILE */
@media(max-width:768px){
    .shop-container {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        margin-bottom:20px;
    }

    .product-grid {
        grid-template-columns: repeat(2,1fr);
    }
}
