.rozo-sessions-section {
    padding: 3rem 1.5rem;
}

.rozo-header {
    max-width: 1000px;
    margin: 0 auto 100px;
}

.rozo-header h1 {
    font-family: 'EB Garamond', serif;
}

.rozo-content h2 {
    font-family: 'EB Garamond', serif;
}

.rozo-content {
    display: grid;
    grid-template-columns: 1fr 410px;
    gap: 60px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto 100px;
    width: 100%;
}

.rozo-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.rozo-details {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    width: 100%;
    margin-bottom: 16px;
    color: #555;
    font-size: 14px;
}

.rozo-detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.rozo-detail-sep {
    width: 1px;
    height: 16px;
    background: #AC9C8D;
    margin: 0 12px;
}

.rozo-precio-destacado {
    display: inline-block;
    background: #E8E1D9;
    color: #443931;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 16px;
    width: 100%;
    text-align: left;
}

.rozo-cupos {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border: 1px solid #e2ded9;
    border-radius: 8px;
    font-size: 14px;
    color: #555;
    background: #faf8f6;
    margin-bottom: 20px;
    width: 100%;
}

.rozo-cta-row {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

.rozo-select-wrapper {
    flex: 0 0 260px;
    margin-bottom: 0;
}

.rozo-select {
    width: 100%;
    height: 100%;
    padding: 0 40px 0 16px;
    border: 1px solid #ddd;
    border-radius: 500px;
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.rozo-add-btn {
    flex: 1;
    padding: 14px;
    background: #AC9C8D;
    color: #fff;
    border: none;
    border-radius: 500px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s;
}

.rozo-add-btn:hover {
    background-color: #807163;
    transform: translateY(-2px);
}

/* --- Hero --- */
.rozo-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #999;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 80px;
}

.rozo-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.rozo-hero-content {
    position: relative;
    z-index: 2;
    text-align: right;
    color: #fff;
    max-width: 600px;
    padding: 0 1.5rem;
    margin-right: calc((100% - 1200px) / 2 + 1.5rem);
}

.rozo-hero-content h2 {
    font-family: 'Open Sans', serif;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* --- Calendario --- */
.rozo-calendar {
    background: #fff;
    border-radius: 14px;
    padding: 10px 15px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rozo-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    padding: 10px 5px;
}

.rozo-calendar-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.rozo-calendar-table th,
.rozo-calendar-table td {
    text-align: center;
    padding: 8px 0;
    width: 14.28%;
}

.rozo-calendar-table th {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.rozo-calendar-table td {
    color: #ccc;
    font-size: 14px;
}

.rozo-day-active {
    color: #333;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 10px;
    background: rgba(172, 156, 141, 0.15);
    transition: background .15s;
    display: inline-block;
    font-weight: 500;
}

.rozo-day-active:hover {
    background: rgba(172, 156, 141, 0.3);
}

.rozo-day-active.selected {
    background: #AC9C8D;
    color: #fff;
}

.rozo-cal-nav {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #AC9C8D;
    padding: 4px 10px;
    border-radius: 6px;
    transition: background .15s;
}

.rozo-cal-nav:hover {
    background: rgba(172, 156, 141, 0.15);
}

/* --- Tarjeta preview (imagen + título + descripción dinámicos) --- */
.rozo-preview {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    align-items: start;
    margin-bottom: 24px;
}

.rozo-preview-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
}

.rozo-preview-text h2 {
    margin-bottom: 10px;
}

/* --- Lista de sesiones seleccionadas --- */
.rozo-selected-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    max-height: 510px;
    overflow-y: auto;
}

.rozo-selected-empty {
    color: #999;
    font-size: 14px;
    margin: 0;
}

.rozo-selected-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 24px;
    padding: 16px 18px;
    background: #faf8f6;
    border: 1px solid #e2ded9;
    border-radius: 12px;
    margin-bottom: 12px;
}

.rozo-selected-item:last-child {
    margin-bottom: 0;
}

.rozo-selected-item-nombre-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rozo-selected-item-nombre {
    font-weight: 600;
    font-size: 15px;
    color: #443931;
}

.rozo-selected-item-fecha {
    font-size: 12px;
    color: #888;
}

.rozo-selected-item-cupos {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rozo-selected-item-detalle-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    color: #555;
}

.rozo-selected-item-select-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rozo-selected-item-precio {
    font-size: 12px;
    font-weight: 600;
    color: #443931;
    text-align: right;
}

.rozo-selected-item-select {
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    background: #fff;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 768px) {
    .rozo-hero {
        height: 40vh;
        min-height: 280px;
        justify-content: flex-start;
    }

    .rozo-hero-content {
        text-align: left;
        max-width: 100%;
        margin-right: 0;
        padding: 0 1.5rem;
    }

    .rozo-hero-content h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .rozo-sessions-section {
        padding: 2rem 1.5rem;
    }

    .rozo-header {
        margin-bottom: 40px;
    }

    .rozo-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .rozo-calendar {
        width: 100%;
        padding: 10px 8px 15px;
    }

    .rozo-calendar-table th,
    .rozo-calendar-table td {
        padding: 6px 0;
        font-size: 12px;
    }

    .rozo-day-active {
        padding: 6px 8px;
        font-size: 13px;
    }

    .rozo-preview {
        grid-template-columns: 1fr;
    }

    .rozo-preview-img img {
        height: 200px;
    }

    .rozo-selected-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px;
    }

    .rozo-selected-item-detalle-col {
        flex-direction: row;
        gap: 20px;
    }

    .rozo-selected-item-select-col {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .rozo-selected-item-precio {
        text-align: left;
    }

    .rozo-selected-item-select {
        flex: 1;
        margin-left: 12px;
        max-width: 160px;
    }

    .rozo-cta-row {
        flex-direction: column;
    }
}