/* ================================
   LOGİN/KAYIT SAYFASI STİLLERİ
   ================================ */

/* Login/Register Section */
.login-register-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: calc(100vh - 200px);
    padding: 60px 0;
    position: relative;
}

.login-register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/upload/hero/hero_3.jpg') center/cover;
    opacity: 0.03;
    z-index: 0;
}

.login-register-section .container {
    position: relative;
    z-index: 1;
}

/* Auth Container */
.auth-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f2f5;
}

/* Auth Left Side - Info Section */
.auth-left {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.auth-left::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(30px, 30px);
    }
}

.auth-left-content {
    position: relative;
    z-index: 2;
}

.auth-left-icon {
    width: 250px;
    height: 160px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 45px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.auth-left h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.auth-left p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 30px;
    line-height: 1.6;
}

.auth-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.auth-benefits li {
    padding: 12px 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.95;
}

.auth-benefits li i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

/* Auth Right Side - Forms */
.auth-right {
    padding: 50px 45px;
    background: white;
}

.auth-tabs-wrapper {
    max-width: 100%;
}

/* Auth Tabs - Tam Genişlik Altı Çizgili Tasarım */
.auth-tabs {
    border: none;
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    gap: 0;
    position: relative;
    border-bottom: 2px solid #e9ecef;
    width: 100%;
}

.auth-tabs .nav-item {
    flex: 1;
    margin: 0;
    padding: 0;
    width: 50%;
}

.auth-tabs .nav-link {
    border: none;
    background: white;
    color: var(--text-dark);
    padding: 16px 24px;
    border-radius: 0;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    position: relative;
    border-top: 2px solid #e9ecef;
    border-bottom: none;
    margin: 0;
    margin-bottom: -2px;
    width: 100%;
}

.auth-tabs .nav-item:first-child .nav-link {
    border-radius: 10px 0 0 0;
    border-left: 2px solid #e9ecef;
    border-right: 1px solid #e9ecef;
}

.auth-tabs .nav-item:last-child .nav-link {
    border-radius: 0 10px 0 0;
    border-right: 2px solid #e9ecef;
    border-left: 1px solid #e9ecef;
}

.auth-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: background 0.3s ease;
}

.auth-tabs .nav-link:hover {
    background: var(--light-color);
    color: var(--text-dark);
}

.auth-tabs .nav-link.active {
    background: white;
    color: var(--primary-color);
}

.auth-tabs .nav-link.active::after {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.auth-tabs .nav-link i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.auth-tabs .nav-link.active i {
    transform: scale(1.1);
}

/* Auth Form */
.auth-form {
    max-width: 100%;
}

.auth-form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.auth-form-subtitle {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 30px;
}

/* Form Controls */
.auth-input {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    width: 100%;
}

.auth-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 165, 80, 0.1);
    background: white;
}

.auth-input::placeholder {
    color: #adb5bd;
}

/* Password Input Wrapper */
.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 8px;
    padding-left: 20px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 3;
}

.password-toggle:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

.password-toggle i {
    font-size: 16px;
}

/* Password Strength */
.password-strength {
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
}

.strength-bar {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Forgot Password Link */
.forgot-password {
    color: var(--primary-color);
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Terms Link */
.terms-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.terms-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Submit Button */
.auth-submit-btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 165, 80, 0.3);
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 165, 80, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.auth-submit-btn i {
    font-size: 18px;
}

/* Auth Divider */
.auth-divider {
    position: relative;
    text-align: center;
    margin: 30px 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
}

.auth-divider span {
    background: white;
    padding: 0 15px;
    color: var(--text-light);
    font-size: 14px;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

/* Social Login */
.social-login {
    display: flex;
    gap: 12px;
}

.social-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid;
}

.google-btn {
    background: white;
    color: #db4437;
    border-color: #db4437;
}

.google-btn:hover {
    background: #db4437;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(219, 68, 55, 0.3);
}

.facebook-btn {
    background: white;
    color: #3b5998;
    border-color: #3b5998;
}

.facebook-btn:hover {
    background: #3b5998;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 89, 152, 0.3);
}

.social-btn i {
    font-size: 18px;
}

/* Responsive Design - Login Page */
@media (max-width: 991.98px) {
    .auth-left {
        display: none;
    }

    .auth-right {
        padding: 40px 30px;
    }

    .auth-form-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .login-register-section {
        padding: 40px 0;
    }

    .auth-right {
        padding: 30px 20px;
    }

    .auth-tabs .nav-link {
        font-size: 14px;
        padding: 12px 15px;
    }

    .auth-form-title {
        font-size: 1.3rem;
    }

    .social-login {
        flex-direction: column;
    }

    .social-btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .auth-container {
        border-radius: 15px;
        margin: 0 10px;
    }

    .auth-right {
        padding: 25px 15px;
    }

    .auth-tabs {
        padding: 6px;
    }

    .auth-tabs .nav-link {
        font-size: 13px;
        padding: 10px 12px;
        gap: 5px;
    }

    .auth-tabs .nav-link i {
        font-size: 14px;
    }

    .auth-form-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .auth-form-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .auth-input {
        padding: 12px 15px;
        font-size: 14px;
    }

    .auth-submit-btn {
        padding: 13px 25px;
        font-size: 15px;
    }
}

/* ================================
   SEPET SAYFASI STİLLERİ
   ================================ */

/* Cart Hero Section */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: movePattern 20s linear infinite;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

/* Cart Section */
.cart-section {
    background: #f8f9fa;
}

/* Empty Cart */
.empty-cart-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.empty-cart-box {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 500px;
}

.empty-cart-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 50px;
    color: var(--text-light);
}

.empty-cart-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.empty-cart-box p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Cart Header Box */
.cart-header-box {
    background: white;
    border-radius: 15px;
    padding: 20px 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.cart-header-box h4 {
    color: var(--text-dark);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-header-box h4 i {
    color: var(--primary-color);
    font-size: 24px;
}

.cart-item-count {
    background: var(--primary-color);
    color: white;
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.clear-cart-btn {
    border-radius: 8px;
    padding: 8px 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.clear-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

/* Cart Items Wrapper */
.cart-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Cart Item Card */
.cart-item-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.cart-item-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Cart Item Image */
.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    background: #f8f9fa;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cart-item-card:hover .cart-item-image img {
    transform: scale(1.1);
}

.item-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    z-index: 2;
}

.badge-new {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.badge-eco {
    background: linear-gradient(135deg, #51cf66, #37b24d);
}

.badge-bestseller {
    background: linear-gradient(135deg, #ffd43b, #fab005);
}

/* Cart Item Details */
.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.cart-item-category {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-item-category i {
    color: var(--primary-color);
}

.cart-item-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: #f8f9fa;
    color: var(--text-dark);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.feature-tag i {
    color: var(--primary-color);
    font-size: 11px;
}

/* Cart Item Quantity */
.cart-item-quantity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cart-item-quantity label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
    margin: 0;
}

.quantity-controls-cart {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 5px;
}

.qty-btn-cart {
    width: 32px;
    height: 32px;
    border: none;
    background: white;
    color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.qty-btn-cart:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.qty-input-cart {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 16px;
    padding: 5px;
}

.qty-input-cart:focus {
    outline: none;
}

/* Cart Item Price */
.cart-item-price {
    text-align: right;
    padding-right: 40px;
}

.current-price-cart {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.old-price-cart {
    font-size: 0.95rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.save-amount-cart {
    font-size: 0.85rem;
    color: #51cf66;
    font-weight: 600;
}

/* Cart Item Remove */
.cart-item-remove {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border: none;
    background: #fee;
    color: #dc3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.cart-item-remove:hover {
    background: #dc3545;
    color: white;
    transform: rotate(90deg) scale(1.1);
}

/* Continue Shopping Box */
.continue-shopping-box {
    margin-top: 20px;
}

.continue-shopping-box .btn {
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.continue-shopping-box .btn:hover {
    transform: translateX(-5px);
}

/* Cart Summary Wrapper */
.cart-summary-wrapper {
    position: sticky;
    top: 100px;
}

/* Cart Summary Box */
.cart-summary-box {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.summary-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-title i {
    color: var(--primary-color);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: var(--text-dark);
}

.summary-item span {
    color: var(--text-light);
}

.summary-item strong {
    font-weight: 700;
}

.summary-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, #e9ecef, transparent);
    margin: 15px 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 1.1rem;
}

.summary-total span {
    font-weight: 700;
    color: var(--text-dark);
}

.total-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.summary-vat {
    text-align: center;
    color: var(--text-light);
    font-size: 13px;
    margin: 10px 0 20px;
}

.summary-vat i {
    margin-right: 4px;
}

/* Checkout Button */
.checkout-btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 165, 80, 0.3);
}

.checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 165, 80, 0.4);
}

/* Payment Methods */
.payment-methods {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.payment-methods small {
    display: block;
    color: var(--text-light);
    font-size: 12px;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 24px;
}

.payment-icons i {
    color: var(--text-light);
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

/* Shipping Info Box */
.shipping-info-box {
    background: linear-gradient(135deg, #e7f5ff, #d0ebff);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    border: 2px solid #74c0fc;
}

.shipping-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #339af0;
    flex-shrink: 0;
}

.shipping-details h6 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.shipping-details p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* Security Badges */
.security-badges {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
}

.security-badge:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.security-badge i {
    font-size: 20px;
    color: var(--primary-color);
    width: 30px;
    text-align: center;
}

.security-badge span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

/* Coupon Box */
.coupon-box {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.coupon-box h6 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.coupon-box h6 i {
    color: #ffd43b;
}

.coupon-input-group {
    display: flex;
    gap: 10px;
}

.coupon-input-group .form-control {
    flex: 1;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.coupon-input-group .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 165, 80, 0.1);
}

.coupon-input-group .btn {
    border-radius: 10px;
    padding: 12px 20px;
    font-weight: 600;
    white-space: nowrap;
}

/* Recommended Products Section */
.recommended-products {
    background: #f8f9fa;
}

.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.section-title i {
    color: #ffd43b;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Modern Product Card */
.modern-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.modern-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-product-card:hover .product-img {
    transform: scale(1.15);
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 45px;
}

.product-price-section {
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-add-cart {
    width: 100%;
    padding: 12px 20px;
    border: none;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 165, 80, 0.3);
}

/* Responsive Design - Cart Page */
@media (max-width: 1199.98px) {
    .cart-item-card {
        flex-wrap: wrap;
    }

    .cart-item-quantity,
    .cart-item-price {
        width: 50%;
        text-align: center;
        padding-right: 0;
    }

    .cart-item-price {
        text-align: right;
    }
}

@media (max-width: 991.98px) {
    .page-hero {
        padding: 60px 0 40px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .cart-summary-wrapper {
        position: static;
    }

    .cart-item-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 767.98px) {
    .page-hero {
        padding: 50px 0 30px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .cart-header-box {
        padding: 15px 18px;
    }

    .cart-header-box h4 {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .cart-item-card {
        padding: 15px;
        gap: 12px;
    }

    .cart-item-image {
        width: 80px;
        height: 80px;
    }

    .cart-item-title {
        font-size: 1rem;
    }

    .cart-item-details {
        width: 100%;
    }

    .cart-item-quantity,
    .cart-item-price {
        width: 100%;
        text-align: left;
    }

    .cart-item-price {
        padding-right: 0;
    }

    .current-price-cart {
        font-size: 1.2rem;
    }

    .cart-summary-box,
    .shipping-info-box,
    .security-badges,
    .coupon-box {
        margin-bottom: 15px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .page-hero {
        padding: 40px 0 25px;
    }

    .page-hero h1 {
        font-size: 1.5rem;
    }

    .page-hero .lead {
        font-size: 1rem;
    }

    .cart-section {
        padding: 30px 0 !important;
    }

    .cart-header-box h4 {
        font-size: 1rem;
    }

    .clear-cart-btn {
        font-size: 13px;
        padding: 6px 12px;
    }

    .cart-item-card {
        flex-direction: column;
        text-align: center;
    }

    .cart-item-image {
        width: 100%;
        height: 180px;
    }

    .cart-item-remove {
        top: 10px;
        right: 10px;
    }

    .cart-item-category {
        justify-content: center;
    }

    .cart-item-features {
        justify-content: center;
    }

    .cart-item-quantity {
        margin: 10px 0;
    }

    .summary-title {
        font-size: 1.1rem;
    }

    .total-amount {
        font-size: 1.5rem;
    }

    .checkout-btn {
        font-size: 15px;
        padding: 13px 25px;
    }

    .shipping-info-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .coupon-input-group {
        flex-direction: column;
    }

    .coupon-input-group .btn {
        width: 100%;
    }

    .section-title {
        font-size: 1.4rem;
    }
}

/* ================================
   SİPARİŞLER SAYFASI STİLLERİ
   ================================ */

/* Orders Section */
.orders-section {
    background: #f8f9fa;
    min-height: 100vh;
}

/* Orders Sidebar */
.orders-sidebar {
    position: sticky;
    top: 100px;
}

/* Filter Box */
.filter-box {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.filter-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-title i {
    color: var(--primary-color);
    font-size: 18px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border-radius: 10px;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.filter-option input[type="radio"] {
    display: none;
}

.filter-option:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.filter-option.active {
    background: linear-gradient(135deg, rgba(0, 165, 80, 0.1), rgba(0, 165, 80, 0.05));
    border-left: 3px solid var(--primary-color);
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.filter-label i {
    font-size: 16px;
    color: var(--text-light);
}

.filter-option.active .filter-label i {
    color: var(--primary-color);
}

.filter-count {
    background: white;
    color: var(--text-dark);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.filter-option.active .filter-count {
    background: var(--primary-color);
    color: white;
}

/* Date Filter */
.date-filter {
    margin-top: 10px;
}

.filter-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 165, 80, 0.1);
    outline: none;
}

/* Quick Stats */
.quick-stats {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
}

.stat-icon.stat-total {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-icon.stat-amount {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.stat-info {
    flex: 1;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 4px;
}

.profile-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f8f9fa;
}

.profile-stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.profile-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.profile-stat-total {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.profile-stat-amount {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.profile-stat-info {
    flex: 1;
}

.profile-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.profile-stat-label {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 2px;
}

/* Orders Header */
.orders-header {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 15px;
    align-items: center;
}

.orders-search-box {
    flex: 1;
    position: relative;
}

.orders-search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 16px;
}

.orders-search-box input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.orders-search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 165, 80, 0.1);
}

.orders-sort {
    min-width: 200px;
}

.orders-sort .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.orders-sort .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 165, 80, 0.1);
    outline: none;
}

/* Orders List */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Order Card */
.order-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.order-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.order-card.cancelled {
    opacity: 0.8;
    border-left: 4px solid #dc3545;
}

/* Order Header */
.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.order-number {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-size: 15px;
}

.order-number i {
    color: var(--primary-color);
}

.order-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
}

.order-date i {
    color: var(--primary-color);
}

/* Order Status Bar */
.order-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.status-badge i {
    font-size: 14px;
}

.status-pending {
    background: linear-gradient(135deg, #ffd43b, #fab005);
    color: white;
}

.status-processing {
    background: linear-gradient(135deg, #74c0fc, #339af0);
    color: white;
}

.status-shipping {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    color: white;
}

.status-delivered {
    background: linear-gradient(135deg, #51cf66, #37b24d);
    color: white;
}

.status-cancelled {
    background: linear-gradient(135deg, #ff6b6b, #dc3545);
    color: white;
}

.order-total-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Order Progress */
.order-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.progress-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 3px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #adb5bd;
    transition: all 0.3s ease;
}

.progress-step.completed .progress-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.progress-step.active .progress-icon {
    background: white;
    border-color: var(--primary-color);
    color: var(--primary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 165, 80, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(0, 165, 80, 0);
    }
}

.progress-step span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
}

.progress-step.completed span {
    color: var(--primary-color);
}

.progress-step.active span {
    color: var(--primary-color);
}

.progress-line {
    flex: 1;
    height: 3px;
    background: #e9ecef;
    margin: 0 10px;
    position: relative;
    top: -20px;
}

.progress-line.completed {
    background: var(--primary-color);
}

.progress-line.active {
    background: linear-gradient(to right, var(--primary-color), #e9ecef);
}

/* Order Items */
.order-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.order-item:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.order-item img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.item-details {
    flex: 1;
}

.item-details h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.item-details p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.item-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Cancel Info */
.cancel-info {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
    display: flex;
    gap: 12px;
}

.cancel-info i {
    color: #ff9800;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.cancel-info p {
    margin: 5px 0;
    font-size: 13px;
    color: var(--text-dark);
}

/* Order Footer */
.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f8f9fa;
    gap: 15px;
}

.cargo-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    font-size: 14px;
    color: var(--text-dark);
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.cargo-info i {
    color: var(--primary-color);
    font-size: 18px;
}

.cargo-info.delivered {
    background: linear-gradient(135deg, #d3f9d8, #b2f2bb);
    border: 1px solid #51cf66;
}

.cargo-code {
    margin-left: 10px;
    padding: 4px 10px;
    background: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
}

.order-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.order-actions .btn {
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.order-actions .btn:hover {
    transform: translateY(-2px);
}

/* Orders Pagination */
.orders-pagination {
    margin-top: 30px;
}

.orders-pagination .pagination {
    gap: 8px;
}

.orders-pagination .page-link {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 600;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.orders-pagination .page-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.orders-pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.orders-pagination .page-item.disabled .page-link {
    background: #f8f9fa;
    border-color: #e9ecef;
}

/* Responsive Design - Orders Page */
@media (max-width: 1199.98px) {
    .orders-sidebar {
        position: static;
    }

    .order-progress {
        overflow-x: auto;
        padding: 15px;
    }

    .progress-step span {
        font-size: 11px;
    }
}

@media (max-width: 991.98px) {
    .orders-header {
        flex-direction: column;
        align-items: stretch;
    }

    .orders-sort {
        min-width: 100%;
    }

    .order-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .order-actions {
        width: 100%;
        justify-content: space-between;
    }

    .order-actions .btn {
        flex: 1;
    }
}

@media (max-width: 767.98px) {
    .filter-box {
        padding: 15px;
    }

    .order-card {
        padding: 20px 15px;
    }

    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .order-status-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .order-total-price {
        font-size: 1.3rem;
    }

    .order-progress {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .progress-line {
        display: none;
    }

    .progress-step {
        width: calc(50% - 10px);
    }

    .order-item {
        flex-wrap: wrap;
        text-align: center;
    }

    .order-item img {
        width: 100%;
        height: 150px;
    }

    .item-details,
    .item-price {
        width: 100%;
    }

    .cargo-info {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .cargo-code {
        margin-left: 0;
        margin-top: 5px;
    }

    .order-actions {
        flex-direction: column;
    }

    .order-actions .btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .orders-section {
        padding: 30px 0 !important;
    }

    .filter-box,
    .quick-stats,
    .orders-header,
    .order-card {
        margin-bottom: 15px;
    }

    .filter-option {
        padding: 10px 12px;
    }

    .filter-label {
        font-size: 13px;
    }

    .profile-stat-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .profile-stat-value {
        font-size: 1.3rem;
    }

    .orders-search-box input {
        padding: 10px 12px 10px 40px;
        font-size: 13px;
    }

    .order-number,
    .order-date {
        font-size: 13px;
    }

    .status-badge {
        padding: 6px 12px;
        font-size: 12px;
    }

    .progress-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .order-item img {
        height: 120px;
    }

    .item-details h6 {
        font-size: 14px;
    }

    .item-price {
        font-size: 15px;
    }

    .cancel-info {
        padding: 12px;
        font-size: 12px;
    }

    .cargo-info {
        font-size: 13px;
        padding: 10px 12px;
    }

    .order-actions .btn {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* ================================
   PROFİL SAYFASI STİLLERİ
   ================================ */

/* Profile Section */
.profile-section {
    background: #f8f9fa;
    min-height: 100vh;
}

/* Profile Sidebar */
.profile-sidebar {
    position: sticky;
    top: 100px;
}

/* Profile Card */
.profile-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
}

.profile-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    object-fit: cover;
}

.avatar-edit-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.avatar-edit-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.profile-info h5 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.profile-email {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 12px;
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ffd43b, #fab005);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Profile Stats */
.profile-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.profile-stat-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0, 165, 80, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.profile-stat-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 165, 80, 0.4);
}

.profile-stat-box .profile-stat-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.profile-stat-content {
    text-align: center;
}

.profile-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.profile-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 3px;
}

/* Profile Menu */
.profile-menu {
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 10px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    position: relative;
}

.menu-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
    color: var(--primary-color);
}

.menu-item.active {
    background: linear-gradient(135deg, rgba(0, 165, 80, 0.1), rgba(0, 165, 80, 0.05));
    color: var(--primary-color);
    font-weight: 600;
}

.menu-item i:first-child {
    width: 20px;
    font-size: 18px;
    color: var(--text-light);
}

.menu-item.active i:first-child {
    color: var(--primary-color);
}

.menu-item span {
    flex: 1;
    font-size: 14px;
}

.menu-item i:last-child {
    font-size: 12px;
    color: var(--text-light);
}

.notification-badge {
    background: #dc3545;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: auto;
}

.menu-item.logout {
    margin-top: 10px;
    border-top: 2px solid #f8f9fa;
    padding-top: 15px;
    color: #dc3545;
}

.menu-item.logout:hover {
    background: rgba(220, 53, 69, 0.1);
}

/* Profile Content */
.profile-content {
    display: none;
}

.profile-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Header */
.content-header {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-header h4 {
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-header h4 i {
    color: var(--primary-color);
}

.content-header p {
    margin: 5px 0 0 0;
    color: var(--text-light);
    font-size: 14px;
}

/* Profile Form Card */
.profile-form-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.profile-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.required {
    color: #dc3545;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    z-index: 2;
}

.input-with-icon .profile-input {
    padding-left: 45px;
}

.profile-input {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
}

.profile-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 165, 80, 0.1);
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.form-actions .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 10px;
}

/* Security Info Box */
.security-info-box {
    background: linear-gradient(135deg, #e7f5ff, #d0ebff);
    border: 2px solid #74c0fc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    gap: 15px;
}

.security-info-box i {
    font-size: 30px;
    color: #339af0;
    flex-shrink: 0;
}

.security-info-box h6 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.security-info-box ul {
    margin: 0;
    padding-left: 20px;
    color: var(--text-dark);
}

.security-info-box li {
    font-size: 13px;
    margin-bottom: 5px;
}

/* Password Input Wrapper */
.password-input-wrapper {
    position: relative;
}

.password-input-wrapper i:first-child {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    z-index: 2;
}

.password-input-wrapper .profile-input {
    padding-left: 45px;
    padding-right: 45px;
}

.strength-text {
    display: block;
    margin-top: 8px;
    font-weight: 600;
}

/* Addresses Grid */
.addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* Address Card */
.address-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.address-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.address-card.default {
    border-color: var(--primary-color);
}

.address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.address-header h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.address-header h5 i {
    color: var(--primary-color);
}

.default-badge {
    background: var(--primary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.address-body {
    margin-bottom: 15px;
}

.address-name {
    margin-bottom: 10px;
}

.address-text {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.address-phone {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.address-phone i {
    color: var(--primary-color);
}

.address-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.address-actions .btn {
    flex: 1;
    min-width: 100px;
}

/* Add New Address Card */
.address-card.add-new {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px dashed #adb5bd;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.address-card.add-new:hover {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    border-color: var(--primary-color);
}

.add-new-content {
    text-align: center;
}

.add-new-content i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.add-new-content h5 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.add-new-content p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

/* Orders List Mini */
.orders-list-mini {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-mini-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.order-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.order-mini-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.order-mini-number {
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.order-mini-number i {
    color: var(--primary-color);
}

.order-mini-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.order-mini-date {
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.order-mini-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.order-mini-footer {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* Favorites Grid */
.favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.favorite-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.favorite-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.remove-favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.remove-favorite:hover {
    background: #dc3545;
    transform: scale(1.1);
}

.product-image-fav {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-image-fav img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.favorite-product-card:hover .product-image-fav img {
    transform: scale(1.1);
}

.stock-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.stock-badge.in-stock {
    background: #51cf66;
    color: white;
}

.stock-badge.out-of-stock {
    background: #dc3545;
    color: white;
}

.product-details-fav {
    padding: 15px;
}

.product-details-fav h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-price-fav {
    margin-bottom: 12px;
}

.product-price-fav .current {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 8px;
}

.product-price-fav .old {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: line-through;
}

/* Notifications List */
.notifications-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.notification-item {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.notification-item.unread {
    background: #f0f9ff;
    border-left: 4px solid var(--primary-color);
}

.notification-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.notification-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
}

.order-icon {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
}

.discount-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.success-icon {
    background: linear-gradient(135deg, #51cf66, #37b24d);
}

.info-icon {
    background: linear-gradient(135deg, #74c0fc, #339af0);
}

.notification-content {
    flex: 1;
}

.notification-content h6 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.notification-content p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.notification-time {
    color: var(--text-light);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mark-read-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mark-read-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* Modal Custom Styles */
.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    border-bottom: 2px solid #f8f9fa;
    padding: 20px 25px;
}

.modal-title {
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-title i {
    color: var(--primary-color);
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    border-top: 2px solid #f8f9fa;
    padding: 15px 25px;
}

/* ================================
   ÖDEME YÖNTEMLERİ STİLLERİ
   ================================ */

/* Payment Methods Box */
.payment-methods-box {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.payment-methods-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-methods-title i {
    color: var(--primary-color);
    font-size: 24px;
}

/* Payment Method Options */
.payment-method-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-method-card {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: #f8f9fa;
}

.payment-method-card:hover {
    border-color: var(--primary-color);
    background: rgba(0, 165, 80, 0.05);
    transform: translateX(5px);
}

.payment-method-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 165, 80, 0.1), rgba(0, 165, 80, 0.05));
    box-shadow: 0 4px 15px rgba(0, 165, 80, 0.2);
}

.payment-method-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-radio {
    width: 24px;
    height: 24px;
    border: 2px solid #adb5bd;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.payment-method-card.selected .payment-radio {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.payment-method-card.selected .payment-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.payment-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.payment-method-card.selected .payment-icon {
    transform: scale(1.1);
}

.payment-icon.cash {
    background: linear-gradient(135deg, #51cf66, #37b24d);
}

.payment-icon.credit-card {
    background: linear-gradient(135deg, #339af0, #1c7ed6);
}

.payment-icon.bank-transfer {
    background: linear-gradient(135deg, #ff922b, #fd7e14);
}

.payment-details {
    flex: 1;
}

.payment-method-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.recommended-badge {
    background: linear-gradient(135deg, #ffd43b, #fab005);
    color: white;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.payment-method-desc {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.check-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.payment-method-card.selected .check-icon {
    display: flex;
}

/* Payment Info Alert */
.payment-info-alert {
    background: linear-gradient(135deg, #e7f5ff, #d0ebff);
    border: 2px solid #74c0fc;
    border-radius: 12px;
    padding: 15px 18px;
    margin-top: 15px;
    display: none;
    gap: 12px;
    animation: slideDown 0.3s ease;
}

.payment-info-alert.show {
    display: flex;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.payment-info-alert i {
    font-size: 20px;
    color: #339af0;
    flex-shrink: 0;
    margin-top: 2px;
}

.payment-info-alert p {
    font-size: 13px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

.payment-info-alert strong {
    color: var(--primary-color);
}

/* Bank Transfer Details */
.bank-transfer-details {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-top: 10px;
    display: none;
}

.bank-transfer-details.show {
    display: block;
    animation: slideDown 0.3s ease;
}

.bank-transfer-details h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bank-transfer-details h6 i {
    color: var(--primary-color);
}

.bank-info {
    background: white;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 8px;
    border-left: 3px solid var(--primary-color);
}

.bank-info:last-child {
    margin-bottom: 0;
}

.bank-info p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0 0 4px 0;
}

.bank-info strong {
    font-size: 14px;
    color: var(--text-dark);
    display: block;
    margin-top: 2px;
}

/* Responsive Design - Payment Methods */
@media (max-width: 767.98px) {
    .payment-methods-box {
        padding: 20px;
    }

    .payment-methods-title {
        font-size: 1.1rem;
    }

    .payment-method-card {
        padding: 15px;
    }

    .payment-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .payment-method-name {
        font-size: 15px;
    }

    .payment-method-desc {
        font-size: 12px;
    }
}

@media (max-width: 575.98px) {
    .payment-methods-box {
        padding: 15px;
    }

    .payment-methods-title {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .payment-method-card {
        padding: 12px;
        gap: 10px;
    }

    .payment-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .payment-method-name {
        font-size: 14px;
    }

    .payment-info-alert {
        flex-direction: column;
        padding: 12px;
    }

    .bank-transfer-details {
        padding: 12px;
    }
}

/* ================================
   ADRES SEÇİMİ STİLLERİ
   ================================ */

/* Address Selection Box */
.address-selection-box {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.address-selection-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.address-selection-title i {
    color: var(--primary-color);
    font-size: 24px;
}

/* Address Options */
.address-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 5px;
}

.address-options::-webkit-scrollbar {
    width: 6px;
}

.address-options::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 10px;
}

.address-options::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.address-option-card {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 18px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: #f8f9fa;
    display: flex;
    gap: 15px;
}

.address-option-card:hover {
    border-color: var(--primary-color);
    background: rgba(0, 165, 80, 0.05);
    transform: translateX(5px);
}

.address-option-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 165, 80, 0.1), rgba(0, 165, 80, 0.05));
    box-shadow: 0 4px 15px rgba(0, 165, 80, 0.2);
}

.address-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.address-radio {
    width: 24px;
    height: 24px;
    border: 2px solid #adb5bd;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.address-option-card.selected .address-radio {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.address-option-card.selected .address-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.address-content {
    flex: 1;
}

.address-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.address-title i {
    color: var(--primary-color);
    font-size: 18px;
}

.default-address-badge {
    background: linear-gradient(135deg, #ffd43b, #fab005);
    color: white;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.address-info {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.address-recipient {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.address-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
}

.address-phone i {
    color: var(--primary-color);
}

.address-check-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.address-option-card.selected .address-check-icon {
    display: flex;
}

/* Add New Address Card */
.add-address-card {
    border: 2px dashed #adb5bd;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 80px;
}

.add-address-card:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    transform: translateY(-2px);
}

.add-address-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.add-address-text {
    flex: 1;
}

.add-address-text h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.add-address-text p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* No Address Alert */
.no-address-alert {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.no-address-alert i {
    font-size: 30px;
    color: #ff9800;
    flex-shrink: 0;
}

.no-address-alert-content h6 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.no-address-alert-content p {
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 12px;
}

.no-address-alert-content .btn {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 8px;
}

/* Responsive Design - Address Selection */
@media (max-width: 767.98px) {
    .address-selection-box {
        padding: 20px;
    }

    .address-selection-title {
        font-size: 1.1rem;
    }

    .address-option-card {
        padding: 15px;
    }

    .address-title {
        font-size: 15px;
    }

    .address-info {
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    .address-selection-box {
        padding: 15px;
    }

    .address-selection-title {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .address-option-card {
        padding: 12px;
        flex-direction: column;
    }

    .address-radio {
        position: absolute;
        top: 12px;
        right: 12px;
    }

    .address-check-icon {
        position: absolute;
        top: 12px;
        right: 12px;
    }

    .address-title {
        font-size: 14px;
    }

    .add-address-card {
        flex-direction: column;
        text-align: center;
    }

    .no-address-alert {
        flex-direction: column;
        text-align: center;
    }
}
