body {
    font-family: Poppins, sans-serif;
    margin: 0;
    background: #fafafa;
}

/* NAVBAR */
.navbar {
    display: flex;
    padding: 15px 25px;
    background: white;
    border-bottom: 1px solid #ddd;
    align-items: center;
    gap: 20px;
}

.logo {
    font-size: 26px;
    font-weight: 700;
}
.logo span {
    color: #e6739f;
}

.search {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.cart-icon {
    cursor: pointer;
    font-size: 20px;
    position: relative;
}

#cart-count {
    background: #ff3b6a;
    color: white;
    padding: 3px 7px;
    border-radius: 50%;
    font-size: 12px;
    margin-left: 3px;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: url('https://images.unsplash.com/photo-1523275335684-37898b6baf30?auto=format&fit=crop&w=1500') center/cover;
    color: white;
}
.hero h1 {
    font-size: 40px;
    text-shadow: 0 0 10px black;
}
.hero p {
    font-size: 18px;
    opacity: .9;
}
.btn-primary {
    background: #e6739f;
    border: none;
    padding: 12px 20px;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 15px;
    font-weight: 600;
    transition: 0.2s;
}
.btn-primary:hover {
    background: #d85c8b;
}

.btn-secondary {
    padding: 10px 18px;
    border: 1px solid #555;
    background: white;
    cursor: pointer;
    border-radius: 7px;
}

/* PRODUCT GRID */
.product-section {
    padding: 30px;
}
.product-section h2 {
    text-align: center;
    margin-bottom: 15px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
}
.product-card {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 0 6px #0001;
    cursor: pointer;
    transition: .2s;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px #0002;
}
.product-card img {
    width: 100%;
    border-radius: 10px;
}
.price {
    color: #e6739f;
    font-weight: 600;
    margin: 5px 0;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,.6);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background:white;
    padding:20px;
    width:350px;
    border-radius: 12px;
    text-align:center;
}
.modal-img {
    width:100%;
    border-radius: 10px;
}
.close {
    float:right;
    font-size:28px;
    cursor:pointer;
}

/* CART SIDEBAR */
.cart-sidebar {
    width: 350px;
    background:white;
    height: 100%;
    position: fixed;
    top: 0;
    right: -400px;
    transition: .3s;
    padding: 20px;
    box-shadow: -5px 0 10px #0003;
}
.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}
.total {
    font-size: 20px;
    font-weight: 700;
}
