

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}


.logo {
    width: 220px;
    margin-bottom: 15px;
}


header {
    text-align: center;
    padding: 50px 20px;
    border-bottom: 1px solid #d4af37;
}

header p {
    margin-top: 10px;
    color: #aaa;
    font-style: italic;
    margin-bottom: 25px;
}


.category-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.category-bar a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 8px 15px;
    border: 1px solid transparent;
    transition: 0.3s;
}

.category-bar a:hover,
.category-bar a.active {
    color: #d4af37;
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
}


.section-title {
    text-align: center;
    font-size: 2rem;
    margin: 60px 0 30px;
    color: #d4af37;
    letter-spacing: 2px;
}


.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}


.perfume-card {
    background: #151515;
    border: 1px solid #222;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.perfume-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
}


.perfume-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}


.info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.info h3 {
    color: #d4af37;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.info p {
    color: #bbb;
    font-size: 0.9rem;
    margin-bottom: 15px;
    min-height: 40px;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 15px 0;
}


.btn-buy {
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 12px;
    width: 100%;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 6px;
    transition: 0.3s;
    font-size: 0.9rem;
}

.btn-buy:hover {
    background: #d4af37;
    color: #000;
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid #222;
    color: #666;
    margin-top: 60px;
}


.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
    z-index: 999;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.8);
}


@media (max-width: 900px) {
    .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .container {
        grid-template-columns: 1fr;
    }

    header {
        padding: 30px 15px;
    }

    .section-title {
        font-size: 1.5rem;
    }
}
