/**
 * Frontend styles for WC Travel Selector
 */

.wts-viaje-selector {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 0px;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    position: relative;

}

.wts-banner-reservas {
    position: absolute;
    top: -75px;
    left: 0;
    background: #FF93C2;
    color: #191919;
    padding: 8px 16px;
    border-radius: 32px;
    font-size: 14px;
    font-weight: 700;
}

.wts-product-selector {
    margin-bottom: 0;
}

.wts-product-dropdown {
    width: 100%;
    padding: 12px;
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
}

.wts-product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 24px;
}

.wts-left-column,
.wts-right-column {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.wts-right-column {
    align-items: flex-end;
    text-align: right;
}

.wts-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #ffffff;

}
.wts-right-column .wts-title {
    font-size: 24px;
}
.wts-right-column .wts-title .wts-preciototal{
   font-weight: bold;
   font-size: 32px;
}
.wts-right-column .wts-precio-anterior{
    color: #ff0000;
    text-decoration: line-through;
    font-size: 18px;
    font-weight: normal;
}
.wts-price-subtitle{
    font-size: 21px;
}
.wts-price-subtitle .wts-price-note{
    font-size: 14px;
}
.wts-label {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 0;
}

.wts-duration-selector {
    display: flex;
    border: 1px solid #ffffff;
    border-radius: 16px;
    padding: 0px;
    background: transparent;
    width: 50%;
}

.wts-duration-btn {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}
.wts-duration-btn:first-child{
    border-radius: 15px 0 0 15px;
}
.wts-duration-btn:last-child{
    border-radius: 0 15px 15px 0;
}
.wts-duration-btn:only-child{
    border-radius: 15px;
}

.wts-duration-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.wts-duration-btn.active {
    background: #ffffff;
    color: #1a1a1a;
    font-weight: 600;
}

.wts-date-range{
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
    font-size: 18px;
    margin-top: 5px;
}
.wts-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #BCBCBC;
    font-size: 14px;
}


.wts-date-range svg,
.wts-hours svg {
    width: 20px;
    height: 20px;
    stroke: #E60064;
}
.wts-hours svg {
    stroke: #FFFFFF;
}

.wts-subtitle {
    font-size: 14px;
    color: #cccccc;
    margin: 0;
}

.wts-price {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

.wts-actions {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.wts-btn-dossier,
.wts-btn-reservar {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 10px 8px 22px;
    border-radius: 34px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    line-height: 16px;
    transition: 0.3s all ease;
}

.wts-btn-dossier {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    transition: 0.3s all ease;
}


.wts-btn-reservar {
    background: #E60064;
    color: #ffffff;
    border: none;
}

.wts-btn-reservar:hover:not(:disabled) {
    background: #c50052;
}

.wts-btn-reservar:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.wts-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 50%;
    color: #1a1a1a;
    transform: rotate(-45deg);
    transition: 0.3s all ease;
}

.wts-btn-dossier:hover > .wts-icon,
    .wts-btn-reservar:hover > .wts-icon {
    transform: rotate(0deg);
}

.wts-btn-dossier .wts-icon {
    background: #ffffff;
    color: #1a1a1a;
}

.wts-btn-reservar .wts-icon {
    background: #ffffff;
    color: #E60064;
}

.wts-icon svg {
    width: 16px;
    height: 16px;
}

.wts-product-content.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .wts-product-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .wts-actions {
        flex-direction: column;
    }
    
    .wts-price {
        font-size: 28px;
    }
}

