body {
    font-family: 'Times New Roman', serif;
    background-color: #f8f9fa;
    font-style: italic;
    color: #333;
}
.navbar {
    background-color: #000;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}
.navbar-brand img {
    height: 80px;
}
.navbar-nav .nav-link {
    font-size: 1.5rem;
    font-style: italic;
}
.carousel-item img {
    height: 500px;
    object-fit: cover;
    width: 100%;
}
.carousel-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    width: 100%;
}
@media (max-width: 767px) {
    .carousel-image {
        background-image: url('../img/banner_1_movil.jpeg') !important;
    }
}
.carousel-caption {
    background: rgba(0,0,0,0.5);
    border-radius: 10px;
    padding: 10px;
    font-size: 1.3em;
    font-style: italic;
}
.btn-acceder {
    background-color: #ffd700;
    color: #000;
    border: none;
    font-weight: bold;
}
.btn-acceder:hover {
    background-color: #ffed4e;
}
.cart-icon {
    color: #ffd700;
    font-size: 1.5rem;
    font-style: italic;
}
.product-box {
    max-width: 250px;
    max-height: 400px;
    border: 2px solid gold;
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
}
.product-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.product-image:hover {
    transform: scale(1.05);
}
.product-description {
    text-align: center;
    margin: 6px 0;
    font-size: 1rem;
    font-weight: bold;
}
.product-price {
    text-align: center;
    margin: 2px 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: #f29652;
}
.btn-gold {
    background-color: #f2a90b;
    color: #221801;
    border: none;
    margin: 5px 0;
    transition: all 0.3s;
    width: 100%;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.5);
}
.btn-comprar {
    background-color: black;
    color: white;
    border: none;
    margin: 5px 0;
    transition: all 0.3s;
    width: 100%;
}
.btn-comprar:hover {
    background-color: #c6c4c0;
    color: black;
}
.btn-gold:hover {
    background-color: #ffed4e;
    transform: scale(1.05);
}
.footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}
.modal-description {
    white-space: pre-line;
    font-size: 0.9rem;
    line-height: 1.5;
}.payment-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    font-size: 25px;
}
@media (max-width: 576px) {
    .payment-icon {
        width: 18px;
        height: 18px;
        font-size: 18px;
    }
}