/* Order Page Styles */

.order-page {
    min-height: calc(100vh - 200px);
    padding: 2rem 0 4rem;
    position: relative;
    z-index: 1;
    background: #050816;
}

/* Create a solid background that covers the body::before parallax effect */
.order-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050816;
    z-index: -2;
}

/* Add subtle gradient overlay for the order page */
.order-page::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(120, 9, 183, 0.08), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.08), transparent 40%);
    z-index: -1;
    pointer-events: none;
}

/* Progress Steps */
.order-progress {
    position: relative;
    margin-bottom: 3rem;
    padding: 2.5rem 2rem 2rem;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(20, 25, 50, 0.95));
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Track line sitting behind the circles */
.progress-track {
    position: absolute;
    top: calc(2.5rem + 24px); /* padding-top + half circle height */
    left: calc(2rem + 12.5%); /* padding + half of one step width */
    right: calc(2rem + 12.5%);
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    z-index: 1;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff88, #00d4ff);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.5);
    transition: width 0.5s ease;
}

/* Flex row for the 4 steps */
.progress-steps-row {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

/* Circle */
.step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(15, 20, 45, 1);
    border: 2.5px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.progress-step.active .step-circle {
    background: linear-gradient(135deg, #00d4ff, #9d4edd);
    border-color: transparent;
    color: white;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5),
                0 0 40px rgba(0, 212, 255, 0.15);
}

.progress-step.completed .step-circle {
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    border-color: transparent;
    color: white;
    box-shadow: 0 0 16px rgba(0, 255, 136, 0.4);
}

/* Hide the number, show checkmark for completed */
.progress-step.completed .step-circle span {
    display: none;
}
.progress-step.completed .step-circle::after {
    content: '\2713';
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
}

/* Label below circle */
.step-label {
    margin-top: 14px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.progress-step.active .step-label {
    color: #00d4ff;
    font-weight: 700;
}

.progress-step.completed .step-label {
    color: #00ff88;
}

/* Legacy class cleanup */
.progress-line,
.step-number {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .order-progress {
        padding: 1.5rem 1rem 1.25rem;
    }

    .progress-track {
        top: calc(1.5rem + 20px);
        left: calc(1rem + 12.5%);
        right: calc(1rem + 12.5%);
        height: 2px;
    }

    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
        border-width: 2px;
    }

    .progress-step.completed .step-circle::after {
        font-size: 1.1rem;
    }

    .step-label {
        font-size: 0.6rem;
        margin-top: 10px;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 480px) {
    .order-progress {
        padding: 1.25rem 0.5rem 1rem;
    }

    .progress-track {
        top: calc(1.25rem + 16px);
        left: calc(0.5rem + 12.5%);
        right: calc(0.5rem + 12.5%);
    }

    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .progress-step.completed .step-circle::after {
        font-size: 0.9rem;
    }

    .step-label {
        font-size: 0.5rem;
        margin-top: 8px;
    }
}

/* Step Header */
    }
}

/* Step Header */
.step-header {
    text-align: center;
    margin-bottom: 3rem;
}

.step-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.step-header h1 i {
    color: #00d4ff;
    margin-right: 0.5rem;
}

.step-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

/* Category Section */
.category-section {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.category-title i {
    color: #00d4ff;
    margin-right: 0.75rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.15);
}

.product-card.featured {
    border-color: #00d4ff;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(157, 78, 221, 0.1));
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00d4ff, #9d4edd);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
}

.product-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.product-price .currency {
    font-size: 1.2rem;
    color: #00d4ff;
    vertical-align: top;
}

.product-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff, #9d4edd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-price .period {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.product-features li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-features li i {
    color: #00d4ff;
    font-size: 0.8rem;
}

/* Configure Layout */
.configure-layout,
.payment-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 992px) {
    .configure-layout,
    .payment-layout {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        order: -1;
    }
}

/* Form Sections */
.form-section {
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section h3 i {
    color: #00d4ff;
}

/* Billing Options */
.billing-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.billing-option {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.billing-option:hover {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.05);
}

.billing-option.selected {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

.billing-option input {
    display: none;
}

.option-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.option-label {
    font-weight: 600;
    color: #fff;
    min-width: 120px;
}

.option-price {
    font-weight: 700;
    color: #00d4ff;
    font-size: 1.1rem;
}

.option-save {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Form Controls */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group small {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Card Input */
.card-input-wrapper,
.cvc-input-wrapper {
    position: relative;
}

.card-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
}

.cvc-help {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    cursor: help;
}

/* Payment Methods */
.payment-methods {
    margin-bottom: 1.5rem;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.payment-icons i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: #fff;
}

/* Form Check */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #00d4ff;
    cursor: pointer;
}

.form-check label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    cursor: pointer;
}

.form-check a {
    color: #00d4ff;
    text-decoration: none;
}

.form-check a:hover {
    text-decoration: underline;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 576px) {
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

/* Security Notice */
.security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 10px;
    color: #28a745;
    font-size: 0.85rem;
}

/* Order Summary */
.order-summary {
    background: rgba(10, 14, 39, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.order-summary h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.summary-product {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-product h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.summary-product p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.billing-cycle-label {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.summary-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
}

.summary-features li {
    padding: 0.4rem 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-features li i {
    color: #00d4ff;
    font-size: 0.7rem;
}

.summary-details {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.summary-row.subtotal {
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
}

.summary-row.total {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    border-top: 2px solid rgba(0, 212, 255, 0.3);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.summary-row.total span:last-child {
    color: #00d4ff;
    font-size: 1.3rem;
}

.money-back {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.75rem;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 8px;
    color: #28a745;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Confirmation Page */
.order-step.confirmation {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.confirmation-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.2), rgba(40, 167, 69, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: confirmPulse 2s ease infinite;
}

.confirmation-icon i {
    font-size: 3rem;
    color: #28a745;
}

@keyframes confirmPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(40, 167, 69, 0.3); }
}

.order-step.confirmation h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.confirmation-message {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.order-details-card {
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: left;
    margin-bottom: 2rem;
}

.order-details-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row span:first-child {
    color: rgba(255, 255, 255, 0.6);
}

.detail-row strong {
    color: #fff;
}

.status-badge {
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-active {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b7a;
}

.alert-success {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #5fd97a;
}

/* Buttons */
.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .account-tabs {
        flex-direction: column;
    }
}

/* Login Required Section for Guest Checkout - Matches domain-order.php style */
.login-required .alert {
    text-align: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 2rem;
}

.login-required .alert i {
    font-size: 24px;
    color: #00d4ff;
}

.login-required .alert strong {
    display: block;
    color: #fff;
    margin-bottom: 8px;
    font-size: 18px;
}

.login-required .alert p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.login-required .auth-buttons {
    margin-top: 24px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.login-required .auth-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 160px;
}

.login-required .auth-buttons .btn i {
    font-size: 16px;
}

.login-required .auth-buttons .btn-primary {
    background: linear-gradient(135deg, #00d4ff, #9d4edd);
    color: #fff;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.35);
}

.login-required .auth-buttons .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.5);
}

.login-required .auth-buttons .btn-secondary {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.login-required .auth-buttons .btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
    border-color: #00d4ff;
}

/* Legacy Account Section for Guest Checkout (keeping for backward compatibility) */
.account-section {
    background: rgba(10, 14, 39, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.account-notice {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.account-notice i {
    font-size: 2rem;
    color: #00d4ff;
}

.account-notice p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.account-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.account-tab {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.account-tab:hover {
    background: rgba(255, 255, 255, 0.1);
}

.account-tab.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(157, 78, 221, 0.2));
    border-color: #00d4ff;
    color: #00d4ff;
}

.account-form {
    animation: fadeIn 0.3s ease;
}

.account-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.account-welcome {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 10px;
    margin-bottom: 2rem;
}

.account-welcome i {
    font-size: 1.5rem;
    color: #28a745;
}

.account-welcome p {
    margin: 0;
    color: #fff;
}

.account-welcome small {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    /* Disable animations and parallax effects */
    *,
    *::before,
    *::after {
        background-attachment: scroll !important;
    }
    
    /* Ensure order page has solid background */
    .order-page {
        background: #0a0e27 !important;
        position: relative;
        z-index: 1;
    }
    
    /* Fix step 2 configure layout */
    .configure-layout {
        display: block;
    }
    
    .configure-form,
    .order-summary {
        background: rgba(10, 14, 39, 0.95);
    }
    
    .order-progress {
        animation: none !important;
    }
    
    .step-circle,
    .progress-line,
    .order-step,
    .product-card,
    .order-summary {
        animation: none !important;
        transform: none !important;
    }
    
    /* Simplify hover effects */
    .product-card:hover,
    .order-btn:hover {
        transform: none !important;
    }
    
    /* Reduce visual complexity */
    .account-form {
        animation: none !important;
    }
    
    /* Form sections solid background */
    .form-section {
        background: rgba(10, 14, 39, 0.95);
    }
    
    .billing-option {
        background: rgba(10, 14, 39, 0.8);
    }
}

/* All devices - ensure no parallax on order page */
.order-page,
.order-page * {
    background-attachment: scroll !important;
}

/* Hide body background gradient when on order page */
body:has(.order-page)::before,
body.order-page-active::before {
    opacity: 0 !important;
    display: none !important;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* PayPal Payment Styles */
.btn-paypal {
    background: linear-gradient(135deg, #0070ba 0%, #003087 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 112, 186, 0.3);
}

.btn-paypal:hover {
    background: linear-gradient(135deg, #005ea6 0%, #002370 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 112, 186, 0.4);
}

.btn-paypal i {
    font-size: 1.4rem;
}

.payment-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.paypal-benefits {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.paypal-benefits .benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.paypal-benefits .benefit i {
    color: #00d4ff;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .paypal-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-paypal {
        width: 100%;
        justify-content: center;
    }
}
