/**
 * Checkout Step 2 - Address & Shipping Styles
 * تصميم خطوة العنوان والشحن - أنيق ومحسّن
 */

/* ============================================
   إعادة تعيين وتخطيط رئيسي
   ============================================ */
#checkout-address {
    padding: 0 !important;
}

#checkout-address > .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.75rem;
}

#checkout-address > .row > [class*="col-"] {
    padding: 0 0.75rem;
    margin-bottom: 1.25rem;
}

/* ============================================
   الكارت الأساسي - مشترك
   ============================================ */
.addresses-section-card,
.shipping-section-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.addresses-section-card .card-header,
.shipping-section-card .card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 1.25rem;
    flex-shrink: 0;
}

.addresses-section-card .card-header .card-title,
.shipping-section-card .card-header .card-title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.addresses-section-card .card-header .card-title i {
    color: #7367f0;
    font-size: 1.25rem;
}

.shipping-section-card .card-header .card-title i {
    color: #ff9f43;
    font-size: 1.25rem;
}

.addresses-section-card .card-body,
.shipping-section-card .card-body {
    padding: 1.25rem;
    flex: 1;
    overflow-y: auto;
}

/* ============================================
   قائمة العناوين المحفوظة - تصميم شبكي Compact
   ============================================ */
#saved-addresses-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}

/* ============================================
   كارت العنوان - تصميم Compact وأنيق
   ============================================ */
.address-card {
    position: relative;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.address-card:hover {
    border-color: #7367f0;
    box-shadow: 0 8px 25px rgba(115, 103, 240, 0.15);
    transform: translateY(-3px);
}

.address-card.selected {
    border-color: #7367f0;
    background: linear-gradient(135deg, #f8f7ff 0%, #fff 100%);
    box-shadow: 0 8px 25px rgba(115, 103, 240, 0.2);
}

/* مؤشر الاختيار */
.address-card .selected-indicator {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #7367f0 0%, #9f97f7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(115, 103, 240, 0.4);
}

.address-card.selected .selected-indicator {
    opacity: 1;
    transform: scale(1);
}

.address-card .selected-indicator i {
    color: #fff;
    font-size: 0.85rem;
    font-weight: bold;
}

/* رأس كارت العنوان - Compact */
.address-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
    border-bottom: 1px solid #e2e8f0;
    gap: 0.75rem;
}

.address-card.selected .address-card-header {
    background: linear-gradient(135deg, #ede9fe 0%, #f3f0ff 100%);
    border-bottom-color: #ddd6fe;
}

.address-card-title {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex: 1;
    min-width: 0;
}

.address-card-title .title-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #7367f0 0%, #9f97f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(115, 103, 240, 0.3);
}

.address-card-title .title-icon i {
    color: #fff;
    font-size: 1.05rem;
}

.address-card-title .title-text {
    font-weight: 700;
    font-size: 1.05rem;
    color: #1e293b;
}

.address-card-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.address-badge {
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.address-badge.default {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
}

.address-badge.selected-badge {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    color: #5b21b6;
}

/* محتوى كارت العنوان - Compact مع صفين */
.address-card-body {
    padding: 0.85rem 1rem;
}

/* تصميم Compact - صفين */
.address-compact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1rem;
}

.address-compact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.address-compact-item .item-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.address-card.selected .address-compact-item .item-icon {
    background: #ede9fe;
}

.address-compact-item .item-icon i {
    color: #7367f0;
    font-size: 0.8rem;
}

.address-compact-item .item-text {
    flex: 1;
    min-width: 0;
}

.address-compact-item .item-label {
    font-size: 0.68rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    line-height: 1.2;
}

.address-compact-item .item-value {
    color: #334155;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* العنوان الكامل - يأخذ صف كامل */
.address-compact-full {
    grid-column: 1 / -1;
    padding-top: 0.5rem;
    margin-top: 0.3rem;
    border-top: 1px dashed #e2e8f0;
}

.address-compact-full .item-value {
    white-space: normal;
    font-size: 0.88rem;
}

.address-compact-full .item-extra {
    font-size: 0.78rem;
    color: #64748b;
    margin-top: 0.25rem;
}

/* التصميم القديم للتوافق */
.address-info-row {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.5rem 0;
    border-bottom: 1px dashed #e2e8f0;
}

.address-info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.address-info-row:first-child {
    padding-top: 0;
}

.address-info-row .info-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.address-card.selected .address-info-row .info-icon {
    background: #ede9fe;
}

.address-info-row .info-icon i {
    color: #7367f0;
    font-size: 0.85rem;
}

.address-info-row .info-content {
    flex: 1;
    min-width: 0;
}

.address-info-row .info-label {
    font-size: 0.72rem;
    color: #94a3b8;
    margin-bottom: 0.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.address-info-row .info-value {
    color: #334155;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    word-break: break-word;
}

/* ============================================
   زر إضافة عنوان جديد
   ============================================ */
.btn-add-address {
    width: 100%;
    background: linear-gradient(135deg, #7367f0 0%, #9f97f7 100%);
    border: none;
    border-radius: 12px;
    padding: 0.9rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(115, 103, 240, 0.3);
}

.btn-add-address:hover {
    background: linear-gradient(135deg, #5e50ee 0%, #8b80f5 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(115, 103, 240, 0.4);
    color: #fff;
}

.btn-add-address i {
    font-size: 1.15rem;
}

/* ============================================
   نموذج العنوان الجديد - محسّن
   ============================================ */
#newAddressForm {
    margin-top: 1rem;
}

#newAddressForm .card {
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

#newAddressForm .card-header {
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 1.25rem;
}

#newAddressForm .card-header .card-title {
    color: #1e293b;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#newAddressForm .card-body {
    padding: 1.25rem;
}

#newAddressForm .form-group {
    margin-bottom: 1rem;
}

#newAddressForm .form-group label {
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.5rem;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

#newAddressForm .form-group label i {
    font-size: 1rem;
    color: #7367f0;
}

#newAddressForm .form-control {
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background: #fff;
    height: auto;
}

#newAddressForm .form-control:focus {
    border-color: #7367f0;
    box-shadow: 0 0 0 3px rgba(115, 103, 240, 0.12);
    outline: none;
}

#newAddressForm .form-control::placeholder {
    color: #a0aec0;
    font-size: 0.9rem;
}

#newAddressForm select.form-control {
    padding-right: 2.5rem;
    cursor: pointer;
}

#newAddressForm .btn-primary {
    background: linear-gradient(135deg, #7367f0 0%, #9f97f7 100%);
    border: none;
    border-radius: 12px;
    padding: 0.9rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(115, 103, 240, 0.3);
}

#newAddressForm .btn-primary:hover {
    background: linear-gradient(135deg, #5e50ee 0%, #8b80f5 100%);
    transform: translateY(-1px);
}

/* ============================================
   حقل الهاتف مع كود الدولة - محسّن
   ============================================ */
.phone-input-group {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    transition: all 0.2s ease;
    background: #fff;
}

.phone-input-group:focus-within {
    border-color: #7367f0;
    box-shadow: 0 0 0 3px rgba(115, 103, 240, 0.12);
}

.phone-input-group .phone-code-select {
    width: 110px;
    min-width: 110px;
    border: none;
    border-radius: 0;
    border-left: 2px solid #e2e8f0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 0.75rem 0.6rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    cursor: pointer;
    text-align: center;
    direction: ltr;
}

.phone-input-group .phone-code-select:focus {
    outline: none;
    background: linear-gradient(135deg, #ede9fe 0%, #f3f0ff 100%);
}

.phone-input-group .phone-number-input {
    flex: 1;
    border: none;
    border-radius: 0;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    direction: ltr;
    text-align: left;
}

.phone-input-group .phone-number-input:focus {
    outline: none;
    box-shadow: none;
}

/* كود الدولة المحسّن - بدون emoji */
.phone-code-display {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    color: #1e293b;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 0.75rem 0.8rem;
    border-left: 2px solid #e2e8f0;
    min-width: 85px;
    justify-content: center;
    font-size: 0.95rem;
    direction: ltr;
}

/* الخريطة - محسّنة */
#map-container {
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#map {
    height: 100%;
    width: 100%;
}

.map-search-box {
    position: relative;
    margin-bottom: 0.75rem;
}

.map-search-box input {
    padding-right: 42px;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    padding: 0.7rem 1rem;
    font-size: 0.92rem;
    width: 100%;
    transition: all 0.2s ease;
}

.map-search-box input:focus {
    border-color: #7367f0;
    box-shadow: 0 0 0 3px rgba(115, 103, 240, 0.12);
    outline: none;
}

.map-search-box i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #7367f0;
    font-size: 1.05rem;
}

/* زر الموقع الحالي */
.get-current-location {
    padding: 0.5rem 1rem;
    font-size: 0.88rem;
    border-radius: 8px;
    font-weight: 600;
}

/* حالة لا توجد عناوين */
#no-saved-addresses {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
}

#no-saved-addresses i {
    font-size: 3rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
    display: block;
}

#no-saved-addresses p {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

#addresses-loading {
    padding: 2.5rem 1.5rem;
    text-align: center;
}

#addresses-loading .spinner-border {
    width: 2.75rem;
    height: 2.75rem;
    color: #7367f0;
}

#addresses-loading p {
    font-size: 1rem;
    color: #64748b;
    margin-top: 1.25rem;
    font-weight: 500;
}

/* ============================================
   قسم طرق الشحن
   ============================================ */
#shipping-methods-container {
    margin-bottom: 1.25rem;
}

.shipping-methods-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* عنصر طريقة شحن */
.shipping-method-item {
    display: flex;
    align-items: center;
    padding: 0.85rem 1.15rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #fff;
    gap: 0.85rem;
}

.shipping-method-item:hover:not(.disabled) {
    border-color: #ff9f43;
    background: #fffbf5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 159, 67, 0.15);
}

.shipping-method-item.selected {
    border-color: #ff9f43;
    background: linear-gradient(135deg, #fffbf5 0%, #fff7ed 100%);
    box-shadow: 0 4px 18px rgba(255, 159, 67, 0.18);
}

.shipping-method-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f8fafc;
}

/* Radio button */
.shipping-method-radio {
    width: 22px;
    height: 22px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.shipping-method-item.selected .shipping-method-radio {
    border-color: #ff9f43;
    background: #ff9f43;
}

.shipping-method-radio .radio-circle {
    width: 9px;
    height: 9px;
    background: transparent;
    border-radius: 50%;
    transition: all 0.25s ease;
}

.shipping-method-item.selected .shipping-method-radio .radio-circle {
    background: #fff;
}

/* Logo */
.shipping-method-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff9f43 0%, #ffbe76 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(255, 159, 67, 0.25);
}

.shipping-method-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.shipping-method-logo i {
    font-size: 1.35rem;
    color: #fff;
}

/* Details */
.shipping-method-details {
    flex: 1;
    min-width: 0;
}

.shipping-method-name {
    font-weight: 700;
    font-size: 1rem;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.shipping-method-time {
    font-size: 0.85rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.shipping-method-time i {
    color: #ff9f43;
    font-size: 0.9rem;
}

.shipping-method-warning {
    font-size: 0.78rem;
    color: #ea580c;
    margin-top: 0.3rem;
    display: block;
    font-weight: 600;
}

/* Price */
.shipping-method-price {
    flex-shrink: 0;
    text-align: left;
}

.shipping-method-price .price {
    font-weight: 800;
    font-size: 1.05rem;
    color: #1e293b;
}

.shipping-method-price .price.free {
    color: #059669;
    background: #d1fae5;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* ============================================
   تنبيه الشحن المجاني
   ============================================ */
.free-shipping-alert {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-radius: 12px;
    padding: 0.9rem 1.15rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.free-shipping-alert .alert-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(5, 150, 105, 0.3);
}

.free-shipping-alert .alert-icon i {
    color: #fff;
    font-size: 1.25rem;
}

.free-shipping-alert .alert-content {
    flex: 1;
}

.free-shipping-alert .alert-title {
    font-weight: 700;
    color: #065f46;
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.free-shipping-alert .alert-text {
    color: #047857;
    font-size: 0.88rem;
}

/* ============================================
   ملخص التكلفة
   ============================================ */
.shipping-summary {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 14px;
    padding: 1.25rem;
    margin-top: auto;
}

.shipping-summary .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px dashed #e2e8f0;
}

.shipping-summary .summary-row:last-child {
    border-bottom: none;
}

.shipping-summary .summary-row.total-row {
    padding-top: 0.85rem;
    margin-top: 0.5rem;
    border-top: 2px solid #7367f0;
    border-bottom: none;
}

.shipping-summary .summary-label {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

.shipping-summary .summary-value {
    font-weight: 700;
    font-size: 1rem;
    color: #1e293b;
}

.shipping-summary .summary-row.discount-row .summary-label,
.shipping-summary .summary-row.discount-row .summary-value {
    color: #059669;
}

.shipping-summary .total-row .summary-label {
    font-size: 1.05rem;
    color: #1e293b;
    font-weight: 700;
}

.shipping-summary .total-row .summary-value {
    font-size: 1.3rem;
    color: #7367f0;
    font-weight: 800;
}

/* ============================================
   أزرار التنقل
   ============================================ */
.step-nav-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e2e8f0;
}

.step-nav-buttons .btn {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
}

.step-nav-buttons .btn-outline-secondary {
    border: 2px solid #e2e8f0;
    color: #64748b;
    background: #fff;
}

.step-nav-buttons .btn-outline-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #475569;
}

.step-nav-buttons .btn-primary {
    background: linear-gradient(135deg, #7367f0 0%, #9f97f7 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(115, 103, 240, 0.3);
}

.step-nav-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #5e50ee 0%, #8b80f5 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(115, 103, 240, 0.4);
}

.step-nav-buttons .btn-primary:disabled {
    background: #cbd5e1;
    box-shadow: none;
    transform: none;
}

/* ============================================
   Responsive - التجاوب
   ============================================ */
@media (max-width: 991px) {
    #checkout-address > .row > .col-lg-7,
    #checkout-address > .row > .col-lg-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    #saved-addresses-list {
        grid-template-columns: 1fr;
    }
    
    .address-card-header {
        flex-wrap: wrap;
        gap: 0.6rem;
    }
    
    .address-card-badges {
        width: 100%;
        justify-content: flex-start;
    }
    
    .phone-input-group {
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .addresses-section-card .card-body,
    .shipping-section-card .card-body {
        padding: 1rem;
    }
    
    .address-card-header {
        padding: 0.75rem 1rem;
    }
    
    .address-card-body {
        padding: 0.85rem 1rem;
    }
    
    .address-card-title .title-icon {
        width: 32px;
        height: 32px;
    }
    
    .address-compact-item .item-icon {
        width: 26px;
        height: 26px;
    }
    
    .address-compact-info {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .shipping-method-item {
        flex-wrap: wrap;
        gap: 0.6rem;
        padding: 0.75rem 1rem;
    }
    
    .shipping-method-logo {
        width: 40px;
        height: 40px;
    }
    
    .shipping-method-price {
        width: 100%;
        text-align: right;
        padding-top: 0.6rem;
        border-top: 1px dashed #e2e8f0;
        margin-top: 0.4rem;
    }
    
    .step-nav-buttons {
        flex-direction: column;
    }
    
    .step-nav-buttons .btn {
        width: 100%;
    }
    
    .shipping-summary {
        padding: 1rem;
    }
    
    #map-container {
        height: 160px;
    }
    
    .phone-input-group .phone-code-select,
    .phone-code-display {
        width: 95px;
        min-width: 95px;
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .address-card-title .title-text {
        font-size: 0.95rem;
    }
    
    .address-compact-item .item-value {
        font-size: 0.88rem;
    }
    
    .shipping-method-name {
        font-size: 0.92rem;
    }
    
    .shipping-summary .total-row .summary-value {
        font-size: 1.15rem;
    }
}
