/* ── Services Module ─────────────────────────────────────────────────────── */

.r33-services-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.r33-service-row-wrap {
    border-radius: 6px;
    overflow: hidden;
}

.r33-service-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #141414;
    border: 1px solid #222;
    border-radius: 6px;
}

.r33-service-row:hover {
    background: #181818;
}

.r33-service-name {
    flex: 1;
    font-size: 14px;
    color: #ccc;
}

.r33-service-type-pills {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.r33-pill {
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid #333;
    background: #1a1a1a;
    color: #666;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.r33-pill:hover {
    border-color: #555;
    color: #ccc;
}

.r33-pill[data-type="included"].active {
    border-color: #4caf50;
    background: #0e2e0e;
    color: #4caf50;
}

.r33-pill[data-type="extra"].active {
    border-color: #c9a84c;
    background: #1e1a0f;
    color: #c9a84c;
}

.r33-extra-price-inline {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 12px;
    background: #111;
    border: 1px solid #222;
    border-top: none;
    border-radius: 0 0 6px 6px;
    font-size: 13px;
}

.r33-extra-price-inline[hidden] {
    display: none !important;
}

.r33-extra-checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #aaa;
    cursor: pointer;
}

.r33-extra-checkbox-label input[type="checkbox"] {
    accent-color: #c9a84c;
    width: 15px;
    height: 15px;
}

.r33-extra-price-input-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
}

.r33-currency {
    color: #c9a84c;
    font-weight: 600;
    font-size: 14px;
}

.r33-extra-price-input {
    width: 80px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    color: #fff;
    padding: 4px 8px;
    font-size: 13px;
    -moz-appearance: textfield;
}

.r33-extra-price-input::-webkit-outer-spin-button,
.r33-extra-price-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.r33-extra-price-input:focus {
    outline: none;
    border-color: #c9a84c;
}

