﻿
:root {
    --primary-green: #177e3f;
    --primary-hover: #125e30;
    --light-green: #e8f5ed;
    --border-radius: 5px;
    --primary-green: #177e3f;
    --primary-hover: #125e30;
    --light-green: #e8f5ed;
    --border-radius: 12px;
    --shadow-sm: 0 2px 8px rgba(23, 126, 63, 0.08);
    --shadow-md: 0 4px 16px rgba(23, 126, 63, 0.12);
    --shadow-lg: 0 8px 32px rgba(23, 126, 63, 0.16);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, #1a9d4f 100%);
    border-radius: var(--border-radius);
    padding: 2rem 2.5rem;
    margin-bottom: 2.5rem;
    color: white !important;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
/* Main Card */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    background: white;
    overflow: hidden;
}

.card-body {
    padding: 3rem;
}

.add-category-btn {
    background: white;
    color: var(--primary-green);
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .add-category-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        background: #f8f9fa;
        color: var(--primary-green);
    }

.category-card {
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    background: white;
    overflow: hidden;
    position: relative;
}

    .category-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: var(--primary-green);
        transition: width 0.3s ease;
    }

    .category-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(23, 126, 63, 0.15);
        border-color: var(--primary-green);
    }

        .category-card:hover::before {
            width: 100%;
            opacity: 0.05;
        }

    .category-card .card-body {
        padding: 1.5rem;
    }

    .category-card h6 {
        font-size: 20px !important;
        font-weight: 600;
        color: #2c3e50;
        margin: 0;
    }

    .category-card i {
        color: var(--primary-green);
        transition: transform 0.3s ease;
        font-size: 25px !important;
    }

    .category-card:hover i {
        transform: translateX(5px);
    }

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--light-green);
    border-radius: var(--border-radius);
    border: 2px dashed var(--primary-green);
}

    .empty-state i {
        font-size: 4rem;
        color: var(--primary-green);
        margin-bottom: 1rem;
        opacity: 0.5;
    }

    .empty-state h5 {
        color: var(--primary-green);
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .empty-state p {
        color: #5a6c7d;
        margin: 0;
    }

.modal-content {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, #1a9d4f 100%);
    color: white;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    padding: 1.5rem;
    border: none;
}

    .modal-header .modal-title {
        font-weight: 600;
        font-size: 1.3rem;
    }

    .modal-header .btn-close {
        filter: brightness(0) invert(1);
        opacity: 0.8;
    }

        .modal-header .btn-close:hover {
            opacity: 1;
        }

.modal-body {
    padding: 2rem;
}

.form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control, .form-select {
    border: 1px solid #e7e5e5 !important;
    border-radius: 5px !important;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

    .form-control:focus {
        border-color: var(--primary-green);
        box-shadow: 0 0 0 4px rgba(23, 126, 63, 0.1);
    }

.submit-btn {
    width: 100%;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0.9rem;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

    .submit-btn:hover {
        background: var(--primary-hover);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(23, 126, 63, 0.3);
    }

    .submit-btn i {
        margin-right: 0.5rem;
    }

.category-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.category-count {
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}


.add-category-btn {
    padding: 8px 18px;
}

input[type=text], input[type=number] {
    line-height: 43px !important;
}

.unit {
    line-height: 28px !important;
    font-size: 15px;
}

.form-label {
    font-size: 16px !important;
}

.btn-outline-danger {
    width: 50px;
}

    .btn-outline-danger:hover {
        color: white !important;
    }

.form-control.is-invalid, .form-select.is-invalid {
    border-color: #dc3545 !important;
    padding-right: calc(1.5em + 0.75rem) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M6 3.5v3M6 8.5h.01'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right calc(0.375em + 0.1875rem) center !important;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) !important;
}

.table-heading, .addRowBtn, .submitbutton{
    background: #177e3f !important;
}
/* CKEditor Container */
.ck-editor__editable {
    min-height: 150px;
    border-radius: 8px;
}

/*--------- Product Pages Description -----------*/

/*
:root {
    --color-primary: #177e3f;
    --color-primary-light: #1a9d4f;
    --color-primary-dark: #125e30;
    --color-success: #48bb78;
    --color-light: #f7fafc;
    --shadow-sm: 0 2px 8px rgba(23, 126, 63, 0.08);
    --shadow-md: 0 4px 16px rgba(23, 126, 63, 0.12);
    --shadow-lg: 0 8px 32px rgba(23, 126, 63, 0.16);
}

* {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}
*/
.checkout-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
    min-height: 100vh;
}

/* ============================================
       ENHANCED PROGRESS TRACKER
    ============================================ */
.progress-tracker-wrapper {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

    .progress-tracker-wrapper::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(23, 126, 63, 0.05) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 8s ease-in-out infinite;
    }

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, 30px) scale(1.1);
    }
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

    /* Progress Line Background */
    .progress-steps::before {
        content: '';
        position: absolute;
        top: 35px;
        left: calc(12.5% + 30px);
        right: calc(12.5% + 30px);
        height: 4px;
        background: linear-gradient(90deg, #e2e8f0 0%, #cbd5e0 100%);
        border-radius: 10px;
        z-index: 0;
    }

/* Animated Progress Line */
.progress-line-active {
    position: absolute;
    top: 35px;
    left: calc(12.5% + 30px);
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light), var(--color-success));
    background-size: 200% 100%;
    border-radius: 10px;
    z-index: 1;
    width: 0%;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation: shimmer 2s infinite;
    box-shadow: 0 0 20px rgba(23, 126, 63, 0.4);
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Step Container */
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 150px;
}

/* Step Icon Circle */
.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    border: 4px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #cbd5e0;
    margin-bottom: 1rem;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Inactive Step */
.step .step-icon {
    transform: scale(0.9);
}

/* Active Step */
.step.active .step-icon {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-color: var(--color-primary);
    color: white;
    transform: scale(1.15);
    box-shadow: 0 0 0 12px rgba(23, 126, 63, 0.1), 0 8px 24px rgba(23, 126, 63, 0.3);
    animation: pulse-active 2s infinite;
}

@keyframes pulse-active {
    0%, 100% {
        box-shadow: 0 0 0 12px rgba(23, 126, 63, 0.1), 0 8px 24px rgba(23, 126, 63, 0.3);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(23, 126, 63, 0.05), 0 12px 32px rgba(23, 126, 63, 0.4);
    }
}

/* Completed Step */
.step.completed .step-icon {
    background: linear-gradient(135deg, var(--color-success) 0%, #38a169 100%);
    border-color: var(--color-success);
    color: white;
    transform: scale(1);
    box-shadow: 0 4px 16px rgba(72, 187, 120, 0.4);
}

    /* Checkmark Animation for Completed Steps */
    .step.completed .step-icon i {
        animation: checkmark 0.5s ease;
    }

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }

    50% {
        transform: scale(1.3) rotate(10deg);
    }

    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

/* Step Label */
.step-label {
    font-size: 14px;
    font-weight: 600;
    color: #94a3b8;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.step.active .step-label {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 15px;
}

.step.completed .step-label {
    color: var(--color-success);
    font-weight: 700;
}

/* ============================================
       ALERT MESSAGES
    ============================================ */
.alert {
    border: none;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.alert-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border-left: 5px solid var(--color-success);
}

.alert-danger {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border-left: 5px solid #dc2626;
}

/* ============================================
       MAIN GRID LAYOUT
    ============================================ */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 1200px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .order-summary-sticky {
        position: relative !important;
        top: 0 !important;
    }
}

/* ============================================
       SECTION CARDS
    ============================================ */
.checkout-section {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .checkout-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .checkout-section:hover::before {
        transform: scaleX(1);
    }

    .checkout-section:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-4px);
    }

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.section-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(23, 126, 63, 0.3);
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    flex: 1;
}

/* ============================================
       USER INFO CARDS
    ============================================ */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

    .info-item:hover {
        background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
        border-left-width: 6px;
        transform: translateX(4px);
        box-shadow: var(--shadow-sm);
    }

.info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light)) !important;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(23, 126, 63, 0.2);
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.info-value {
    font-size: 16px;
    color: #1e293b;
    font-weight: 600;
    line-height: 1.6;
}

/* ============================================
       ORDER TABLE
    ============================================ */
.order-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

    .order-table thead {
        background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    }

    .order-table th {
        padding: 1.25rem 1rem;
        text-align: left;
        font-size: 13px;
        font-weight: 700;
        color: white;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }

    .order-table tbody tr {
        background: white;
        transition: all 0.2s ease;
    }

        .order-table tbody tr:hover {
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
            transform: scale(1.01);
            box-shadow: 0 2px 8px rgba(23, 126, 63, 0.1);
        }

    .order-table td {
        padding: 1.25rem 1rem;
        font-size: 15px;
        color: #334155;
        border-bottom: 1px solid #f1f5f9;
        vertical-align: middle;
    }

    .order-table tbody tr:last-child td {
        border-bottom: none;
    }

.product-name {
    font-weight: 700;
    color: #1e293b;
    font-size: 16px;
}

.product-qty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: white;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    min-width: 50px;
    box-shadow: 0 4px 8px rgba(23, 126, 63, 0.2);
}

.product-price,
.product-total {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 17px;
}

/* ============================================
       PAYMENT METHODS
    ============================================ */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: white;
    border: 3px solid #e2e8f0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

    .payment-method::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .payment-method:hover {
        border-color: var(--color-primary);
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .payment-method.selected {
        background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
        border-color: var(--color-primary);
        border-width: 4px;
        box-shadow: 0 0 0 4px rgba(23, 126, 63, 0.1);
    }

        .payment-method.selected::after {
            content: '✓';
            position: absolute;
            top: 8px;
            right: 8px;
            width: 28px;
            height: 28px;
            background: var(--color-success);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
            animation: checkmark 0.4s ease;
        }

.payment-method-icon {
    font-size: 36px;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.payment-method:hover .payment-method-icon {
    transform: scale(1.1);
}

.payment-method-name {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ============================================
       ORDER SUMMARY SIDEBAR
    ============================================ */
.order-summary-sticky {
    position: sticky;
    top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 15px;
}

.summary-label {
    color: #64748b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .summary-label i {
        color: var(--color-primary);
        font-size: 18px;
    }

.summary-value {
    color: #1e293b;
    font-weight: 700;
    font-size: 16px;
}

/* ============================================
       GRAND TOTAL BOX
    ============================================ */
.grand-total-box {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-radius: 16px;
    padding: 1.75rem;
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 16px rgba(23, 126, 63, 0.2);
    border: 2px solid var(--color-primary);
}

.grand-total-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .grand-total-label i {
        font-size: 22px;
    }

.grand-total-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-primary);
    text-shadow: 2px 2px 4px rgba(23, 126, 63, 0.1);
}

/* ============================================
       CHECKOUT BUTTONS
    ============================================ */
.checkout-btn-final {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%) !important;
    color: white;
    font-size: 18px;
    font-weight: 700;
    width: 100%;
    padding: 1.25rem 2rem;
    border-radius: 14px;
    margin-top: 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: none;
    box-shadow: 0 8px 24px rgba(23, 126, 63, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .checkout-btn-final::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .checkout-btn-final:hover::before {
        width: 400px;
        height: 400px;
    }

    .checkout-btn-final:hover {
        background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-success) 100%) !important;
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(23, 126, 63, 0.4);
        color: white;
        text-decoration: none;
    }

    .checkout-btn-final i {
        position: relative;
        z-index: 1;
    }

/* ============================================
       SECURITY BADGE
    ============================================ */
.security-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 12px;
    margin-top: 1.5rem;
    border: 2px solid #bbf7d0;
    box-shadow: var(--shadow-sm);
}

    .security-badge i {
        font-size: 28px;
        color: var(--color-success);
        animation: shield-pulse 2s infinite;
    }

@keyframes shield-pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.security-badge-text {
    flex: 1;
}

    .security-badge-text strong {
        display: block;
        font-size: 15px;
        color: var(--color-primary);
        margin-bottom: 0.25rem;
        font-weight: 700;
    }

    .security-badge-text span {
        font-size: 13px;
        color: #64748b;
        font-weight: 500;
    }

/* ============================================
       UTILITY CLASSES
    ============================================ */
.hidden {
    display: none !important;
}

/* ============================================
       EMPTY CART STATE
    ============================================ */
.empty-cart-state {
    text-align: center;
    padding: 4rem 2rem;
}

    .empty-cart-state i {
        font-size: 100px;
        color: #cbd5e0;
        margin-bottom: 2rem;
        animation: float 3s ease-in-out infinite;
    }

    .empty-cart-state h3 {
        font-size: 28px;
        font-weight: 700;
        color: #475569;
        margin-bottom: 1rem;
    }

    .empty-cart-state p {
        font-size: 18px;
        color: #94a3b8;
        margin-bottom: 2rem;
    }

/* ============================================
       RESPONSIVE DESIGN
    ============================================ */
@media (max-width: 768px) {
    .checkout-wrapper {
        padding: 2rem 1rem;
    }

    .progress-tracker-wrapper {
        padding: 2rem 1rem;
    }

    .progress-steps {
        padding: 0 0.5rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .step.active .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-label {
        font-size: 11px;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 18px;
    }

    .grand-total-value {
        font-size: 24px;
    }
}




