* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

body { background-color: #fce4ec; padding: 0; }

#wrapper { width: 100%; max-width: 1200px; margin: 0 auto; background-color: white; min-height: 100vh; }
.header-nav {
    background-color: #f06292; 
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#main-menu {
    list-style: none;
    display: flex;
    justify-content: center; 
}

#main-menu li a {
    display: block;
    padding: 15px 30px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

#main-menu li a:hover {
    background-color: oldlace;
    color: #f06292;
}
.container { padding: 20px; }
.title-page { margin-bottom: 20px; color: #ad1457; text-align: center; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); 
    gap: 20px;
}

.card {
    border: 1px solid #f8bbd0;
    border-radius: 10px;
    padding: 15px;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.card:hover { transform: translateY(-5px); border-color: #f06292; }

.image-box { position: relative; text-align: center; margin-bottom: 10px; }
.image-box img { max-width: 100%; height: 200px; object-fit: contain; }

.badge {
    position: absolute;
    top: 5px;
    left: 5px;
    padding: 3px 8px;
    font-size: 11px;
    border-radius: 5px;
    font-weight: bold;
}
.yellow { background-color: #ffeb3b; color: #333; }

.name { font-size: 16px; margin-bottom: 8px; height: 40px; overflow: hidden; }
.price { color: #d32f2f; font-weight: bold; font-size: 18px; margin-bottom: 8px; }
.rating { font-size: 13px; color: #757575; margin-bottom: 8px; }
.promo, .promo-text { font-size: 12px; color: #2e7d32; font-style: italic; }
.footer {
    background-color: #424242;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}