.price-calc-container {
    --accent-color: #cca43b;
    max-width: 500px;
    margin: 20px auto;
    padding: 24px;
    border-radius: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-calc-title {
    text-align: center;
    margin-bottom: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--accent-color);
}

.price-calc-subtitle {
    text-align: center;
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 0.95rem;
    opacity: 0.75;
}

.calc-group {
    margin-bottom: 20px;
}

.calc-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    opacity: 0.85;
}

.label-with-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-value {
    font-weight: 700;
    color: var(--accent-color);
}

/* Session Buttons */
.session-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.session-btn {
    display: block;
    position: relative;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.session-btn input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.session-btn.active {
    background: rgba(204, 164, 59, 0.15);
    border-color: var(--accent-color);
}

.btn-text {
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.discount-badge {
    background: #e74c3c;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Slider */
.calc-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.15);
    outline: none;
    margin: 10px 0;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-color);
    cursor: pointer;
    transition: transform 0.1s;
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Counters Grid */
.calc-grid-counters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.counter-control {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.counter-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s;
}

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

.counter-input {
    flex: 1;
    text-align: center;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    width: 100%;
}

.counter-input::-webkit-outer-spin-button,
.counter-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Result Panel */
.calc-result-panel {
    margin-top: 24px;
    background: rgba(0,0,0,0.25);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

.result-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 8px;
    opacity: 0.8;
}

.discount-row {
    color: #e74c3c;
    font-weight: 500;
}

.result-divider {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 12px 0;
}

.result-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-total span:first-child {
    font-size: 1rem;
    font-weight: 600;
}

.total-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-color);
}

/* Disclaimer & CTA */
.calc-disclaimer {
    font-size: 0.8rem;
    opacity: 0.6;
    text-align: center;
    margin-top: 16px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.calc-booking-btn {
    display: block;
    text-align: center;
    background: var(--accent-color);
    color: #141414 !important;
    text-decoration: none !important;
    font-weight: 700;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 1rem;
    transition: background 0.3s, transform 0.2s;
}

.calc-booking-btn:hover {
    background: #fff;
    color: #141414 !important;
    transform: translateY(-2px);
}
