
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: absolute;
    width: 100%;
    z-index: 10;
    background: rgba(0, 0, 0, 0.1);
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.nav-icons {
    color: white;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 10%;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.btn-shop, .btn-more {
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    margin-right: 10px;
}

.btn-shop { background-color: white; color: black; }
.btn-more { background-color: transparent; color: white; border: 2px solid white; }


.categories {
    display: flex;
    gap: 20px;
    padding: 50px 5%;
    flex-wrap: wrap;
}

.cat-card {
    flex: 1;
    min-width: 300px;
    height: 450px;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    color: white;
}

.cat-card button {
    margin-top: 15px;
    padding: 10px 20px;
    background: white;
    border: none;
    cursor: pointer;
}


.products {
    text-align: center;
    padding: 50px 5%;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.product-item img {
    width: 100%;
    border-radius: 5px;
}


.special-edition {
    height: 400px;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding: 0 10%;
    color: white;
}


.features {
    display: flex;
    justify-content: space-around;
    padding: 60px 5%;
    background: #f8f9fa;
    text-align: center;
    flex-wrap: wrap;
}

.feature-item img {
    width: 50px;
    margin-bottom: 10px;
}


footer {
    padding: 50px 5%;
    border-top: 1px solid #ddd;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-col ul {
    list-style: none;
    margin-top: 10px;
}


@media (max-width: 768px) {
    .navbar { flex-direction: column; }
    .nav-links { margin: 20px 0; }
    .hero-content h1 { font-size: 2.5rem; }
}