/* 1. GLOBAL SETTINGS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f9f9f9; /* Halka sa grey background */
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    flex: 1; /* Footer ko neechay dhakelne ke liye */
}

/* 2. NAVBAR (Top Bar) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #000;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #777;
}

/* 3. HERO SECTION (Banner) */
.hero {
    background: #e0e0e0; /* Agar image na ho to grey */
    /* Niche wali line uncomment karein agar background image lagani ho */
    /* background-image: url('../images/banner.jpg'); */ 
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

/* 4. BUTTONS */
.btn-primary {
    background-color: #000;
    color: #fff;
    padding: 12px 30px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid #000;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background-color: transparent;
    color: #000;
}

/* 5. PRODUCTS GRID (Jo abhi plain dikh raha hai) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Auto adjust columns */
    gap: 30px;
    padding-bottom: 50px;
}

.product-card {
    background: white;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-5px); /* Upar uthay ga */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-card .price {
    font-size: 16px;
    color: #777;
    display: block;
    margin-bottom: 15px;
}

/* 6. FOOTER */
.footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: auto;
}

.socials a {
    color: white;
    margin: 0 10px;
    font-size: 20px;
}

/* 7. CART TABLE DESIGN */
table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

th {
    background: #f4f4f4;
    font-weight: 600;
}