:root {
    --dionisio-purple: #3d0d52;
    --dionisio-gold: #c5a059;
    --dionisio-bg: #f8f5f2;
    --dionisio-text: #2d2d2d;
    --color-success: #10b981;
    --color-danger: #ef4444;
    --color-warning: #f59e0b;
    --color-success-bg: #ecfdf5;
    --color-danger-bg: #fef2f2;
    --color-warning-bg: #fffbeb;
    --color-info-bg: #f5f3ff;
}

body {
    background-color: var(--dionisio-bg);
    color: var(--dionisio-text);
    font-family: 'Inter', sans-serif;
}

/* Tipografía elegante similar al logo */
h1, h2, h3, .font-elegant {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: -0.01em;
}

.bg-dionisio {
    background-color: var(--dionisio-purple);
}

.text-dionisio {
    color: var(--dionisio-purple);
}

.border-dionisio {
    border-color: var(--dionisio-purple);
}

/* Estilo para las tarjetas que evocan naturaleza/lujo */
.card-dionisio {
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(61, 13, 82, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* --- ESTILOS PARA EL TOUR (Driver.js) --- */

.driver-popover {
    background-color: #ffffff !important;
    border-radius: 24px !important;
    border: 1px solid rgba(197, 160, 89, 0.3) !important;
    box-shadow: 0 25px 50px -12px rgba(61, 13, 82, 0.25) !important;
    padding: 25px !important;
    max-width: 300px !important;
}

.driver-popover-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 22px !important;
    color: var(--dionisio-purple) !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
}

.driver-popover-description {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    color: #6b7280 !important;
    line-height: 1.6 !important;
}

.driver-popover-footer {
    margin-top: 20px !important;
}

.driver-popover-next-btn, .driver-popover-prev-btn {
    background-color: var(--dionisio-purple) !important;
    color: white !important;
    border: none !important;
    text-shadow: none !important;
    border-radius: 12px !important;
    padding: 10px 20px !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(61, 13, 82, 0.15) !important;
}

.driver-popover-next-btn:hover {
    background-color: var(--dionisio-gold) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 15px rgba(197, 160, 89, 0.3) !important;
}

.driver-popover-prev-btn {
    background-color: #f3f4f6 !important;
    color: #6b7280 !important;
    box-shadow: none !important;
}

.driver-popover-prev-btn:hover {
    background-color: #e5e7eb !important;
}

.driver-popover-close-btn {
    color: #9ca3af !important;
    text-shadow: none !important;
    transition: color 0.3s ease !important;
}

.driver-popover-close-btn:hover {
    color: var(--dionisio-purple) !important;
}

.driver-popover-progress-text {
    font-size: 10px !important;
    color: #9ca3af !important;
    font-weight: bold !important;
}

.driver-popover-arrow {
    border-color: transparent !important;
}

.driver-popover-arrow-side-top { border-top-color: #ffffff !important; }
.driver-popover-arrow-side-bottom { border-bottom-color: #ffffff !important; }
.driver-popover-arrow-side-left { border-left-color: #ffffff !important; }
.driver-popover-arrow-side-right { border-right-color: #ffffff !important; }

/* --- NOTIFICACIONES (TOASTS) --- */
#notification-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    pointer-events: none;
}

.notification-splash {
    pointer-events: auto;
    min-width: 320px;
    max-width: 400px;
    background: linear-gradient(to bottom right, #1c1917, var(--dionisio-purple), #1c1917);
    padding: 1.5rem;
    border-radius: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(61, 13, 82, 0.4);
    border: 1px solid rgba(197, 160, 89, 0.2);
    display: flex;
    flex-direction: column;
    transform: translateX(120%);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.notification-splash.show {
    transform: translateX(0);
}

.notification-splash::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    z-index: 20;
}

.notification-splash.success::before { background-color: var(--color-success); }
.notification-splash.danger::before { background-color: var(--color-danger); }
.notification-splash.warning::before { background-color: var(--color-warning); }
.notification-splash.info::before { background-color: var(--dionisio-gold); }

.notification-message {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.4;
}

.notification-close {
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.2s;
    padding: 4px;
}

.notification-close:hover {
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
