#vue_app {
    --aws-bg: #f3f6fb;
    --aws-surface: #ffffff;
    --aws-surface-soft: #f8fafd;
    --aws-ink: #16191f;
    --aws-muted: #5f6b7a;
    --aws-line: #d5dbe3;
    --aws-line-strong: #b7c1cd;
    --aws-accent: #ff9900;
    --aws-accent-dark: #ec7211;
    --aws-accent-focus: rgba(255, 153, 0, 0.28);
    --aws-success: #1d8102;
    --aws-danger: #d13212;
    background: linear-gradient(180deg, #eef3f9 0%, #f8fbff 100%);
    padding: 14px 0 28px;
    color: var(--aws-ink);
}

#vue_app .buy-now-page {
    max-width: 1330px;
}

#vue_app .buy-now-shell {
    padding: 0 !important;
}

#vue_app .buy-now-card {
    background: var(--aws-surface);
    border: 1px solid var(--aws-line);
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(21, 30, 49, 0.06);
    padding: 14px !important;
}

#vue_app .cart {
    margin: 0;
}

#vue_app .buy-now-product-image {
    width: 100%;
    max-width: 260px;
    max-height: 270px;
    object-fit: contain;
    border: 1px solid #e8edf5;
    border-radius: 12px;
    background: var(--aws-surface-soft);
    padding: 14px;
}

#vue_app .buy-now-product-content {
    display: flex;
    align-items: center;
}

#vue_app .buy-now-product-title {
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.34;
    color: var(--aws-ink);
}

#vue_app .buy-now-product-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f63a8;
}

#vue_app .buy-now-qty-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

#vue_app .qty-control-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid var(--aws-line-strong) !important;
    background: #fff !important;
    color: #202938 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    padding: 0 !important;
    line-height: 1;
    box-shadow: none !important;
}

#vue_app .qty-control-btn:hover {
    background: #f5f8fc !important;
    border-color: #9ea9b8 !important;
}

#vue_app .qty-control-input {
    width: 54px !important;
    height: 34px;
    border-radius: 10px !important;
    border: 1px solid var(--aws-line) !important;
    background: #fff !important;
    color: #1f2937;
    font-weight: 700;
    padding: 0 6px;
}

#vue_app .evr-summary {
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    border: 1px solid var(--aws-line);
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(21, 30, 49, 0.06);
    padding: 14px;
    height: 100%;
}

@media (min-width: 992px) {
    #vue_app .evr-summary {
        position: sticky;
        top: 14px;
    }
}

#vue_app .evr-summary__head {
    font-size: 0.84rem;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    color: #465166;
    font-weight: 800;
    margin-bottom: 8px;
}

#vue_app .evr-summary__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

#vue_app .evr-summary__item {
    border: 1px solid #e8edf5;
    border-radius: 10px;
    padding: 10px;
    background: #fff;
}

#vue_app .evr-summary__line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

#vue_app .evr-summary__name {
    font-size: 0.86rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
}

#vue_app .evr-summary__price {
    font-size: 0.96rem;
    font-weight: 800;
    color: #0f63a8;
    white-space: nowrap;
}

#vue_app .evr-summary__meta {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    color: var(--aws-muted);
    margin-top: 6px;
    font-size: 0.78rem;
    font-weight: 600;
}

#vue_app .evr-pill {
    min-width: 28px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid var(--aws-line);
    background: #fff;
    color: #1f2937;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    padding: 0 8px;
}

#vue_app .evr-qtychip {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid var(--aws-line-strong);
    background: #fff;
    color: #1f2937;
    font-weight: 800;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

#vue_app .evr-qtychip:hover {
    background: #f3f6fb;
}

#vue_app .evr-summary__unit {
    color: #6b7280;
    font-size: 0.74rem;
    font-weight: 700;
}

#vue_app .evr-summary__divider {
    height: 1px;
    background: #e4e9f0;
    margin: 10px 0 8px;
}

#vue_app .evr-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.84rem;
    color: #4b5566;
    font-weight: 700;
    padding: 6px 2px;
}

#vue_app .evr-summary__row span:last-child {
    color: #1f2937;
}

#vue_app .evr-summary__row--grand {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fbff;
    margin-top: 4px;
    padding: 10px;
}

#vue_app .evr-summary__row--grand span {
    color: #0f63a8;
    font-size: 0.92rem;
    font-weight: 800;
}

#vue_app .guest-checkout-switch {
    margin-top: 14px;
    padding: 10px 12px;
    border-top: 1px solid #e6ebf2;
    border-bottom: 1px solid #e6ebf2;
    background: #f8fbff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 60px;
}

#vue_app .guest-checkout-copy {
    min-width: 0;
}

#vue_app .guest-checkout-label {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.2;
    color: #1f2937;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

#vue_app .guest-checkout-label::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #ffffff 0%, #ffffff 27%, #cfd7e3 28%, #cfd7e3 100%);
    border: 1px solid #b9c3d1;
    box-shadow: inset 0 1px 0 #fff;
}

#vue_app .guest-checkout-hint {
    margin: 3px 0 0;
    font-size: 0.76rem;
    color: #5f6b7a;
    line-height: 1.35;
}

#vue_app .guest-checkout-switch .form-check-input {
    width: 2.25rem;
    height: 1.2rem;
    margin: 0;
    border-color: #b7c1cd;
    cursor: pointer;
}

#vue_app .guest-checkout-switch .form-check-input:checked {
    background-color: #0073bb;
    border-color: #0073bb;
}

#vue_app .checkout-form-note {
    margin: 12px 0 4px;
    font-size: 0.82rem;
    color: var(--aws-muted);
}

#vue_app .form-group {
    background: #fbfcfe;
    border: 1px solid #e8edf5;
    border-radius: 10px;
    padding: 9px 10px;
    height: 100%;
}

#vue_app .shipping-detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.26px;
    color: #4f5a6d;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}

#vue_app .shipping-detail-input {
    border: 1px solid var(--aws-line);
    border-radius: 8px;
    background: #fff;
    color: #1f2937;
    font-size: 0.9rem;
    min-height: 39px;
    box-shadow: none;
}

#vue_app textarea.shipping-detail-input {
    min-height: 88px;
    resize: vertical;
}

#vue_app .shipping-detail-input:focus {
    border-color: #ff9900;
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.18);
}

#vue_app .text-danger {
    font-size: 0.8rem;
}

#vue_app .checkout-action-panel {
    margin-top: 12px !important;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

#vue_app .recaptcha-wrap {
    margin-bottom: 0 !important;
    background: #fff;
    border: 1px solid #e4e9f0;
    border-radius: 10px;
    padding: 8px;
}

#vue_app .checkout-btn-wrap {
    margin-left: auto;
}

#vue_app .buy-now-cta {
    min-width: 290px;
    min-height: 42px;
    border-radius: 11px;
    border: 1px solid #ff8f00 !important;
    background: linear-gradient(180deg, #ffb84d 0%, #ff9900 100%) !important;
    color: #0f1111 !important;
    font-weight: 800 !important;
    font-size: 0.9rem;
    letter-spacing: 0.1px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#vue_app .buy-now-cta:hover:not(:disabled) {
    background: linear-gradient(180deg, #ffad33 0%, #ec7211 100%) !important;
    transform: translateY(-1px);
}

#vue_app .buy-now-cta:focus-visible {
    box-shadow: 0 0 0 3px var(--aws-accent-focus);
}

#vue_app .buy-now-cta:disabled {
    opacity: 0.62;
    cursor: not-allowed;
}

#vue_app .bike {
    color: #0f63a8;
}

#vue_app .bike__spokes-spin {
    animation: aws-spin 1.2s linear infinite;
}

#vue_app .bike__pedals-spin {
    animation: aws-spin 1s linear infinite;
}

@keyframes aws-spin {
    to {
        transform: rotate(360deg);
    }
}

#vue_app .modal-content {
    border-radius: 14px;
    border: 1px solid #d9e0ea;
}

#vue_app .modal-header {
    border-bottom: 1px solid #e8edf5;
    background: #f8fafd;
}

#vue_app .modal-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
}

#vue_app .modal-body .card {
    border: 1px solid #e8edf5;
    border-radius: 10px;
}

#vue_app .modal-accesory-image {
    width: 100%;
    height: 128px;
    border: 1px solid #e8edf5;
    border-radius: 8px;
    background: #f8fafd;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#vue_app .modal-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

#vue_app .modal-footer {
    border-top: 1px solid #e8edf5;
}

#vue_app .btn-secondary.btn-xs {
    border-radius: 8px;
}

#vue_app .zelle-modal-backdrop {
    background: rgba(22, 25, 31, 0.56);
}

#vue_app .zelle-modal {
    border-radius: 14px;
    border: 1px solid #d4dce6;
    box-shadow: 0 14px 44px rgba(22, 25, 31, 0.33);
    overflow: hidden;
}

#vue_app .zelle-modal-header {
    background: #f7f9fc;
    border-bottom: 1px solid #e2e8f0;
    padding: 14px 16px;
}

#vue_app .zelle-modal-title {
    color: #1f2937;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

#vue_app .zelle-brand-icon,
#vue_app .zelle-btn-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(17, 24, 39, 0.2);
    flex-shrink: 0;
}

#vue_app .zelle-btn-icon {
    width: 20px;
    height: 20px;
    border-radius: 5px;
}

#vue_app .zelle-brand-icon svg,
#vue_app .zelle-btn-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

#vue_app .zelle-close-btn {
    color: #5f6b7a;
    width: 34px;
    height: 34px;
    border-radius: 8px;
}

#vue_app .zelle-close-btn:hover {
    background: #eef2f7;
}

#vue_app .zelle-modal-body {
    padding: 18px 16px;
}

#vue_app .zelle-instruction-text {
    color: #374151;
    font-size: 0.9rem;
}

#vue_app .zelle-payment-box {
    background: #f9fbfe;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 14px;
}

#vue_app .zelle-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

#vue_app .zelle-detail-row:last-child {
    margin-bottom: 0;
}

#vue_app .zelle-label {
    color: #5f6b7a;
    font-size: 0.8rem;
    font-weight: 700;
    min-width: 84px;
}

#vue_app .zelle-value {
    color: #111827;
    font-size: 0.86rem;
    font-weight: 700;
    text-align: right;
}

#vue_app .zelle-value-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

#vue_app .copybtn {
    height: 30px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid #cfd7e3;
    background: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    color: #1f2937;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

#vue_app .copybtn:hover {
    background: #f3f7fc;
}

#vue_app .zelle-action-buttons {
    gap: 8px;
    justify-content: flex-end;
}

#vue_app .btn-cancel {
    min-height: 38px;
    border-radius: 8px;
    border: 1px solid #cfd7e3;
    background: #fff;
    color: #1f2937;
    font-size: 0.86rem;
    font-weight: 700;
}

#vue_app .btn-cancel:hover {
    background: #f5f8fc;
}

#vue_app .btn-confirm-payment {
    min-height: 38px;
    border-radius: 8px;
    border: 1px solid #ff8f00;
    background: linear-gradient(180deg, #ffb84d 0%, #ff9900 100%);
    color: #0f1111;
    font-size: 0.86rem;
    font-weight: 800;
    padding: 0 16px;
}

#vue_app .btn-confirm-payment:hover:not(:disabled) {
    background: linear-gradient(180deg, #ffad33 0%, #ec7211 100%);
}

#vue_app .btn-confirm-payment:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

@media (max-width: 1200px) {
    #vue_app .buy-now-product-image {
        max-width: 228px;
    }
}

@media (max-width: 991px) {
    #vue_app {
        padding: 10px 0 20px;
    }

    #vue_app .buy-now-card {
        padding: 12px !important;
    }

    #vue_app .buy-now-product-content {
        margin-top: 10px;
    }

    #vue_app .evr-summary {
        margin-top: 12px;
        position: static;
    }

    #vue_app .checkout-action-panel {
        align-items: stretch;
    }

    #vue_app .checkout-btn-wrap {
        margin-left: 0;
        width: 100%;
    }

    #vue_app .buy-now-cta {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 576px) {
    #vue_app .container.buy-now-page {
        padding: 0 8px;
    }

    #vue_app .buy-now-card {
        border-radius: 12px;
        padding: 10px !important;
    }

    #vue_app .buy-now-product-image {
        max-width: 100%;
        max-height: 220px;
    }

    #vue_app .buy-now-product-title {
        font-size: 0.94rem;
    }

    #vue_app .buy-now-product-price {
        font-size: 1.03rem;
    }

    #vue_app .qty-control-btn {
        width: 32px;
        height: 32px;
    }

    #vue_app .qty-control-input {
        width: 48px !important;
        height: 32px;
    }

    #vue_app .form-group {
        padding: 8px;
        border-radius: 9px;
    }

    #vue_app .shipping-detail-label {
        font-size: 0.7rem;
    }

    #vue_app .shipping-detail-input {
        min-height: 37px;
        font-size: 0.85rem;
    }

    #vue_app .guest-checkout-switch {
        padding: 9px 10px;
        gap: 10px;
        align-items: flex-start;
    }

    #vue_app .guest-checkout-label {
        font-size: 0.86rem;
    }

    #vue_app .guest-checkout-hint {
        font-size: 0.72rem;
    }

    #vue_app .checkout-form-note {
        font-size: 0.78rem;
        margin-top: 10px;
    }

    #vue_app .recaptcha-wrap {
        width: 100%;
        overflow-x: auto;
    }

    #vue_app .zelle-modal {
        margin: 10px;
        max-width: calc(100% - 20px);
    }

    #vue_app .zelle-detail-row {
        align-items: flex-start;
        flex-direction: column;
    }

    #vue_app .zelle-value-wrapper {
        width: 100%;
        justify-content: space-between;
    }

    #vue_app .zelle-action-buttons {
        flex-direction: column-reverse;
    }

    #vue_app .btn-cancel,
    #vue_app .btn-confirm-payment {
        width: 100%;
    }
}
