@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

:root {
    --color-rosa-fondo: #f8b1e0;
    --color-rosa-acento: #C71585;
    --color-dorado: #FFD700;
    --color-texto: #000000;
}

body {
    font-family: 'Playfair Display', serif;
    background-color: var(--color-rosa-fondo);
    color: var(--color-texto);
    overflow-x: hidden;
    padding-bottom: 70px;
}

/* Header */
.header-glamour {
    background-color: rgb(247, 164, 230);
    border-bottom: 2px solid var(--color-rosa-acento);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.navbar-logo {
    height: 100px !important;
    width: auto !important;
}

.navbar-brand {
    padding: 0 !important;
    margin: 0 !important;
}

.navbar {
    padding: 10px 0 !important;
}

.nav-link {
    color: var(--color-texto) !important;
    font-weight: 500;
    transition: color 0.3s, border-bottom 0.3s;
}

.nav-link:hover {
    color: var(--color-rosa-acento) !important;
    border-bottom: 2px solid var(--color-dorado);
}

/* Botones */
.btn-glamour {
    background-color: var(--color-rosa-acento);
    color: white;
    border: 2px solid var(--color-dorado);
    padding: 10px 25px;
    font-weight: bold;
    transition: transform 0.3s, background-color 0.3s;
}

.btn-glamour:hover {
    background-color: #A30065;
    transform: scale(1.05);
    color: white;
}

/* Carrusel */
#heroCarousel img {
    max-height: 80vh;
    object-fit: cover;
}

.carousel-caption {
    display: none !important;
}

.carousel {
    position: relative;
}

.carousel-indicators {
    bottom: -40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 992px) {
    .carousel-indicators {
        bottom: 20px;
    }
}

/* Hero Action Box */
.hero-action-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(199, 21, 133, 0.2);
    margin-top: -50px;
}

.hero-action-box h5 {
    font-size: 2.5rem;
    color: var(--color-rosa-acento);
}

/* Secciones */
.section-padding {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    border-bottom: 3px solid var(--color-dorado);
    display: inline-block;
    padding-bottom: 5px;
    color: var(--color-rosa-acento);
}

/* Tarjetas de Producto */
.card-product {
    border: 1px solid #FFEBEF;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(199, 21, 133, 0.1);
    transition: transform 0.3s;
    background-color: white;
}

.card-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(199, 21, 133, 0.2);
}

.product-image-container {
    overflow: hidden;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.product-image-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}

.card-product:hover img {
    transform: scale(1.05);
}

.price-tag {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-rosa-acento);
}

.add-to-cart {
    background-color: var(--color-dorado);
    color: var(--color-texto);
    border: none;
    font-weight: bold;
}

.add-to-cart:hover {
    background-color: #EBD954;
    color: var(--color-texto);
}

.cart-controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Banner de Cookies */
#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-texto);
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 1050;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

#cookieBanner .btn-cookie {
    background-color: var(--color-dorado);
    color: var(--color-texto);
    border: none;
    margin-left: 10px;
}

#cookieBanner .btn-cookie-reject {
    background-color: #6c757d;
    color: white;
}

/* Modales */
.modal-content {
    border: 2px solid var(--color-dorado);
    border-radius: 15px;
}

.modal-header {
    border-radius: 13px 13px 0 0;
}

#submitReservationBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-reservation {
    transition: all 0.3s ease;
}

.btn-reservation:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(199, 21, 133, 0.3);
}

/* PayPal */
#paypal-button-container {
    margin-top: 20px;
}

#paypal-checkout-button {
    min-height: 48px;
}