/* --- CSS STYLES START --- */
:root {
    --primary-pink: #FE2C55;
    --primary-cyan: #25F4EE;
    --dark-bg: #121212;
    --card-bg: #1E1E1E;
    --text-main: #FFFFFF;
    --text-muted: #AAAAAA;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

body { background-color: var(--dark-bg); color: var(--text-main); line-height: 1.6; }

/* Header */
header { background-color: rgba(18, 18, 18, 0.95); padding: 1rem 5%; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; position: sticky; top: 0; z-index: 1000; }
.logo { font-size: 1.5rem; font-weight: bold; color: var(--text-main); text-decoration: none; display: flex; align-items: center; gap: 10px; }
.logo span { color: var(--primary-pink); }
nav ul { list-style: none; display: flex; gap: 20px; }
nav a { color: var(--text-main); text-decoration: none; font-weight: 500; transition: 0.3s; }
nav a:hover { color: var(--primary-cyan); }

/* Mobile Menu */
.menu-btn { display: none; font-size: 1.5rem; cursor: pointer; }

/* Hero Section */
.hero {
    /* Background Image: Agar image load na ho to gradient dikhega */
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('../images/hero-bg.webp') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}
.hero h1 { font-size: 3rem; margin-bottom: 1rem; }
.hero h1 span { color: var(--primary-cyan); text-shadow: 0 0 10px rgba(37, 244, 238, 0.5); }
.hero p { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin-bottom: 2rem; }
.cta-btn { background-color: var(--primary-pink); color: white; padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: bold; font-size: 1.1rem; transition: 0.3s; }
.cta-btn:hover { background-color: #d61e42; transform: scale(1.05); }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 50px 20px; }

/* Section Title */
.section-title { text-align: center; margin-bottom: 40px; font-size: 2rem; position: relative; }
.section-title::after { content: ''; width: 60px; height: 3px; background: var(--primary-cyan); display: block; margin: 10px auto; }

/* Categories */
.categories { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.cat-card { background-color: var(--card-bg); padding: 20px; border-radius: 15px; text-align: center; width: 150px; cursor: pointer; transition: 0.3s; border: 1px solid #333; }
.cat-card:hover { border-color: var(--primary-cyan); transform: translateY(-5px); }
.cat-img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin-bottom: 10px; }
.cat-name { font-weight: 500; }

/* Product Reviews Grid */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 20px; }
.review-card { background-color: var(--card-bg); border-radius: 15px; overflow: hidden; transition: 0.3s; border: 1px solid #333; display: flex; flex-direction: column; }
.review-card:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
.card-img-container { height: 200px; overflow: hidden; position: relative; }
.card-img { width: 100%; height: 100%; object-fit: cover; transition: 0.3s; }
.review-card:hover .card-img { transform: scale(1.1); }
.badge { position: absolute; top: 10px; right: 10px; background: var(--primary-cyan); color: black; padding: 5px 10px; border-radius: 5px; font-size: 0.8rem; font-weight: bold; }
.card-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.card-title { font-size: 1.2rem; margin-bottom: 10px; }
.stars { color: #FFD700; margin-bottom: 10px; }
.card-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; flex-grow: 1; }
.read-more { background: transparent; border: 1px solid var(--primary-pink); color: var(--primary-pink); padding: 10px; width: 100%; border-radius: 5px; cursor: pointer; transition: 0.3s; text-align: center; text-decoration: none; display: inline-block; }
.read-more:hover { background: var(--primary-pink); color: white; }

/* Footer */
footer { background-color: #000; padding: 40px 20px; text-align: center; margin-top: 50px; border-top: 1px solid #333; }
.footer-links { margin-bottom: 20px; }
.footer-links a { color: var(--text-muted); margin: 0 10px; text-decoration: none; }
.disclaimer { color: #555; font-size: 0.8rem; margin-top: 20px; max-width: 800px; margin-left: auto; margin-right: auto; }

/* Responsive */
@media (max-width: 768px) {
    nav ul { display: none; }
    .menu-btn { display: block; }
    .hero h1 { font-size: 2rem; }
}
/* --- CSS STYLES END --- */