* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f9f9f9;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* ============ HEADER ============ */
header {
    background: #1a1a2e;
    color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    float: left;
}

.logo span {
    color: #e94560;
}

nav {
    float: right;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 18px;
    display: block;
    transition: 0.3s;
}

nav ul li a:hover,
.active {
    background: #e94560;
    border-radius: 5px;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    float: right;
}

/* ============ HERO ============ */
.hero {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.btn {
    background: #e94560;
    color: #fff;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #c73652;
    transform: scale(1.05);
}

/* ============ FEATURES ============ */
.features {
    padding: 60px 0;
    background: #fff;
}

.features .container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    min-width: 200px;
    padding: 30px;
    background: #f4f4f9;
    border-radius: 10px;
    text-align: center;
}

/* ============ PAGE CONTENT ============ */
.page-content {
    padding: 60px 0;
    background: #fff;
    min-height: 400px;
}

.page-content h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #1a1a2e;
}

/* ============ GALLERY ============ */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    max-width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

/* ============ WHATSAPP BUTTON ============ */
.whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn img {
    margin-right: 10px;
}

/* ============ FOOTER ============ */
footer {
    background: #1a1a2e;
    color: #aaa;
    text-align: center;
    padding: 30px 0;
    margin-top: 30px;
}

/* ============ CATEGORIES & PRODUCTS ============ */
.categories-section,
.products-section {
    padding: 40px 0;
    background: #f9f9f9;
}

.categories-section h2,
.products-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.category-grid,
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* ============ CATEGORY CARD ============ */
.category-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.category-card a {
    text-decoration: none;
    color: #1a1a2e;
}

.category-card h3 {
    font-size: 18px;
}

/* ============ PRODUCT CARD ============ */
.product-card {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-card a {
    text-decoration: none;
    color: #333;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.product-card h4 {
    margin: 10px 0 5px 0;
    font-size: 16px;
}

.product-card .price {
    font-weight: bold;
    color: #e94560;
    font-size: 18px;
    margin: 10px 0;
}

.product-card .stock {
    font-size: 14px;
    color: #777;
}

/* ============ NO IMAGE ============ */
.no-image {
    background: #f0f0f0;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 50px;
    color: #999;
}

/* ============ PRODUCT DETAIL ============ */
.product-detail {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.product-image {
    flex: 1;
    min-width: 300px;
}

.product-image img {
    width: 100%;
    border-radius: 10px;
}

.product-image .no-image {
    height: 300px;
    font-size: 80px;
}

.product-info {
    flex: 2;
}

.product-info .price {
    font-size: 28px;
    color: #e94560;
    font-weight: bold;
}

.product-info .description {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
}

.product-info .description h3 {
    margin-bottom: 10px;
    color: #1a1a2e;
}

/* ============ SUB CATEGORIES ============ */
.sub-categories {
    margin: 30px 0;
}

.sub-categories h3 {
    text-align: center;
    margin-bottom: 15px;
    color: #1a1a2e;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #1a1a2e;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 10px 0;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        text-align: center;
    }

    .features .container {
        flex-direction: column;
    }

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

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

    .product-detail {
        flex-direction: column;
    }

    .product-image {
        min-width: unset;
    }

    .category-grid,
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .whatsapp-btn {
        font-size: 18px;
        padding: 14px 25px;
    }

    .product-card img {
        height: 150px;
    }

    .no-image {
        height: 150px;
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 22px;
    }

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

    .category-grid,
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    }

    .product-card img {
        height: 120px;
    }

    .no-image {
        height: 120px;
        font-size: 30px;
    }

    .container {
        padding: 0 10px;
    }

    .btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .whatsapp-btn {
        font-size: 16px;
        padding: 12px 20px;
    }
}