/* tourSelector.css – FINAL – 100% your global colour scheme (Nov 2025) */

@import url('https://fonts.googleapis.com/css2?family=Averia+Serif+Libre:wght@400;700&display=swap');

/* ───── Global fonts ───── */
.trip-selector__label,
.trip-summary__title {
    font-family: 'Averia Serif Libre', serif !important;
    font-size: 21px !important;
    font-weight: 700;
    color: #446344;
    margin-bottom: 12px;
    display: block;
}

.experience-checkbox__text,
.experience-checkbox__helper,
.trip-summary__content {
    font-family: Verdana, Geneva, sans-serif !important;
    font-size: 18px;
    line-height: 1.5;
    color: #446344;
}

/* ───── Containers ───── */
.trip-selector,
.experience-checkbox,
.trip-summary {
    margin: 32px 0;
    padding: 24px;
    background: #f8fbf8;
    border: 2px solid #A3C586;
    border-radius: 14px;
}

/* ───── Quantity selector ───── */
.trip-selector__quantity {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 40%;
}
@media (max-width: 768px) {
    .trip-selector__quantity,
    .trip-select,
    .experience-checkbox { max-width: 80%; }
}

/* Plus & Minus buttons – white background, your exact green, orange-yellow on hover */
.trip-btn {
    width: 44px;
    height: 44px;
    background: white;
    color: #446344;
    border: 2px solid #446344;
    border-radius: 8px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.25s ease;
}

.trip-btn:hover {
    background: white;
    border-color: #FFCC33;
    color: #FFCC33;
}

/* Number input */
.trip-input {
    width: 90px;
    height: 44px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid #446344;
    border-radius: 8px;
}

/* Lodging dropdown */
.trip-select {
    max-width: 40%;
    padding: 12px 16px;
    font-size: 17px;
    border: 2px solid #446344;
    border-radius: 8px;
    background: white;
}

/* ───── Experience checkboxes ───── */
.experience-checkbox {
    max-width: 80%;
    margin: 24px auto;
    transition: background 0.3s;
}
.experience-checkbox:hover { background: #edf4ed; }

.experience-checkbox__label { display: flex; align-items: flex-start; cursor: pointer; }
.experience-checkbox__input { position: absolute; opacity: 0; }

.experience-checkbox__box {
    width: 26px;
    height: 26px;
    border: 2px solid #446344;
    border-radius: 6px;
    background: white;
    margin-right: 14px;
    flex-shrink: 0;
    margin-top: 3px;
    position: relative;
}
.experience-checkbox__input:checked + .experience-checkbox__box {
    background: #446344;
}
.experience-checkbox__input:checked + .experience-checkbox__box::after {
    content: "✓";
    position: absolute;
    top: -5px;
    left: 2px;
    color: white;
    font-size: 26px;
    font-weight: bold;
}

.experience-checkbox__helper {
    margin: 12px 0 0;
    font-size: 14px;
    color: #666;
    font-style: italic;
    text-align: center;
}

/* ───── Summary box – identical colours to the rest of the form ───── */
.trip-summary {
    background: #f8fbf8;
    border: 2px solid #A3C586;
    color: #446344;
}
.trip-summary__title { color: #446344 !important; }
.trip-summary__content strong { color: #446344; }

.trip-summary__btn {
    margin-top: 20px;
    background: #A3C586;
    color: #446344;
    padding: 14px 34px;
    border: 2px solid #446344;
    border-radius: 10px;
    font-size: 17px;
    font-weight: bold;
    font-family: Verdana, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}
.trip-summary__btn:hover {
    background: #FFCC33;
    border-color: #FFCC33;
    color: #446344;
}