/* ============================================================================
   SISTEMA DE MODALES - ESTILOS BASE
   ============================================================================ */

/* --- Login & Register Modal --- */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
    background-color: rgba(0, 0, 0, 0.6);
    overflow: auto;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

/* Asegúrate de que estas clases estén en tu CSS */
.modal.visible,
.modal.active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.modal:not(.visible):not(.active) {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.modal-content {
    background-color: #fefefe;
    padding: 0;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    position: relative;
    animation: fadeInScale 0.3s ease-out;
    margin: auto;
    display: flex;
    flex-direction: column;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: var(--primary-color);
    text-decoration: none;
}

.auth-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

.auth-form.hidden {
    display: none;
}

.auth-form p {
    text-align: center;
    margin-top: 20px;
}

.auth-form a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.auth-form a:hover {
    text-decoration: underline;
}

.error-message {
    color: #d9534f;
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
}

.is-hidden {
    display: none !important;
}


/* ============================================================================
   SISTEMA DE CHECKOUT MEJORADO - MODALES ESPECÍFICOS
   ============================================================================ */

/* Modal base */
.address-modal {
    max-width: 800px;
}

.checkout-modal {
    max-width: 800px;
}

.payment-modal {
    max-width: 700px;
}

.order-modal {
    max-width: 800px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-header h2,
.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.close-button,
.close-modal,
.close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.close-button:hover,
.close-modal:hover,
.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
    flex: 1;
    overflow-y: auto;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 2px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    background: #f7fafc;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}


/* 🔥 MODAL DE AUTENTICACIÓN (Google Login) */
#authModal .modal-content {
    background-color: #7fb069;/*4285F4*/
    color: white;
    padding: 30px;
    max-width: 450px;
}

#authModal .auth-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: white;
}

#authModal .close-button {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

#confirm-modal h3 {
    margin: 0 0 1rem 0;
    color: var(--primary-green);
}

#confirm-modal .modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-end;
}


/* Lista de direcciones */
.address-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.address-card {
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition);
    cursor: pointer;
    background: white;
}

.address-card:hover {
    border-color: var(--accent-green);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.address-card.default {
    border-color: var(--accent-green);
    background: linear-gradient(to right, #f0fdf4, white);
}

.address-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.address-radio {
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--accent-green);
}

.address-info {
    flex: 1;
}

.address-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: var(--primary-green);
}

.badge-default {
    display: inline-block;
    background: var(--accent-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.address-details {
    margin-left: 36px;
    color: #4a5568;
    line-height: 1.8;
}

.address-details p {
    margin: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.address-details i {
    color: var(--accent-green);
    width: 16px;
}

.address-actions {
    margin-top: 1rem;
    margin-left: 36px;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.btn-edit {
    background: #3182ce;
    color: white;
}

.btn-edit:hover {
    background: #2c5282;
}

.btn-set-default {
    background: #f7fafc;
    color: var(--accent-green);
    border: 1px solid var(--accent-green);
}

.btn-set-default:hover {
    background: var(--accent-green);
    color: white;
}

.btn-delete {
    background: #fc8181;
    color: white;
}

.btn-delete:hover {
    background: #f56565;
}

.btn-add-address {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.no-addresses {
    text-align: center;
    padding: 3rem 2rem;
    color: #718096;
}

.no-addresses i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: #cbd5e0;
}

/* Formulario de dirección */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(127, 176, 105, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Resumen de dirección seleccionada */
.selected-address-summary {
    background: linear-gradient(135deg, #f0fdf4, #e6f7ee);
    border: 2px solid var(--accent-green);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.address-summary h4 {
    margin: 0 0 1rem 0;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.address-summary p {
    margin: 0.5rem 0;
    color: #2d3748;
    line-height: 1.6;
}

.btn-change-address {
    margin-top: 1rem;
    background: white;
    color: var(--accent-green);
    border: 1px solid var(--accent-green);
}

.btn-change-address:hover {
    background: var(--accent-green);
    color: white;
}

/* Resumen del pedido */
.order-summary-section {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.order-summary h4 {
    margin: 0 0 1rem 0;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-items {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}


.order-items span {
    color: var(--primary-green);
}

.order-total {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 2px solid #cbd5e0;
    font-size: 1.25rem;
    color: var(--primary-green);
    margin-top: 0.5rem;
}

/* Línea de subtotal y descuento en checkout */
.order-subtotal,
.order-discount {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.95rem;
}

.order-subtotal {
    color: #4a5568;
}

.order-discount {
    background: linear-gradient(to right, #f0fdf4, #dcfce7);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    margin: 0.5rem 0;
    border: 1px solid #48bb78;
}

.order-discount span:first-child {
    color: #2d5016;
}

/* Métodos de pago */
.payment-methods {
    margin-bottom: 2rem;
}

.payment-methods h4 {
    margin: 0 0 1.5rem 0;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-method-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.payment-method-btn:hover {
    border-color: var(--accent-green);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.payment-icon {
    font-size: 2.5rem;
    color: var(--accent-green);
    min-width: 60px;
    text-align: center;
}

.paypal-btn .payment-icon {
    color: #0070ba;
}

.card-btn .payment-icon {
    color: #4a5568;
}

.payment-info {
    flex: 1;
}

.payment-info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
}

.payment-info p {
    margin: 0;
    color: #718096;
    font-size: 0.9rem;
}

.payment-method-btn > .fa-chevron-right {
    color: #cbd5e0;
    font-size: 1.25rem;
}

.secure-payment-notice {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f0fdf4, white);
    border-radius: var(--border-radius);
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
}


/* ============================================================================
   SISTEMA DE TOAST NOTIFICATIONS
   ============================================================================ */

.toast-container {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 11000; /* Por encima de modales y otros elementos */
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.4);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 300px;
    max-width: 400px;
    animation: slideInRight 0.3s ease-out;
    pointer-events: auto;
    font-weight: 500;
}

.toast.hiding {
    animation: slideOutRight 0.3s ease-out forwards;
}

.toast i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
}

/* Variantes de toast por tipo */
.toast-success {
    background: linear-gradient(135deg, #48bb78, #38a169);
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.4);
}

.toast-error {
    background: linear-gradient(135deg, #f56565, #e53e3e);
    box-shadow: 0 4px 12px rgba(245, 101, 101, 0.4);
}

.toast-warning {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    box-shadow: 0 4px 12px rgba(237, 137, 54, 0.4);
}

.toast-info {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.4);
}

/* Animaciones */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* ============================================================================
   CART MODAL STYLES
   ============================================================================ */

/* Detalles del item en el carrito */
.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.item-price {
    color: var(--light-text);
}

.item-total {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1rem;
}

/* Acciones del carrito */
.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-quantity-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: var(--light-bg);
    color: var(--primary-green);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.8rem;
}

.cart-quantity-btn:hover {
    background: var(--accent-green);
    color: white;
    transform: scale(1.1);
}

.cart-quantity {
    font-weight: 600;
    color: var(--dark-text);
    min-width: 30px;
    text-align: center;
}

.remove-from-cart-btn {
    background: #fc8181;
    color: white;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

.remove-from-cart-btn:hover {
    background: #f56565;
    transform: translateY(-1px);
}

/* Estilos mejorados para items del checkout */
.order-items li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
    gap: 1rem;
}

.order-items li:last-child {
    border-bottom: none;
}

.checkout-item-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.checkout-item-name {
    color: var(--dark-text);
    font-weight: 500;
    flex: 1;
}

.checkout-item-quantity {
    background: var(--light-bg);
    color: var(--primary-green);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.checkout-item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.checkout-unit-price {
    color: var(--light-text);
    font-size: 0.875rem;
}

.checkout-total-price {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.1rem;
}

/* FIX PARA OVERFLOW EN MODALES CON MUCHO CONTENIDO */

.modal-body {
    flex: 1;
    overflow-y: auto;
}

/* ASEGURAR QUE EL MODAL NO SE DESPLACE CON EL SCROLL */
body.modal-open {
    overflow: hidden;
}

/* Aplicar clase cuando modal está abierto */
.modal.visible ~ body,
.modal.active ~ body {
    overflow: hidden;
}


/* Footer dentro del formulario de direcciones */
.form-footer {
    padding: 1.5rem 0 0 0;
    margin-top: 1rem;
    border-top: 2px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    background: transparent;
}

.form-footer .btn {
    padding: 0.75rem 1.5rem;
}

/* Ajuste para que el modal-body no tenga padding inferior excesivo 
   cuando el form tiene su propio footer */
#checkoutModal .modal-body {
    padding-bottom: 1rem;
}


/* Estilos específicos para el modal de pedidos */
#ordersModal .modal-content {
    max-width: 600px;
}

#ordersModal .modal-body {
    max-height: 60vh;
    overflow-y: auto;
}

#ordersList {
    max-height: 50vh;
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Tarjetas de pedidos */
.order-card {
    background: #ffffff;
    border: 1px solid #cbd5e0;
    color: var(--dark-text);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.order-card strong {
    color: var(--primary-green);
}

.order-card span {
    color: var(--dark-text);
}

/* ============================================================================
   IMAGE LIGHTBOX - Zoom de imágenes del modal de detalle de producto
   ============================================================================ */

.image-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.image-lightbox.show {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    cursor: pointer;
}

.lightbox-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 95vw;
    max-width: 1100px;
    max-height: 95vh;
    gap: 1rem;
}

/* Imagen principal */
.lightbox-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: calc(95vh - 80px);
}

.lightbox-main-img {
    display: block;
    max-width: 90vw;
    max-height: calc(95vh - 100px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
    transition: opacity 0.2s ease;
}

/* Botón cerrar - arriba derecha */
.lightbox-close {
    position: fixed;
    top: 1.2rem;
    right: 1.2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 10002;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
}

/* Contador badge */
.lightbox-counter-badge {
    position: fixed;
    top: 1.3rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.25);
    letter-spacing: 0.05em;
    z-index: 10002;
}

/* Flechas de navegación */
.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 10002;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-50%) scale(1.08);
}

.lightbox-prev {
    left: 1.2rem;
}

.lightbox-next {
    right: 1.2rem;
}

/* Dots indicadores */
.lightbox-dots {
    display: flex;
    gap: 0.55rem;
    align-items: center;
    justify-content: center;
    padding-bottom: 0.5rem;
}

.lightbox-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.lightbox-dot.active {
    background: #fff;
    transform: scale(1.3);
    border-color: #fff;
}

.lightbox-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.65);
}

/* Indicador de zoom en imágenes de galería */
.gallery-single,
.gallery-main {
    position: relative;
}

.gallery-zoom-hint {
    position: absolute;
    bottom: 0.6rem;
    right: 0.6rem;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.gallery-single:hover .gallery-zoom-hint,
.gallery-main:hover .gallery-zoom-hint {
    opacity: 1;
}

.gallery-img-clickable {
    cursor: zoom-in;
}

/* Responsive - móvil */
@media (max-width: 768px) {
    .lightbox-nav {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }

    .lightbox-close {
        top: 0.8rem;
        right: 0.8rem;
        width: 40px;
        height: 40px;
    }
}


/* ============================================================================
   VIP LEVEL ACTIVO - Indicador visual del nivel actual del usuario
   ============================================================================ */

/* Clase base para el nivel activo - anula el borde fino por defecto */
.vip-level.vip-active {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

/* Borde grueso con color de cada nivel */
.vip-level.bronze.vip-active {
    border: 3px solid #cd7f32;
    box-shadow: 0 12px 35px rgba(205, 127, 50, 0.3), 0 0 20px rgba(205, 127, 50, 0.15);
}

.vip-level.silver.vip-active {
    border: 3px solid #c0c0c0;
    box-shadow: 0 12px 35px rgba(192, 192, 192, 0.3), 0 0 20px rgba(192, 192, 192, 0.15);
}

.vip-level.gold.vip-active {
    border: 3px solid #ffd700;
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.15);
}

.vip-level.platinum.vip-active {
    border: 3px solid #e5e4e2;
    box-shadow: 0 12px 35px rgba(229, 228, 226, 0.3), 0 0 20px rgba(229, 228, 226, 0.15);
}


/* ============================================================================
   VIP STONE PROGRESS - Indicador de puntos para llegar a Bronze
   ============================================================================ */

.vip-stone-progress {
    margin: 1.5rem auto 0;
    max-width: 600px;
    animation: fadeInScale 0.4s ease;
}

.stone-progress-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.2), rgba(75, 85, 99, 0.25));
    border: 2px dashed rgba(205, 127, 50, 0.5);
    border-radius: 14px;
    padding: 1.1rem 1.5rem;
    backdrop-filter: blur(8px);
}

.stone-progress-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.stone-progress-text {
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.stone-progress-text strong {
    color: #cd7f32;
    font-size: 1.15rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .stone-progress-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.6rem;
        padding: 1rem;
    }
}