/**
 * Smart Quoter - Estilos Premium
 * Versión: 1.0.0
 */

.agencia-smart-quoter {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 40px 30px;
    box-sizing: border-box;
    background: rgba(26, 28, 35, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================
   ANIMATED STEPPER
   ================================ */
.quoter-stepper {
    position: relative;
    margin-bottom: 50px;
    padding: 0 20px;
}

.quoter-stepper-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

/* Track line behind circles */
.quoter-stepper-track {
    position: absolute;
    top: 24px;
    left: 60px;
    right: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    z-index: 1;
}

.quoter-stepper-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #6366f1 0%, #a855f7 100%);
    border-radius: 4px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Individual step */
.quoter-stepper-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
}

/* Circle container */
.quoter-stepper-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 3px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quoter-stepper-number {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.quoter-stepper-check {
    position: absolute;
    font-size: 20px;
    color: #fff;
    opacity: 0;
    transform: scale(0) rotate(-45deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quoter-stepper-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* Active step state */
.quoter-stepper-step.active .quoter-stepper-circle {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    border-color: transparent;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.25), 0 8px 25px rgba(99, 102, 241, 0.4);
    animation: stepperPulse 2s infinite;
}

.quoter-stepper-step.active .quoter-stepper-number {
    color: #fff;
}

.quoter-stepper-step.active .quoter-stepper-label {
    color: #fff;
}

/* Completed step state */
.quoter-stepper-step.completed .quoter-stepper-circle {
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    animation: none;
}

.quoter-stepper-step.completed .quoter-stepper-number {
    opacity: 0;
    transform: scale(0);
}

.quoter-stepper-step.completed .quoter-stepper-check {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.quoter-stepper-step.completed .quoter-stepper-label {
    color: #22c55e;
}

/* Pulse animation for active step */
@keyframes stepperPulse {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.25), 0 8px 25px rgba(99, 102, 241, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(99, 102, 241, 0.15), 0 8px 25px rgba(99, 102, 241, 0.4);
    }
}


/* Steps Container */
.quoter-steps-container {
    position: relative;
    min-height: 400px;
}

.quoter-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.quoter-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Step 1: Service Grid */
.quoter-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.quoter-service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quoter-service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #6366f1;
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.quoter-service-card:active {
    transform: translateY(-2px) scale(0.98);
    transition: all 0.1s ease;
}

.quoter-service-card:hover::before {
    opacity: 1;
}

.quoter-service-card.selected {
    border-color: #6366f1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
}

.quoter-service-card.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: #6366f1;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
}

.quoter-badge-popular {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #FF5A00;
    color: #fff;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(255, 90, 0, 0.4);
}

.quoter-service-icon {
    font-size: 48px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.quoter-service-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.quoter-service-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.quoter-service-desc {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.quoter-service-includes {
    list-style: none;
    padding: 0;
    margin: 15px 0 5px 0;
    width: 100%;
    text-align: left;
}

.quoter-service-includes li {
    font-size: 13px;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.include-check {
    color: #4ade80;
    /* Green Success */
    font-weight: bold;
    flex-shrink: 0;
    /* Prevent icon shrinking */
}

.quoter-service-price {
    font-size: 16px;
    font-weight: 600;
    color: #6366f1;
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

/* Step 2: Options */
.quoter-category-title {
    font-size: 14px;
    font-weight: 700;
    color: #6366f1;
    /* Accent Color */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(99, 102, 241, 0.3);
    width: 100%;
}

.quoter-options-container {
    margin-bottom: 30px;
}

.quoter-option-item {
    background: rgba(255, 255, 255, 0.02);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px 10px;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.quoter-option-item:last-child {
    border-bottom: none;
}

.quoter-option-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.quoter-option-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 15px;
}

.quoter-option-input[type="checkbox"],
.quoter-option-input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #6366f1;
}

.quoter-option-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
    width: 100%;
}


.quoter-option-wrapper.has-free-qty .quoter-option-header {
    margin-bottom: 5px;
}

.quoter-option-header {
    align-items: flex-start;
    /* Align to top for better multi-line handling */
}

/* Info container to stack name and description */
.quoter-option-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quoter-option-name {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
}

.quoter-option-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 4px 0 0 0;
    line-height: 1.5;
    font-weight: 400;
}

.quoter-option-price {
    color: #6366f1;
    font-weight: 700;
    font-size: 15px;
    align-self: flex-start;
    /* Align price to top to match name */
    margin-top: 2px;
    /* Visual adjustment */
    white-space: nowrap;
    /* Prevent price wrapping */
}

/* Range Inputs */
.quoter-range-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quoter-range-control {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quoter-option-input[type="range"] {
    flex: 1;
    height: 6px;
    border-radius: 5px;
    background: rgba(99, 102, 241, 0.2);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.quoter-option-input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #6366f1;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.5);
}

.quoter-option-input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #6366f1;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.5);
}

.quoter-range-value {
    min-width: 40px;
    text-align: center;
    font-weight: 700;
    color: #6366f1;
    font-size: 18px;
}

/* =========================================
   NUEVO LAYOUT 2 COLUMNAS (Fase 2)
   ========================================= */

/* Desktop Grid */
@media (min-width: 900px) {
    .quoter-two-columns {
        display: grid;
        grid-template-columns: 2fr 1fr;
        /* 2/3 Content, 1/3 Sidebar */
        gap: 40px;
        align-items: start;
    }

    .quoter-col-sidebar {
        position: sticky;
        top: 20px;
        /* Sticky behavior */
    }
}

/* Mobile Stack */
@media (max-width: 899px) {
    .quoter-two-columns {
        display: flex;
        flex-direction: column-reverse;
        /* En móvil, resumen arriba o abajo? Abajo por ahora */
        gap: 30px;
    }
}

/* Sticky Summary Card */
.quoter-sticky-summary {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.quoter-summary-title {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #a855f7;
    /* Violet user accent */
    margin: 0 0 20px 0;
    font-weight: 700;
    text-align: center;
}

.quoter-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.4;
}

.quoter-summary-row.base-service {
    font-weight: 600;
    color: #fff;
}

.quoter-summary-row.addition {
    color: rgba(255, 255, 255, 0.7);
}

.quoter-summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 15px 0;
}

.quoter-summary-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.summary-total-label {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.summary-total-price {
    font-size: 24px;
    font-weight: 800;
    color: #FF5A00;
    /* Naranja Accent */
}

/* Ocultar banner de precio viejo */
.quoter-price-display-wrapper {
    display: none !important;
}

/* Price Display (Old - kept for reference if needed, but hidden) */
.quoter-price-display-wrapper {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border: 2px solid #6366f1;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    margin-bottom: 30px;
}

.quoter-price-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    display: block;
    margin-bottom: 10px;
}

.quoter-price-display {
    font-size: 42px;
    font-weight: 800;
    color: #6366f1;
    text-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
}

/* Step 3: Lead Form */
.quoter-lead-form {
    display: grid;
    gap: 20px;
}

.quoter-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.quoter-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quoter-form-label {
    font-weight: 600;
    font-size: 14px;
}

.quoter-form-input {
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 16px;
    transition: all 0.3s ease;
    color: inherit;
}

.quoter-form-input:focus {
    outline: none;
    border-color: #6366f1;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.quoter-form-input.error {
    border-color: #ef4444;
}

/* Navigation Buttons */
.quoter-navigation {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
}

.quoter-btn {
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
    text-align: center;
}

.quoter-btn-prev {
    background: rgba(255, 255, 255, 0.08);
    color: inherit;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.quoter-btn-prev:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.quoter-btn-next,
.quoter-btn-submit {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: #fff;
}

.quoter-btn-next:hover,
.quoter-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.quoter-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Success Screen */
.quoter-success-screen {
    text-align: center;
    padding: 60px 20px;
}

.quoter-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.quoter-success-screen h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.quoter-final-price {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border: 2px solid #6366f1;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
}

.quoter-final-price .quoter-price-value {
    font-size: 48px;
    font-weight: 800;
    color: #6366f1;
    display: block;
    margin-top: 10px;
}

.quoter-whatsapp-btn {
    background: #25d366;
    color: #fff;
    padding: 18px 40px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 20px auto;
    transition: all 0.3s ease;
}

.quoter-whatsapp-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.quoter-btn-reset {
    background: rgba(255, 255, 255, 0.1);
    color: inherit;
    padding: 12px 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
}

/* Error Messages */
.quoter-error-message {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid #ef4444;
    border-radius: 12px;
    padding: 18px;
    color: #ff6b6b;
    margin-bottom: 25px;
    display: none;
    font-weight: 600;
    font-size: 14px;
    animation: shake 0.5s cubic-bezier(.36, .07, .19, .97) both;
}

@keyframes shake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.quoter-fade-in-up {
    animation: fadeInUp 0.4s ease forwards;
}

/* Quantity Controls */
.quoter-option-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.quoter-option-wrapper:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
}

.quoter-option-wrapper.has-free-qty {
    border-left: 4px solid #10b981;
}

.quoter-free-label {
    background: #10b981;
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 800;
    margin-left: 10px;
    display: inline-block;
    vertical-align: middle;
}

/* ================================
   SKELETON LOADING
   ================================ */
.quoter-skeleton .quoter-service-card,
.quoter-skeleton .quoter-option-item,
.quoter-skeleton .quoter-sticky-summary {
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.03) 25%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0.03) 75%) !important;
    background-size: 200% 100% !important;
    animation: skeleton-loading 1.5s infinite !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
    pointer-events: none;
}

.quoter-skeleton .quoter-service-name,
.quoter-skeleton .quoter-service-desc,
.quoter-skeleton .quoter-option-name,
.quoter-skeleton .quoter-summary-row {
    visibility: hidden;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ================================
   ANIMATED NUMBERS
   ================================ */
.quoter-price-value {
    display: inline-block;
    font-variant-numeric: tabular-nums;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.price-is-updating {
    transform: scale(1.15);
    color: #FF5A00 !important;
    filter: brightness(1.2);
}

.quoter-quantity-control {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quoter-qty-actions {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px;
}

.quoter-qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.quoter-qty-btn:hover {
    background: #6366f1;
}

.quoter-quantity-input {
    width: 50px;
    background: transparent;
    border: none;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    outline: none;
}

/* Hide arrows in number input */
.quoter-quantity-input::-webkit-outer-spin-button,
.quoter-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .agencia-smart-quoter {
        padding: 20px 15px;
    }

    .quoter-layout-columns {
        grid-template-columns: 1fr;
    }

    /* Mobile Bottom Sheet Summary */
    .quoter-sticky-summary {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #1f2937;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px 20px 0 0;
        padding: 15px 20px;
        z-index: 1000;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
        transform: translateY(calc(100% - 70px));
        /* Mostrar solo el total */
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        max-height: 80vh;
        overflow-y: auto;
    }

    .quoter-sticky-summary.expanded {
        transform: translateY(0);
    }

    /* Toggle Handle */
    .quoter-summary-toggle {
        display: block;
        width: 40px;
        height: 5px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 3px;
        margin: 0 auto 15px auto;
        cursor: pointer;
    }

    /* Ajustes para el contenido del summary en móvil */
    .quoter-summary-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0;
        /* Compacto cuando está cerrado */
    }

    .summary-total-price {
        margin-top: 0;
        text-align: right;
    }

    /* Ocultar detalles cuando está colapsado */
    .quoter-summary-details {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
        margin-top: 20px;
    }

    .quoter-sticky-summary.expanded .quoter-summary-details {
        opacity: 1;
        pointer-events: auto;
    }

    /* Espacio al final del body para no tapar contenido */
    body {
        padding-bottom: 80px;
    }

    .quoter-services-grid {
        grid-template-columns: 1fr;
    }

    .quoter-form-row {
        grid-template-columns: 1fr;
    }

    .quoter-navigation {
        flex-direction: column;
    }

    .quoter-price-display {
        font-size: 32px;
    }

    .quoter-final-price .quoter-price-value {
        font-size: 36px;
    }
}

/* Accessibility & Focus States */
:focus-visible {
    outline: 3px solid #6366f1;
    outline-offset: 2px;
}

.quoter-service-card:focus-visible,
.quoter-option-input:focus-visible+.quoter-option-info {
    outline: none;
    box-shadow: 0 0 0 3px #6366f1;
}

/* Touch Targets */
@media (max-width: 768px) {

    .quoter-qty-btn,
    .quoter-option-label {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
    }
}