body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    color: #333;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: #c2185b;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

/* HERO SECTION */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: url('https://i.ibb.co/BTJmRpd/bg.jpg') center/cover no-repeat;
    color: white;
}

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

.btn {
    display: inline-block;
    padding: 10px 25px;
    background: #c2185b;
    color: white;
    border-radius: 4px;
    margin-top: 15px;
    text-decoration: none;
    font-weight: 600;
}

/* PRODUCT SECTION */
.product-section {
    padding: 60px 40px;
    text-align: center;
}

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

.product-card {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    border-radius: 8px;
}

.price {
    color: #c2185b;
    font-size: 20px;
    font-weight: bold;
}

/* ABOUT */
.about-section {
    padding: 60px 40px;
    text-align: center;
    background: #fff;
}

/* CONTACT */
.contact-section {
    padding: 60px 40px;
    text-align: center;
    background: #fafafa;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 15px;
    background: #121212;
    color: white;
}
