.journey-picker-container {
    position: relative;
    font-family: 'Muli', sans-serif;
    width: 100%;
}
.jp-trigger {
    border: 1px solid #ffd000;
    padding: 10px 15px;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.jp-trigger-left {
    display: flex;
    align-items: center;
    gap: 15px;
}
.jp-icon {
    font-size: 24px;
    color: #444;
}
.jp-labels {
    display: flex;
    flex-direction: column;
}
.jp-label-top {
    color: #b79c6d;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.jp-label-value {
    color: #333;
    font-size: 16px;
    font-weight: 600;
}
.jp-trigger-btn {
    background: #ffd000;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 10px;
}
.jp-popover {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    min-width: 340px;
    background: #ffffff;
    border: 1px solid #ffd000;
    border-top: none;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.jp-popover.active {
    display: block;
}
.jp-tabs {
    display: flex;
    margin: 20px 20px 0 20px;
    gap: 15px;
}
.jp-tab {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    background: #f0f0f0;
    color: #999;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}
.jp-tab.active {
    background: #444;
    color: #ffd000;
}
.jp-body-asap {
    display: none;
    padding: 40px 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
}
.jp-body-asap.active {
    display: block;
}
.jp-body-later {
    display: none;
    padding: 10px 0 0 0;
}
.jp-body-later.active {
    display: flex;
    flex-direction: column;
}
.jp-later-content {
    display: flex;
    padding: 20px;
}
.jp-date-col {
    flex: 1;
    border-right: 1px solid #f0f0f0;
    padding-right: 20px;
}
.jp-time-col {
    flex: 1;
    padding-left: 20px;
}
.jp-section-title {
    color: #b79c6d;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.jp-cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.jp-cal-month {
    font-weight: 800;
    font-size: 16px;
    color: #333;
    text-transform: uppercase;
}
.jp-cal-nav {
    width: 24px;
    height: 24px;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    cursor: pointer;
    font-size: 10px;
    border-radius: 2px;
}
.jp-cal-nav:hover {
    background: #e0e0e0;
}
.jp-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    text-align: center;
}
.jp-cal-day-name {
    color: #b79c6d;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 5px;
}
.jp-cal-day {
    padding: 10px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 15px;
    cursor: pointer;
    border-radius: 4px;
}
.jp-cal-day.other-month {
    color: #ccc;
    background: #fafafa;
}
.jp-cal-day.active {
    background: #ffd000;
    color: #000;
    font-weight: 800;
}
.jp-cal-day:hover:not(.active) {
    background: #f4f4f4;
}
.jp-time-pickers {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 10px;
    position: relative;
}
.jp-time-divider {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 100px;
    background: #f0f0f0;
}
.jp-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.jp-spinner-btn {
    width: 24px;
    height: 24px;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 10px;
    color: #666;
    border-radius: 2px;
}
.jp-spinner-btn:hover {
    background: #e0e0e0;
}
.jp-spinner-val {
    font-size: 28px;
    font-weight: 600;
    color: #111;
    margin: 10px 0;
    letter-spacing: -1px;
}
.jp-footer {
    padding: 10px;
    border-top: 1px solid #f0f0f0;
    margin-top: 10px;
}
.jp-ok-btn {
    width: 100%;
    background: #ffd000;
    color: #111;
    border: none;
    padding: 14px 0;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.jp-ok-btn:hover {
    background: #e6bb00;
}
@media(max-width: 767px) {
    .jp-popover {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        bottom: auto !important;
        transform: translate(-50%, -50%) !important;
        width: 90% !important;
        min-width: 300px !important;
        max-width: 400px;
        max-height: 90vh;
        overflow-y: auto;
        margin: 0 !important;
        border: 1px solid #ffd000 !important;
        border-radius: 8px;
        z-index: 99999 !important;
    }
    
    .jp-popover.active {
        box-shadow: 0 0 0 9999px rgba(0,0,0,0.6), 0 10px 30px rgba(0,0,0,0.3) !important;
    }

    .jp-later-content {
        flex-direction: column;
        padding: 15px;
    }
    .jp-date-col {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding-right: 0;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .jp-time-col {
        padding-left: 0;
    }
    .jp-time-pickers {
        gap: 25px;
    }
    .jp-time-divider {
        display: none !important;
    }
}
