/* ==================== Counter Input Styles ==================== */

.book-tour .form-group label {
    display: block;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Book page labels */
.booking-form-main .form-group label {
    color: var(--dark-color);
}

.counter-input {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    overflow: hidden;
    height: auto;
    min-height: 42px;
}

/* Book page counter styling */
.book-counter {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    height: auto;
    min-height: 42px;
}

.book-counter .counter-btn {
    background: #f8f9fa;
    color: var(--dark-color);
}

.book-counter .counter-btn:hover {
    background: #e9ecef;
}

.book-counter .counter-value {
    color: var(--dark-color);
}

.book-counter .counter-btn.minus {
    border-right: 1px solid #e0e0e0;
}

.book-counter .counter-btn.plus {
    border-left: 1px solid #e0e0e0;
}

.counter-btn {
    width: 38px;
    height: 100%;
    min-height: 42px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.counter-btn:active {
    transform: scale(0.95);
}

.counter-btn.minus {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.counter-btn.plus {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.counter-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.counter-btn:disabled:hover {
    background: rgba(255, 255, 255, 0.15);
}

.counter-value {
    flex: 1;
    text-align: center;
    border: none;
    background: transparent;
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 0 10px;
    cursor: default;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-value:focus {
    outline: none;
}

/* Remove spinner arrows from number input */
.counter-value::-webkit-inner-spin-button,
.counter-value::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.counter-value[type=number] {
    -moz-appearance: textfield;
}

/* Responsive */
@media (max-width: 768px) {
    .counter-input {
        min-height: 40px;
    }
    
    .counter-btn {
        width: 36px;
        min-height: 40px;
        font-size: 13px;
    }
    
    .counter-value {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .form-group label {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .counter-input {
        min-height: 38px;
    }
    
    .counter-btn {
        width: 34px;
        min-height: 38px;
        font-size: 12px;
    }
    
    .counter-value {
        font-size: 13px;
    }
}

