/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(44, 40, 42, 0.774);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    font-family: harrington;
    font-weight: bolder;
    color: white;
}

.logo img {
    height: 35px;
    margin-right: 10px;
    border-radius: 8px;
}

.logo span {
    font-size: 35px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
}

/* Navbar links */
.nav-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-links a,
.nav-links button {
    background: transparent;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    margin-right: 10px;
}

.nav-links a:hover,
.nav-links button:hover {
    color: pink;
}

/* Popup Styling */
.popup {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.popup.show {
    display: flex;
}

.popup-content {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    width: 300px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.popup-content h2 {
    margin-bottom: 10px;
    color: #e91e63;
}

.popup-content p {
    font-size: 16px;
    margin-top: 8px;
}

.popup-content a {
    color: #e91e63;
    text-decoration: none;
    font-weight: bold;
}

.close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #333;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url("Untitled design.png") no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.hero-text h2 {
    font-size: 50px;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-text p {
    font-size: 20px;
    margin-top: 12px;
    color: #ffffff;
}

/* Products Section */
.products {
    padding: 70px 40px;
    text-align: center;
}

.products h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #e91e63;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.product-card h3 {
    font-size: 20px;
    margin: 12px 0 6px;
    color: #333;
}

.product-card p {
    font-size: 16px;
    font-weight: bold;
    color: #e91e63;
}

/* Footer */
footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 18px 0;
    font-size: 14px;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        /* keep logo and links in row */
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        flex-wrap: wrap;
    }

    .logo span {
        font-size: 20px;
    }

    .nav-links {
        flex-direction: row;
        /* keep links in row */
        align-items: center;
        gap: 12px;
        margin-top: 0;
        flex-wrap: wrap;
    }

    .nav-links a,
    .nav-links button {
        font-size: 14px;
        margin-right: 10px;
    }

    .hero-text h2 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
}