.button {
    background: linear-gradient(45deg, #C6A75E, #E5C97A);
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

.button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(198,167,94,0.4);
}
.price {
    font-size: 18px;
    font-weight: bold;
}

.old-price {
    text-decoration: line-through;
    color: gray;
}

.discount-badge {
    background: #C6A75E;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
}
@media (max-width: 768px) {

    .product-card {
        margin-bottom: 20px;
    }

    .button {
        width: 100%;
    }

    h1 {
        font-size: 22px;
    }

}header {
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.8);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}