/* Modern Account/Login Page */

.account-section {
    padding: 64px 0;
    background-color: var(--light-gray, #f5f7fa);
    min-height: calc(100vh - 200px);
    position: relative; /* Dropdown için */
}

/* Account Navigation */
.account-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    border-bottom: 2px solid #e5e5e5;
    padding-bottom: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Desktop nav - varsayılan olarak göster */
.account-nav-desktop {
    display: flex;
}

.account-nav-mobile-toggle {
    display: none;
    width: 100%;
    padding: 14px 18px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 0;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.account-nav-mobile-toggle:hover {
    background: #2a2a2a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.account-nav-mobile-toggle.active {
    background: #1a1a1a;
}

.account-nav-mobile-toggle i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.account-nav-mobile-toggle.active i {
    transform: rotate(180deg);
}

.account-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    margin-bottom: -2px;
}

.account-nav-item i {
    font-size: 14px;
}

.account-nav-item:hover {
    color: var(--primary-color);
    background: rgba(220, 20, 60, 0.05);
}

.account-nav-item.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(220, 20, 60, 0.05);
}

/* Account Content */
.account-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #e5e5e5;
}

.account-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f5f5f5;
}

.account-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.account-empty-card {
    text-align: center;
    padding: 50px 20px;
    background: white;
    border-radius: 12px;
    border: 2px dashed #e5e5e5;
}

.account-empty-card i {
    font-size: 28px;
    color: #ddd;
    margin-bottom: 16px;
    display: block;
    opacity: 0.6;
}

.account-empty-card h3 {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 600;
}

.account-empty-card p {
    color: #999;
    margin-bottom: 25px;
    font-size: 14px;
}

.account-empty-card .btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 0;
    width: auto;
    min-width: 180px;
}

/* Account Dashboard */
.account-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.account-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.account-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.account-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f5f5f5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.account-card h3 i {
    color: #1a1a1a;
    font-size: 14px;
}

.account-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-list-item {
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s ease;
}

.account-list-item:last-child {
    border-bottom: none;
}

.account-list-item:hover {
    padding-left: 5px;
}

.account-list-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.account-list-content strong {
    color: #1a1a1a;
    font-size: 15px;
    display: block;
    margin-bottom: 5px;
}

.account-list-meta {
    color: #999;
    font-size: 13px;
    margin: 0;
}

.account-list-action {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.account-list-action:hover {
    color: #b8122e;
    text-decoration: underline;
}

/* Account Settings */
.account-settings-modern {
    max-width: 800px;
    margin: 0 auto;
}

.account-settings-card-modern {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.account-settings-card-modern:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.account-settings-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f5f5f5;
}

.account-settings-title-modern {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.account-settings-subtitle-modern {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.account-settings-icon-modern {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #b8122e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.account-settings-form-modern {
    margin-top: 20px;
}

.account-form-group-modern {
    margin-bottom: 24px;
}

.account-form-label-modern {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.account-btn-primary-modern {
    width: 100%;
    padding: 16px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.account-btn-primary-modern:hover {
    background: #b8122e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220,20,60,0.3);
}

.account-btn-primary-modern:active {
    transform: translateY(0);
}

/* Favorites Page Modern Styles */
.favorites-header-modern {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f5f5f5;
}

.favorites-header-modern h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.favorites-header-modern p {
    margin: 8px 0 0 0;
    color: #999;
    font-size: 14px;
}

.favorites-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.favorite-card-modern {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.favorite-card-modern:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
    border-color: #e5e5e5;
}

.favorite-image-wrapper-modern {
    position: relative;
    width: 100%;
    padding-top: 80%;
    background: #fafafa;
    overflow: hidden;
}

.favorite-image-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.favorite-card-modern:hover .favorite-image-modern {
    transform: scale(1.05);
}

.favorite-remove-btn-modern {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 2;
}

.favorite-remove-btn-modern:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(220,20,60,0.25);
}

.favorite-discount-badge-modern {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.favorite-info-modern {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.favorite-title-modern {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    min-height: 40px;
}

.favorite-title-modern a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.favorite-title-modern a:hover {
    color: var(--primary-color);
}

.favorite-price-modern {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.favorite-current-price-modern {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.favorite-old-price-modern {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.favorite-actions-modern {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.favorite-add-cart-modern {
    flex: 1;
    padding: 10px 14px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.favorite-add-cart-modern:hover {
    background: #b8122e;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(220,20,60,0.25);
}

.favorite-view-modern {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #666;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.favorite-view-modern:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

/* Account Nav Mobile Overlay */
.account-nav-overlay {
    display: none; /* Dropdown için overlay'e gerek yok */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 9998;
    animation: fadeIn 0.3s ease;
    cursor: pointer;
}

.account-nav-overlay.active {
    display: none; /* Dropdown için overlay gösterme */
}

.account-nav-mobile-wrapper {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    max-height: 0;
    background: white;
    z-index: 10000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    overflow: hidden;
    padding: 0;
    box-sizing: border-box;
    display: none; /* Desktop'ta gizli */
    flex-direction: column;
    opacity: 0;
    border-radius: 10px;
}

/* Mobile açıldığında */
.account-nav-mobile-wrapper.mobile-open {
    max-height: 500px;
    display: flex !important;
    opacity: 1;
    overflow-y: auto;
}

.account-nav-mobile-header {
    display: none; /* Dropdown'da header'a gerek yok */
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid #f5f5f5;
    flex-shrink: 0;
    background: white;
    position: relative;
    z-index: 0;
    width: 100%;
    box-sizing: border-box;
    min-height: 60px;
    order: -1;
    visibility: visible !important;
    opacity: 1 !important;
}

.account-nav-mobile-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.account-nav-mobile-close {
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #666;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.account-nav-mobile-close:hover {
    background: #e5e5e5;
    color: #333;
}

/* Desktop - Normal nav göster */
@media (min-width: 769px) {
    .account-nav-mobile-toggle {
        display: none !important;
    }
    
    .account-nav-mobile-wrapper {
        display: none !important;
    }
    
    .account-nav-overlay {
        display: none !important;
    }
    
    /* Desktop'ta normal nav göster */
    .account-nav-desktop {
        display: flex !important;
    }
    
    /* Mobile wrapper içindeki nav'i desktop'ta gizle */
    .account-nav-mobile-wrapper .account-nav {
        display: none !important;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .account-nav-mobile-toggle {
        display: flex;
    }
    
    .account-nav-mobile-wrapper {
        display: block !important; /* Mobilde göster - dropdown olarak */
        position: absolute !important;
        top: calc(100% + 8px) !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 10000 !important;
    }
    
    /* Desktop nav'i mobilde gizle */
    .account-nav-desktop {
        display: none !important;
    }
    
    /* Mobil wrapper içindeki nav'i göster */
    .account-nav-mobile-wrapper .account-nav {
        display: flex !important;
        flex-direction: column;
        gap: 0;
        border-bottom: none;
        margin-bottom: 0;
        padding: 8px 0;
        flex: 1 1 auto;
        min-height: 0;
        max-height: none;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        position: relative;
        width: 100%;
        order: 1;
        scroll-behavior: auto;
        z-index: 0;
    }
    
    /* Nav açıldığında scroll pozisyonunu ayarla - ilk öğe görünsün */
    .account-nav-mobile-wrapper.mobile-open .account-nav {
        scroll-padding-top: 0;
    }
    
    /* İlk nav item'ın header'ın altında görünmesini sağla - margin-top ekle */
    .account-nav-mobile-wrapper .account-nav-item:first-child {
        margin-top: 0;
        padding-top: 16px;
        scroll-margin-top: 0;
        position: relative;
        z-index: 1; /* Nav item'lar header'ın üstünde görünsün */
    }
    
    /* Nav açıldığında ilk öğenin görünmesini garanti altına al */
    .account-nav-mobile-wrapper.mobile-open .account-nav-item:first-child {
        margin-top: 0;
        padding-top: 16px;
    }
    
    /* Nav açıldığında tüm öğeleri görünür yap */
    .account-nav-mobile-wrapper.mobile-open .account-nav-item {
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Nav açıldığında scroll pozisyonunu ayarla */
    .account-nav-mobile-wrapper.mobile-open .account-nav {
        scroll-padding-top: 0;
    }
    
    /* Nav scrollbar styling */
    .account-nav-mobile-wrapper .account-nav::-webkit-scrollbar {
        width: 6px;
    }
    
    .account-nav-mobile-wrapper .account-nav::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    
    .account-nav-mobile-wrapper .account-nav::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 10px;
    }
    
    .account-nav-mobile-wrapper .account-nav::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
    
    .account-nav-mobile-wrapper .account-nav-item {
        width: 100%;
        justify-content: flex-start;
        padding: 14px 20px;
        border-bottom: 1px solid #f5f5f5;
        border-radius: 0;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        gap: 12px;
        color: #333;
        text-decoration: none;
        transition: all 0.2s ease;
        background: white;
        cursor: pointer;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
        font-size: 14px;
    }
    
    .account-nav-mobile-wrapper .account-nav-item:last-child {
        border-bottom: none;
    }
    
    .account-nav-mobile-wrapper .account-nav-item:hover {
        background: #f5f5f5;
        color: var(--primary-color);
    }
    
    .account-nav-mobile-wrapper .account-nav-item.active {
        background: rgba(220, 20, 60, 0.05);
        color: var(--primary-color);
        border-left: 3px solid var(--primary-color);
        font-weight: 600;
    }
    
    .account-nav-mobile-wrapper .account-nav-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    
    .account-nav-mobile-wrapper .account-nav-item i {
        font-size: 14px;
        width: 18px;
        text-align: center;
        flex-shrink: 0;
    }
    
    .account-content {
        padding: 25px 20px;
    }
    
    .account-dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .account-settings-card-modern {
        padding: 25px 20px;
    }
    
    /* Favoriler: mobilde yan yana 2 kart, sonra alta */
    .favorites-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 20px;
    }
    
    .favorite-card-modern {
        min-width: 0;
    }
    
    .favorite-image-wrapper-modern {
        padding-top: 75%;
    }
    
    .favorite-info-modern {
        padding: 12px 10px;
    }
    
    .favorite-title-modern {
        font-size: 13px;
        min-height: 36px;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .favorite-current-price-modern {
        font-size: 15px;
    }
    
    .favorite-old-price-modern {
        font-size: 11px;
    }
    
    .favorite-actions-modern {
        flex-direction: row;
        gap: 8px;
        margin-top: 8px;
    }
    
    .favorite-add-cart-modern,
    .favorite-view-modern {
        flex: 1;
        padding: 8px 6px;
        font-size: 11px;
        min-width: 0;
    }
    
    .favorite-remove-btn-modern {
        width: 28px;
        height: 28px;
        font-size: 12px;
        top: 6px;
        right: 6px;
    }
}

/* Page Header Modern */
.page-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f5f5f5;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-add-item-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-add-item-modern:hover {
    background: #b8122e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

.btn-add-item-modern i {
    font-size: 13px;
}

/* Orders Page Modern Styles */
.orders-header-modern {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f5f5f5;
}

.orders-list-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.order-card-modern {
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    overflow: hidden;
}

.order-card-modern:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.order-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px;
    border-bottom: 1px solid #f5f5f5;
    background: linear-gradient(to bottom, #fafafa 0%, white 100%);
}

.order-info-modern {
    flex: 1;
}

.order-number-modern {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    letter-spacing: -0.3px;
}

.order-meta-modern {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.order-date-modern,
.order-time-modern,
.order-items-modern {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
}

.order-date-modern i,
.order-time-modern i,
.order-items-modern i {
    font-size: 12px;
    color: #999;
}

.order-status-modern {
    flex-shrink: 0;
}

.order-status-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

.order-status-badge-modern i {
    font-size: 12px;
}

.order-products-modern {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 300px;
    overflow-y: auto;
}

.order-product-item-modern {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 12px;
    background: #fafafa;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.order-product-item-modern:hover {
    background: #f5f5f5;
}

.order-product-image-modern {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    background: white;
}

.order-product-info-modern {
    flex: 1;
    min-width: 0;
}

.order-product-name-modern {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 6px 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.order-product-details-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.order-product-qty-modern {
    font-size: 12px;
    color: #999;
}

.order-product-price-modern {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.order-more-products-modern {
    text-align: center;
    padding: 10px;
    color: #999;
    font-size: 13px;
    font-weight: 500;
}

.order-footer-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #fafafa;
    border-top: 1px solid #f5f5f5;
    flex-wrap: wrap;
    gap: 15px;
}

.order-total-modern {
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-total-label-modern {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.order-total-amount-modern {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.order-actions-modern {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.order-action-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.order-track-modern {
    background: #17a2b8;
    color: white;
}

.order-track-modern:hover {
    background: #138496;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
}

.order-details-modern {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #e5e5e5;
}

.order-details-modern:hover {
    background: #e8e8e8;
    color: #333;
    border-color: #ddd;
}

.order-action-btn-modern i {
    font-size: 12px;
}

/* Responsive Orders */
@media (max-width: 768px) {
    .order-header-modern {
        flex-direction: column;
        gap: 15px;
    }
    
    .order-status-modern {
        align-self: flex-start;
    }
    
    .order-meta-modern {
        flex-direction: column;
        gap: 8px;
    }
    
    .order-footer-modern {
        flex-direction: column;
        align-items: stretch;
    }
    
    .order-total-modern {
        justify-content: space-between;
        width: 100%;
    }
    
    .order-actions-modern {
        width: 100%;
    }
    
    .order-action-btn-modern {
        flex: 1;
        justify-content: center;
    }
    
    .page-header-modern {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-add-item-modern {
        width: 100%;
        justify-content: center;
    }
}

.account-login-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.account-card-modern {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e5e5e5;
}

.account-card-label-modern {
    font-size: 11px;
    text-transform: uppercase;
    color: #999;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: block;
}

.account-card-title-modern {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.account-card-subtitle-modern {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.account-form-group-modern {
    margin-bottom: 20px;
}

.account-form-label-modern {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.account-form-input-modern {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.account-form-input-modern:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220,20,60,0.1);
}

.account-form-input-modern::placeholder {
    color: #999;
}

.account-btn-primary-modern {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.account-btn-primary-modern:hover {
    background: #b8122e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220,20,60,0.3);
}

.account-btn-secondary-modern {
    width: 100%;
    padding: 16px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.account-btn-secondary-modern:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Account Settings Modern Styles */
.account-settings-modern {
    max-width: 800px;
}

.account-settings-card-modern {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.account-settings-card-modern:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.account-settings-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f5f5f5;
}

.account-settings-title-modern {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.account-settings-subtitle-modern {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.account-settings-icon-modern {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #b8122e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.account-settings-form-modern {
    margin-top: 20px;
}

.account-form-group-modern {
    margin-bottom: 24px;
}

.account-form-label-modern {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.account-btn-primary-modern {
    width: 100%;
    padding: 16px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.account-btn-primary-modern:hover {
    background: #b8122e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220,20,60,0.3);
}

.account-btn-primary-modern:active {
    transform: translateY(0);
}

/* Alert Messages */
.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert i {
    margin-right: 8px;
}

/* Button Small */
.btn-small {
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-small:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Modal Overlay - Modern Minimalist Design */
.modal-overlay-modern {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}

.modal-overlay-modern[style*="flex"] {
    display: flex !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content-modern {
    background: white;
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

.modal-content-modern::-webkit-scrollbar {
    width: 8px;
}

.modal-content-modern::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 4px;
}

.modal-content-modern::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}

.modal-content-modern::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 20px 30px;
    border-bottom: 2px solid #f5f5f5;
    background: linear-gradient(to bottom, #fafafa 0%, white 100%);
    border-radius: 16px 16px 0 0;
}

.modal-title-modern {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-title-modern::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 2px;
}

.modal-close-btn-modern {
    background: #f5f5f5;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    font-size: 18px;
    transition: all 0.2s ease;
    padding: 0;
}

.modal-close-btn-modern:hover {
    background: #e5e5e5;
    color: #333;
    transform: rotate(90deg);
}

.modal-form-modern {
    padding: 30px;
}

.form-row-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.form-row-modern:last-of-type {
    margin-bottom: 0;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
}

.form-label-modern {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.required-star {
    color: var(--primary-color);
    margin-left: 2px;
}

.form-input-modern {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: white;
    color: #333;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-input-modern:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.1);
    transform: translateY(-1px);
}

.form-input-modern:hover {
    border-color: #d0d0d0;
}

.form-input-modern::placeholder {
    color: #999;
    font-weight: 400;
}

/* Select özel stilleri */
.form-select-modern,
select.form-input-modern,
.form-input-modern[type="select"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 45px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-select-modern:focus,
select.form-input-modern:focus,
.form-input-modern[type="select"]:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23DC143C' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

.form-select-modern option,
select.form-input-modern option {
    padding: 10px;
    background: white;
    color: #333;
}

.form-textarea-modern {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    line-height: 1.6;
    padding: 14px 16px;
}

.form-textarea-modern:focus {
    min-height: 140px;
}

.form-hint-modern {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 8px;
    font-weight: 400;
    line-height: 1.5;
    padding-left: 2px;
}

.form-hint-modern::before {
    content: "ℹ ";
    color: var(--primary-color);
    font-weight: 600;
}

.checkbox-label-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    user-select: none;
    padding: 12px;
    background: #fafafa;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.checkbox-label-modern:hover {
    background: #f5f5f5;
    border-color: #e8e8e8;
}

.checkbox-label-modern input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.checkbox-label-modern input[type="checkbox"]:checked + span {
    color: #333;
    font-weight: 500;
}

.modal-actions-modern {
    display: flex;
    gap: 12px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 2px solid #f5f5f5;
    background: linear-gradient(to top, #fafafa 0%, white 100%);
    margin-left: -30px;
    margin-right: -30px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 10px;
    border-radius: 0 0 16px 16px;
}

.btn-cancel-modern {
    flex: 1;
    padding: 14px 24px;
    background: #f5f5f5;
    color: #666;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel-modern:hover {
    background: #e8e8e8;
    border-color: #ddd;
    color: #333;
}

.btn-submit-modern {
    flex: 1;
    padding: 14px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit-modern:hover {
    background: #b8122e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

.btn-submit-modern:active {
    transform: translateY(0);
}

/* Credit Card Modern Styles */
.cards-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 25px;
}

.credit-card-modern {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 16px;
    padding: 30px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    overflow: hidden;
}

.credit-card-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.credit-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.card-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.card-title-section-modern {
    flex: 1;
}

.card-title-modern {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
    letter-spacing: -0.3px;
}

.card-badge-modern {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.card-actions-modern {
    display: flex;
    gap: 6px;
}

.card-action-btn-modern {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 14px;
    padding: 0;
}

.card-action-btn-modern:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.card-action-danger-modern:hover {
    background: rgba(220, 20, 60, 0.3);
}

.card-body-modern {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.card-number-modern {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 25px;
    font-family: 'Courier New', monospace;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-number-masked {
    opacity: 0.7;
}

.card-number-visible {
    opacity: 1;
    font-weight: 700;
}

.card-info-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.card-info-item-modern {
    flex: 1;
}

.card-info-label-modern {
    font-size: 11px;
    opacity: 0.8;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.card-info-value-modern {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.card-footer-modern {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.card-type-badge-modern {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .cards-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .credit-card-modern {
        min-height: 200px;
        padding: 25px;
    }
    
    .card-number-modern {
        font-size: 18px;
        letter-spacing: 3px;
    }
}

/* Card Styles */
.account-settings-card-modern select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: white;
    cursor: pointer;
}

.account-settings-card-modern select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220,20,60,0.1);
}

.account-settings-card-modern textarea {
    resize: vertical;
    min-height: 80px;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .account-login-modern {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .account-card-modern {
        padding: 30px 20px;
    }
    
    .account-settings-card-modern {
        padding: 30px 20px;
    }
    
    .account-settings-header-modern {
        flex-direction: column;
        gap: 15px;
    }
    
    .account-settings-icon-modern {
        align-self: flex-start;
    }
    
    .account-settings-title-modern {
        font-size: 20px;
    }
    
    .modal-overlay-modern {
        padding: 10px;
    }
    
    .modal-content-modern {
        max-height: 95vh;
        border-radius: 12px;
    }
    
    .modal-header-modern {
        padding: 20px 20px 15px 20px;
    }
    
    .modal-title-modern {
        font-size: 20px;
    }
    
    .modal-form-modern {
        padding: 20px;
    }
    
    .form-row-modern {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .form-group-modern[style*="grid-column"] {
        grid-column: 1 / -1 !important;
    }
    
    .modal-actions-modern {
        flex-direction: column-reverse;
        gap: 10px;
    }
    
    .btn-cancel-modern,
    .btn-submit-modern {
        width: 100%;
    }
}

/* ========== Sipariş Durum Timeline (Adımlar) ========== */
.order-timeline-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 24px 0 28px;
    padding: 0 8px;
    position: relative;
}

.order-timeline-modern::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: #e8eaed;
    border-radius: 2px;
    z-index: 0;
}

.order-timeline-step {
    flex: 1;
    max-width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.order-timeline-step-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e8eaed;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.order-timeline-step.active .order-timeline-step-icon {
    background: linear-gradient(145deg, #DC143C, #b8122e);
    color: #fff;
    box-shadow: 0 4px 14px rgba(220, 20, 60, 0.35);
}

.order-timeline-step.done .order-timeline-step-icon {
    background: #28a745;
    color: #fff;
}

.order-timeline-step.cancelled .order-timeline-step-icon {
    background: #dc3545;
    color: #fff;
}

.order-timeline-step-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    line-height: 1.3;
}

.order-timeline-step.active .order-timeline-step-label {
    color: #DC143C;
}

.order-timeline-step.done .order-timeline-step-label {
    color: #28a745;
}

.order-timeline-cancelled-msg {
    text-align: center;
    padding: 16px 20px;
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 12px;
    color: #c53030;
    font-size: 14px;
    font-weight: 600;
    margin: 20px 0;
}

.order-kargo-box-modern {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-top: 16px;
}

.order-kargo-box-modern .kargo-logo-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(145deg, #1a1a1a, #374151);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.order-kargo-box-modern .kargo-info {
    flex: 1;
}

.order-kargo-box-modern .kargo-info strong {
    display: block;
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.order-kargo-box-modern .kargo-info span {
    font-size: 13px;
    color: #6b7280;
}

.order-kargo-box-modern .kargo-takip-link {
    padding: 10px 18px;
    background: #DC143C;
    color: #fff;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.order-kargo-box-modern .kargo-takip-link:hover {
    background: #b8122e;
    color: #fff;
}

@media (max-width: 768px) {
    .order-timeline-modern {
        flex-wrap: nowrap;
        gap: 4px;
        justify-content: space-between;
        padding: 0 2px;
        margin: 20px 0 24px;
    }
    .order-timeline-modern::before {
        left: 10%;
        right: 10%;
        top: 14px;
        height: 2px;
    }
    .order-timeline-step {
        max-width: 25%;
        flex: 1;
        min-width: 0;
    }
    .order-timeline-step-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
        margin-bottom: 6px;
    }
    .order-timeline-step-label {
        font-size: 9px;
        line-height: 1.2;
        word-break: break-word;
    }
}
