﻿.site-header {
    position: static !important;
    background: white !important;
    border-bottom: 1px solid #e1e1e1;
    !important;
    box-shadow: none !important;
}

    .site-header .header-inner {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 1rem 0 !important;
        color: #393939;
        font-weight: 600;
        font-size: 38px;
        ;
    }

    .site-header .brand.logo {
        display: flex;
        align-items: center;
        gap: 0;
        margin: 0;
    }

        .site-header .brand.logo img {
            margin-right: 0;
        }

    .site-header nav {
        display: none !important;
    }

.logo-tagline {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
    font-weight: 400;
}

.order-now-link {
    color: #8b0000;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

    .order-now-link:hover {
        opacity: 0.8;
        text-decoration: underline;
    }

.order-main {
    padding: 25px 0 60px;
    min-height: 100vh;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

.order-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.order-header {
    text-align: center;
    margin-bottom: 24px;
}

    .order-header h1 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 30px;
    }

.order-steps {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: white;
    border: 2px solid #ddd;
    color: #333;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
}

.step-item.active .step-number {
    background: #e11d48;
    border-color: #e11d48;
    color: white;
}


/* New Code Added By Sumanta Ghosh */

.step-item.cloud-active .step-number {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

.step-item.cloud-active .step-label {
    color: #2563eb;
}


.step-label {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-align: center;
}

.step-item.active .step-label {
    color: #e11d48;
}
/* Theme Toggle Buttons */
.theme-toggle {
    display: none;
}

.theme-btn {
    padding: 10px 24px;
    border: 2px solid #ddd;
    border-radius: 6px;
    background: white;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .theme-btn:hover {
        border-color: #999;
        background: #f5f5f5;
    }

    .theme-btn.active {
        border-color: #e11d48;
        background: #e11d48;
        color: white;
    }

    .theme-btn.blue-theme.active {
        border-color: #2563eb;
        background: #2563eb;
        color: white;
    }
/* Red Theme (Desktop) */
.theme-red .step-item.active .step-number {
    background: #e11d48;
    border-color: #e11d48;
    color: white;
}

.theme-red .step-item.active .step-label {
    color: #e11d48;
}

.theme-red .order-section h2 {
    border-bottom-color: #e11d48;
}

.theme-red .form-group label .required {
    color: #e11d48;
}

.theme-red .form-group input:focus, .theme-red .form-group select:focus, .theme-red .form-group textarea:focus {
    border-color: #e11d48;
    box-shadow: 0 0 0 2px rgba(225, 29, 72, 0.1);
}

.theme-red .order-details-form .form-group input:focus {
    border-color: #e11d48;
    box-shadow: 0 0 0 2px rgba(225, 29, 72, 0.1);
}

.theme-red .promo-code-group button {
    background: #e11d48;
}

    .theme-red .promo-code-group button:hover {
        background: #c91a3d;
    }

.theme-red .continue-button {
    background: #e11d48;
}

    .theme-red .continue-button:hover {
        background: #c91a3d;
    }

.theme-red .back-button {
    background: #e11d48;
}

    .theme-red .back-button:hover {
        background: #c91a3d;
    }

.theme-red .payment-option:hover {
    border-color: #e11d48;
    background: #fff5f7;
}

.theme-red .submit-button {
    background: #e11d48;
}

    .theme-red .submit-button:hover {
        background: #c91a3d;
        box-shadow: 0 4px 8px rgba(225, 29, 72, 0.3);
    }

.theme-red .required-note .required {
    color: #e11d48;
}
/* Blue Theme (Cloud) */
.theme-blue .step-item.active .step-number {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

.theme-blue .step-item.active .step-label {
    color: #2563eb;
}

.theme-blue .order-section h2 {
    border-bottom-color: #2563eb;
}

.theme-blue .form-group label .required {
    color: #2563eb;
}

.theme-blue .form-group input:focus, .theme-blue .form-group select:focus, .theme-blue .form-group textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.theme-blue .order-details-form .form-group input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.theme-blue .promo-code-group button {
    background: #2563eb;
}

    .theme-blue .promo-code-group button:hover {
        background: #1d4ed8;
    }

.theme-blue .continue-button {
    background: #2563eb;
}

    .theme-blue .continue-button:hover {
        background: #1d4ed8;
    }

.theme-blue .back-button {
    background: #2563eb;
}

    .theme-blue .back-button:hover {
        background: #1d4ed8;
    }

.theme-blue .bank-details-link {
    color: #2563eb;
}

.theme-blue .payment-option:hover {
    border-color: #2563eb;
    background: #eff6ff;
}

.theme-blue .submit-button {
    background: #2563eb;
}

    .theme-blue .submit-button:hover {
        background: #1d4ed8;
        box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
    }

.theme-blue .required-note .required {
    color: #2563eb;
}

.gst-notice {
    margin-bottom: 25px;
    font-size: 16px;
    color: #000000;
    text-align: center;
}

    .gst-notice strong {
        color: #000000;
        font-weight: 700;
    }

.order-section {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .order-section h2 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 24px;
        padding-bottom: 12px;
        border-bottom: 1px solid #e11d48;
    }

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .form-group label {
        font-weight: 600;
        color: #333;
        font-size: 14px;
    }

        .form-group label .required {
            color: #e11d48;
            margin-left: 4px;
        }

    .form-group input, .form-group select, .form-group textarea {
        padding: 10px 14px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 14px;
        font-family: inherit;
        transition: all 0.3s ease;
        width: 100%;
        box-sizing: border-box;
    }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            outline: none;
            border-color: #e11d48;
            box-shadow: 0 0 0 2px rgba(225, 29, 72, 0.1);
        }

    .form-group small {
        color: #666;
        font-size: 12px;
        margin-top: 4px;
    }

.order-details-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

    .order-details-form .form-group {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

        .order-details-form .form-group label {
            font-weight: 600;
            color: #333;
            font-size: 14px;
            min-width: 180px;
            flex-shrink: 0;
        }

        .order-details-form .form-group input {
            padding: 8px 14px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            font-family: inherit;
            transition: all 0.3s ease;
            flex: 1;
            box-sizing: border-box;
            background: #f5f5f5;
        }

            .order-details-form .form-group input[type="number"] {
                text-align: left;
            }

            .order-details-form .form-group input[readonly] {
                background: #f5f5f5;
                cursor: not-allowed;
            }

            .order-details-form .form-group input:focus, .order-details-form .form-group select:focus, .order-details-form .form-group textarea:focus {
                border-color: #e11d48;
                outline: none;
                box-shadow: 0 0 0 2px rgba(225, 29, 72, 0.1);
            }

        .order-details-form .form-group select {
            padding: 8px 14px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            font-family: inherit;
            transition: all 0.3s ease;
            flex: 1;
            box-sizing: border-box;
            background: #f5f5f5;
        }

        .order-details-form .form-group textarea {
            padding: 8px 14px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            font-family: inherit;
            transition: all 0.3s ease;
            flex: 1;
            box-sizing: border-box;
            background: #f5f5f5;
            resize: vertical;
        }

.verification-code .form-group {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.billing-details-header {
    margin-bottom: 15px;
}

.billing-required-note {
    margin-bottom: 0;
}

    .billing-required-note .required-note {
        margin: 0;
        font-size: 14px;
        color: #333;
    }

.form-group-with-promo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

    .form-group-with-promo .form-group {
        flex: 1;
    }

.promo-code-inline {
    display: flex;
    align-items: center;
    min-width: 200px;
    justify-content: flex-end;
}

.promo-label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.promo-code-field {
    margin-top: -10px;
}

    .promo-code-field .form-group {
        margin: 0;
    }

.promo-code-group {
    display: flex;
    gap: 8px;
    align-items: center;
}

    .promo-code-group input {
        padding: 8px 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 13px;
        width: 150px;
    }

    .promo-code-group button {
        padding: 8px 16px;
        background: #e11d48;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-weight: 600;
        font-size: 13px;
    }

        .promo-code-group button:hover {
            background: #c91a3d;
        }

.order-details-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.continue-button {
    background: #e11d48;
    color: white;
    border: none;
    padding: 8px 40px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

    .continue-button:hover {
        background: #c91a3d;
    }

.back-button {
    background: #e11d48;
    color: white;
    border: none;
    padding: 8px 40px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

    .back-button:hover {
        background: #c91a3d;
    }

.bank-details-link-container {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 30px;
}

.bank-details-link {
    color: #2563eb;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

    .bank-details-link:hover {
        text-decoration: underline;
    }

.bank-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bank-details-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close-bank-details {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e11d48;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

    .close-bank-details:hover {
        background: #c91a3d;
    }

.bank-details {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #ddd;
}

    .bank-details h3 {
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 16px;
        color: #333;
    }

.bank-item {
    margin-bottom: 20px;
    padding: 16px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
}

    .bank-item:last-child {
        margin-bottom: 0;
    }

    .bank-item strong {
        display: block;
        margin-bottom: 12px;
        color: #333;
        font-size: 16px;
        font-weight: 700;
    }

    .bank-item p {
        margin: 6px 0;
        font-size: 14px;
        color: #666;
        line-height: 1.6;
    }

.payment-options {
    display: grid;
    gap: 16px;
    margin-bottom: 20px;
}

.payment-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .payment-option:hover {
        border-color: #e11d48;
        background: #fff5f7;
    }

    .payment-option input[type="radio"] {
        width: 20px;
        height: 20px;
        cursor: pointer;
        margin-top: 2px;
    }

    .payment-option label {
        flex: 1;
        cursor: pointer;
        font-weight: 500;
        margin: 0;
    }

        .payment-option label strong {
            display: block;
            margin-bottom: 4px;
            color: #333;
        }

    .payment-option small {
        display: block;
        color: #666;
        font-size: 12px;
        margin-top: 4px;
    }

.verification-code {
    margin-top: 5px;
}

    .verification-code .form-group {
        display: flex !important;
        flex-direction: row;
        align-items: left !important;
        justify-content: flex-start !important;
        gap: 20px !important;
        flex-wrap: nowrap !important;
    }

    .verification-code label {
        min-width: 150px;
        flex-shrink: 0;
        white-space: nowrap;
        width: auto !important;
        font-weight: 600;
        color: #333;
        font-size: 14px;
        text-align: left;
        margin: 0;
    }

.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    flex: 0 0 auto;
    margin-left: 0;
}

.captcha-display {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100px;
    height: 35px;
    background: #e5e5e5;
    border: 1px solid #bbb;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #444;
    user-select: none;
    font-family: 'Courier New', monospace;
    background-image: repeating-linear-gradient(0deg, rgba(0,0,0,.03) 0px, rgba(0,0,0,.03) 1px, transparent 1px, transparent 2px), repeating-linear-gradient(90deg, rgba(0,0,0,.03) 0px, rgba(0,0,0,.03) 1px, transparent 1px, transparent 2px);
    flex-shrink: 0;
}

.captcha-refresh-icon {
    width: 18px;
    height: 18px;
    cursor: pointer;
    color: #888;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .captcha-refresh-icon:hover {
        color: #333;
        transform: rotate(90deg);
    }

.theme-blue .captcha-refresh-icon:hover {
    color: #2563eb;
}

.captcha-refresh-icon svg {
    width: 100%;
    height: 100%;
}

.captcha-input-field {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 180px;
    font-family: inherit;
    flex-shrink: 0;
}

.captcha-error {
    color: #e11d48;
    font-size: 12px;
    margin-top: 4px;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
}

.theme-blue .captcha-error {
    color: #2563eb;
}

.verification-code-input-wrapper {
    position: relative;
    flex-shrink: 0;
}

.order-summary-wrapper {
    width: 100%;
    position: relative;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.order-summary {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-width: 1000px;
    width: 100%;
    max-width: 1000px;
    box-sizing: border-box;
}

@media (max-width: 1020px) {
    .order-summary {
        min-width: calc(100% - 40px);
        max-width: calc(100% - 40px);
    }
}

.order-summary-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-bottom: 0px;
}

.order-summary-section {
    padding: 0;
}

.order-summary h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #c91a3d;
    padding-bottom: 0;
    border-bottom: none;
    text-transform: none;
    letter-spacing: 0;
}

.theme-blue .order-summary h3 {
    color: #1d4ed8;
}

.summary-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
}

    .summary-table.order-details-table tr {
        border-bottom: 1px solid #e5e5e5;
    }

    .summary-table.billing-details-table tr {
        border-bottom: none;
    }

    .summary-table td {
        padding: 10px 0;
        font-size: 14px;
        vertical-align: top;
    }

    .summary-table.order-details-table td:first-child {
        font-weight: 700;
        color: #666;
        width: 45%;
        padding-right: 15px;
    }

    .summary-table.billing-details-table td {
        font-size: 12px;
        padding: 4px 0;
    }

        .summary-table.billing-details-table td:first-child {
            font-weight: 400;
            color: #666;
            width: 45%;
            padding-right: 15px;
        }

        .summary-table.billing-details-table td:last-child {
            font-size: 12px;
        }

    .summary-table td:last-child {
        text-align: right;
        color: #333;
        font-weight: 400;
        width: 55%;
    }

.order-summary-section:last-child h3 {
    font-size: 1.25rem;
}

.summary-table.order-details-table tr:last-child td {
    border-bottom: none;
}

.summary-table tr.total-row td {
    padding: 12px 0;
}

    .summary-table tr.total-row td:first-child {
        color: #333;
        font-weight: 700;
    }

    .summary-table tr.total-row td:last-child {
        color: #333;
        font-weight: 700;
        font-size: 14px;
    }

.order-summary-footer {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding-top: 20px;
    margin-top: 20px;
    ;
    border-top: 1px solid #e5e5e5;
}

.review-button, .submit-button {
    background: #e11d48;
    color: white;
    border: none;
    padding: 8px 30px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
}

    .review-button:hover, .submit-button:hover {
        background: #c91a3d;
    }

.theme-blue .review-button, .theme-blue .submit-button {
    background: #2563eb;
}

    .theme-blue .review-button:hover, .theme-blue .submit-button:hover {
        background: #1d4ed8;
    }

.required-note {
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

    .required-note .required {
        color: #e11d48;
    }

@media (max-width: 768px) {
    .order-header h1 {
        font-size: 2rem;
    }

    .order-steps {
        flex-direction: row;
        justify-content: space-around;
        gap: 10px;
    }

    .step-item {
        gap: 2px;
    }

    .step-label {
        font-size: 16px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .order-section {
        padding: 20px;
    }

    .order-details-form .form-group {
        flex-direction: column;
        align-items: flex-start;
    }

        .order-details-form .form-group label {
            min-width: auto;
            width: 100%;
        }

        .order-details-form .form-group input {
            width: 100%;
        }

    .verification-code .form-group {
        flex-wrap: wrap;
        gap: 10px;
        flex-direction: column !important;
    }

    .verification-code label {
        min-width: auto;
        width: 100%;
    }

    .captcha-wrapper {
        width: 100%;
        flex-wrap: nowrap;
    }

    .captcha-display {
        width: 100px;
    }

    .captcha-input-field {
        width: 150px;
        flex: 1;
        min-width: 120px;
    }

    .order-summary-wrapper {
        padding: 0 20px;
    }

    .order-summary {
        min-width: auto;
        width: 100%;
        max-width: 100%;
    }

    .order-summary-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .order-summary-footer {
        justify-content: center;
        flex-wrap: wrap;
    }

    .site-header .header-inner {
        font-size: 24px !important;
        padding: .4rem 1.25rem !important;
    }
}

@media (max-width: 480px) {
    .order-steps {
        flex-wrap: wrap;
        gap: 8px;
    }

    .step-item {
        gap: 2px;
    }

    .step-label {
        font-size: 14px;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }    
}

.theme-red .promo-code-group button {
    background: #e11d48;
}

.promo-code-group button {
    padding: 8px 16px;
    background: #e11d48;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
}

button {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
}
