/* ===============================
   COMPONENT STYLES
=============================== */

/* Siigo Integration Status */
.siigo-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.siigo-status.connected {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.siigo-status.disconnected {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    color: #212529;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.siigo-status i {
    font-size: 16px;
    flex-shrink: 0;
}

.siigo-status small {
    display: block;
    opacity: 0.8;
    font-size: 12px;
    margin-top: 2px;
}

/* Loading Products State */
.loading-products {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-products p {
    color: var(--text-secondary);
    font-size: 16px;
    margin: 0;
}

/* Stock Status in Product Cards */
.product-card .stock-status {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card .stock-status.in-stock {
    background: rgba(40, 167, 69, 0.9);
    color: white;
}

.product-card .stock-status.low-stock {
    background: rgba(255, 193, 7, 0.9);
    color: #212529;
}

.product-card .stock-status.out-of-stock {
    background: rgba(220, 53, 69, 0.9);
    color: white;
}

.product-card .stock-info {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* Cart Stock Validation Styles */
.cart-item .quantity-input.stock-error {
    border-color: #dc3545 !important;
    background-color: rgba(220, 53, 69, 0.1);
}

.cart-item .stock-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid #ffc107;
    border-radius: 4px;
    padding: 8px;
    margin-top: 8px;
    font-size: 12px;
    color: #856404;
}

.cart-item .stock-warning i {
    margin-right: 5px;
}


/* Cart Item Component */
.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.cart-item:hover {
    background: var(--light-bg);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.cart-item-price {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    background: var(--light-bg);
    border-radius: 20px;
    overflow: hidden;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.quantity-input {
    width: 40px;
    height: 30px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 0.9rem;
    font-weight: 500;
}

.remove-item {
    width: 25px;
    height: 25px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.remove-item:hover {
    background: #e74c3c;
    transform: scale(1.1);
}

/* Empty Cart State */
.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-light);
}

.cart-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.cart-empty h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.cart-empty p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Alert Component */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.alert-success {
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.alert-error {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.alert-warning {
    background: rgba(241, 196, 15, 0.1);
    color: #f39c12;
    border: 1px solid rgba(241, 196, 15, 0.3);
}

.alert-info {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.alert i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.alert-close {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.alert-close:hover {
    opacity: 1;
}

/* Modal Component */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.8);
    transition: var(--transition-fast);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.modal-close {
    width: 35px;
    height: 35px;
    padding: 0;
    border: none;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 1.5rem;
    line-height: 1;
    color: var(--text-dark);
    flex-shrink: 0;
}

.modal-close:hover {
    background: var(--primary-color);
    color: var(--white);
}

.modal-body {
    margin-bottom: 1.5rem;
}

.modal-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Product Quick View */
.product-quickview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.quickview-image {
    position: relative;
}

.quickview-image img {
    width: 100%;
    border-radius: 10px;
}

.quickview-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.quickview-category {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.quickview-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.quickview-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.quickview-actions {
    display: flex;
    gap: 0.5rem;
}

/* Breadcrumb Component */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    color: var(--border-color);
    margin: 0 0.5rem;
}

/* Pagination Component */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-btn {
    padding: 8px 12px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Search Component */
.search-box {
    position: relative;
    max-width: 400px;
    margin: 0 auto 2rem;
}

.search-input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-btn:hover {
    background: var(--primary-dark);
}

/* Rating Component */
.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0.5rem 0;
}

.rating-star {
    color: #ffd700;
    font-size: 0.9rem;
}

.rating-star.empty {
    color: var(--border-color);
}

.rating-text {
    margin-left: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Badge Component */
.badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 12px;
    line-height: 1;
}

.badge-primary {
    background: var(--primary-color);
    color: var(--white);
}

.badge-success {
    background: #27ae60;
    color: var(--white);
}

.badge-warning {
    background: #f39c12;
    color: var(--white);
}

.badge-danger {
    background: #e74c3c;
    color: var(--white);
}

.badge-outline {
    background: transparent;
    border: 1px solid currentColor;
}

/* Progress Bar Component */
.progress {
    width: 100%;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Tooltip Component */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip::before,
.tooltip::after {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.tooltip::before {
    content: attr(data-tooltip);
    background: var(--dark-color);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 8px;
}

.tooltip::after {
    content: '';
    border: 4px solid transparent;
    border-top-color: var(--dark-color);
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
}

.tooltip:hover::before,
.tooltip:hover::after {
    opacity: 1;
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: var(--shadow-light);
}

.skeleton-image {
    height: 200px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.skeleton-text {
    height: 1rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.skeleton-text.short {
    width: 60%;
}

.skeleton-text.medium {
    width: 80%;
}

.skeleton-text.long {
    width: 100%;
}

/* Notification Toast */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 4000;
    max-width: 350px;
}

.toast {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-heavy);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transform: translateX(100%);
    opacity: 0;
    animation: slideInToast 0.3s ease forwards;
}

.toast.removing {
    animation: slideOutToast 0.3s ease forwards;
}

@keyframes slideInToast {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutToast {
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.toast-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--white);
    flex-shrink: 0;
}

.toast-success .toast-icon {
    background: #27ae60;
}

.toast-error .toast-icon {
    background: #e74c3c;
}

.toast-warning .toast-icon {
    background: #f39c12;
}

.toast-info .toast-icon {
    background: var(--primary-color);
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.toast-message {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    transition: var(--transition-fast);
}

.toast-close:hover {
    color: var(--text-dark);
}

/* ===============================
   SHIPPING CHECKOUT MODAL STYLES
   =============================== */

.shipping-checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.checkout-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
}

.checkout-header h2 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
}

.close-checkout {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.close-checkout:hover {
    color: #666;
}

/* Progress Bar */
.checkout-progress {
    display: flex;
    padding: 20px 30px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
}

.progress-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 120px;
}

.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #ddd;
    z-index: 1;
}

.progress-step.completed:not(:last-child)::after,
.progress-step.active:not(:last-child)::after {
    background: #007bff;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ddd;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.progress-step.active .step-number {
    background: #007bff;
}

.progress-step.completed .step-number {
    background: #28a745;
}

.step-label {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
}

.progress-step.active .step-label {
    color: #007bff;
    font-weight: 600;
}

/* Checkout Content */
.checkout-content {
    padding: 30px;
}

.checkout-step {
    display: none;
}

.checkout-step h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    font-size: 1.3rem;
}

/* Form Styles */
.checkout-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.checkout-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.checkout-form .form-group.full-width {
    flex: 1 1 100%;
}

.checkout-form label {
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.checkout-form input.error,
.checkout-form select.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.checkout-form textarea {
    resize: vertical;
    min-height: 80px;
}

/* Checkbox styles */
.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: normal !important;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Form sections */
.form-section {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.form-section h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-size: 1.1rem;
}

.fiscal-responsibilities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

/* Order Summary */
.order-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.summary-section {
    margin-bottom: 20px;
}

.summary-section h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-size: 1.1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.summary-item:last-child {
    border-bottom: none;
}

.item-name {
    flex: 1;
    font-weight: 500;
}

.item-quantity {
    color: #666;
    margin: 0 10px;
}

.item-price {
    font-weight: 600;
    color: #333;
}

.summary-totals {
    border-top: 2px solid #ddd;
    padding-top: 15px;
    margin-top: 15px;
}

.total-line {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 0.95rem;
}

.total-final {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-top: 10px;
}

.customer-summary {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.customer-summary h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.form-actions .btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #545b62;
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #1e7e34;
    transform: translateY(-1px);
}

/* Payment Section */
.payment-section {
    margin: 20px 0;
}

#wompi-payment-container {
    margin: 20px 0;
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #28a745;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
}

.success-content h2 {
    color: #333;
    margin-bottom: 15px;
}

.success-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.close-success {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s;
}

.close-success:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .checkout-modal-content {
        margin: 10px;
        max-height: 95vh;
    }
    
    .checkout-header,
    .checkout-content {
        padding: 20px;
    }
    
    .checkout-progress {
        padding: 15px 20px;
    }
    
    .progress-step {
        min-width: 80px;
    }
    
    .step-label {
        font-size: 0.7rem;
    }
    
    .checkout-form .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .fiscal-responsibilities {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .progress-step .step-label {
        display: none;
    }
    
    .checkout-header h2 {
        font-size: 1.2rem;
    }
}