/**
 * Modern User Pages Styles
 * Flipkart/Amazon style clean design for all user-facing pages
 */

/* Profile Page Styles */
.profile-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    min-height: 70vh;
}

.profile-header {
    background: linear-gradient(135deg, #ff6900, #ff8c42);
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(255, 105, 0, 0.3);
    text-align: center;
}

.profile-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.profile-sidebar {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.profile-picture-wrapper {
    text-align: center;
    margin-bottom: 25px;
}

.profile-picture-wrapper img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ff6900;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.profile-picture-wrapper img:hover {
    transform: scale(1.05);
}

.profile-name {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 15px 0 5px;
}

.profile-email {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.profile-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.badge-success-modern {
    background: #d4edda;
    color: #155724;
}

.badge-warning-modern {
    background: #fff3cd;
    color: #856404;
}

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

.profile-nav-item {
    border-bottom: 1px solid #f0f0f0;
}

.profile-nav-item:last-child {
    border-bottom: none;
}

.profile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.profile-nav-link:hover {
    color: #ff6900;
    padding-left: 10px;
}

.profile-nav-link i {
    width: 20px;
    text-align: center;
}

.profile-tabs {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.profile-tabs-header {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #f0f0f0;
    background: #f8f9fa;
}

.profile-tab-btn {
    flex: 1;
    padding: 20px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.profile-tab-btn:hover {
    background: #f0f0f0;
    color: #ff6900;
}

.profile-tab-btn.active {
    color: #ff6900;
    border-bottom-color: #ff6900;
    background: white;
}

.profile-tab-content {
    padding: 30px;
}

.profile-form-group {
    margin-bottom: 25px;
}

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

.profile-form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.profile-form-input:focus {
    outline: none;
    border-color: #ff6900;
    box-shadow: 0 0 0 3px rgba(255, 105, 0, 0.1);
}

.btn-modern-primary {
    background: linear-gradient(135deg, #ff6900, #ff8c42);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 105, 0, 0.4);
}

.btn-modern-secondary {
    background: white;
    color: #ff6900;
    border: 2px solid #ff6900;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-modern-secondary:hover {
    background: #ff6900;
    color: white;
}

/* Cart Page Styles */
.cart-container-modern {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    min-height: 70vh;
}

.cart-header-modern {
    background: linear-gradient(135deg, #ff6900, #ff8c42);
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(255, 105, 0, 0.3);
    text-align: center;
}

.cart-header-modern h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.cart-content-modern {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
}

.cart-items-modern {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.cart-item-modern {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 20px;
    padding: 25px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.cart-item-modern:last-child {
    border-bottom: none;
}

.cart-item-modern:hover {
    background: #f8f9fa;
}

.cart-item-image-modern {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cart-item-details-modern {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-title-modern {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.cart-item-price-modern {
    font-size: 20px;
    font-weight: 700;
    color: #ff6900;
    margin-bottom: 15px;
}

.cart-item-actions-modern {
    display: flex;
    gap: 15px;
    align-items: center;
}

.quantity-control-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 5px;
}

.quantity-btn-modern {
    background: #f0f0f0;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    color: #333;
    transition: all 0.3s ease;
}

.quantity-btn-modern:hover {
    background: #ff6900;
    color: white;
}

.quantity-input-modern {
    width: 50px;
    text-align: center;
    border: none;
    font-weight: 600;
    font-size: 16px;
}

.remove-btn-modern {
    background: transparent;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.remove-btn-modern:hover {
    background: #dc3545;
    color: white;
}

.cart-summary-modern {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.cart-summary-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 16px;
    color: #666;
}

.summary-row-total {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.checkout-btn-modern {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff6900, #ff8c42);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.checkout-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 105, 0, 0.4);
}

.empty-cart-modern {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.empty-cart-icon {
    font-size: 80px;
    color: #ccc;
    margin-bottom: 20px;
}

.empty-cart-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.empty-cart-text {
    color: #666;
    margin-bottom: 30px;
}

/* Orders Page Styles */
.orders-container-modern {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    min-height: 70vh;
}

.orders-header-modern {
    background: linear-gradient(135deg, #ff6900, #ff8c42);
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(255, 105, 0, 0.3);
    text-align: center;
}

.orders-header-modern h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.order-card-modern {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

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

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.order-number-modern {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.order-date-modern {
    color: #666;
    font-size: 14px;
}

.order-status-modern {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-confirmed {
    background: #d1ecf1;
    color: #0c5460;
}

.status-shipped {
    background: #d4edda;
    color: #155724;
}

.status-delivered {
    background: #d4edda;
    color: #155724;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.order-items-modern {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-item-modern {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.order-item-image-modern {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.order-item-details-modern {
    flex: 1;
}

.order-item-title-modern {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.order-item-price-modern {
    color: #ff6900;
    font-weight: 700;
}

.order-total-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.order-total-label {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.order-total-amount {
    font-size: 22px;
    font-weight: 700;
    color: #ff6900;
}

.order-actions-modern {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* Login/Register Styles */
.auth-container-modern {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.auth-card-modern {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 450px;
    width: 100%;
}

.auth-header-modern {
    background: linear-gradient(135deg, #ff6900, #ff8c42);
    color: white;
    padding: 40px;
    text-align: center;
}

.auth-header-modern h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.auth-header-modern p {
    opacity: 0.9;
    font-size: 14px;
}

.auth-body-modern {
    padding: 40px;
}

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

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

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

.auth-form-input:focus {
    outline: none;
    border-color: #ff6900;
    box-shadow: 0 0 0 3px rgba(255, 105, 0, 0.1);
}

.auth-submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff6900, #ff8c42);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 105, 0, 0.4);
}

.auth-divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #e0e0e0;
}

.auth-divider span {
    background: white;
    padding: 0 15px;
    position: relative;
    color: #666;
}

.social-login-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    color: #333;
}

.social-btn-modern:hover {
    border-color: #ff6900;
    color: #ff6900;
    transform: translateY(-2px);
}

.auth-footer-modern {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.auth-footer-modern a {
    color: #ff6900;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer-modern a:hover {
    text-decoration: underline;
}

/* Addresses Page Styles */
.addresses-container-modern {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    min-height: 70vh;
}

.addresses-header-modern {
    background: linear-gradient(135deg, #ff6900, #ff8c42);
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(255, 105, 0, 0.3);
    text-align: center;
}

.addresses-header-modern h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.address-card-modern {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.address-card-modern:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.address-card-modern.default {
    border: 2px solid #ff6900;
    background: linear-gradient(135deg, #fff8f0, #ffffff);
}

.address-type-badge {
    display: inline-block;
    padding: 6px 12px;
    background: #ff6900;
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.address-default-badge {
    display: inline-block;
    padding: 6px 12px;
    background: #28a745;
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}

.address-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.address-details {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.address-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

/* Responsive */
@media (max-width: 768px) {
    .cart-content-modern {
        grid-template-columns: 1fr;
    }
    
    .cart-item-modern {
        grid-template-columns: 100px 1fr;
    }
    
    .cart-item-image-modern {
        width: 100px;
        height: 100px;
    }
    
    .profile-tabs-header {
        flex-direction: column;
    }
    
    .addresses-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-container-modern {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    min-height: 70vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ff6900, #ff8c42);
    color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 105, 0, 0.3);
}

.contact-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: white;
    font-weight: 700;
}

.contact-header .text-muted {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-info-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.contact-info-card i {
    font-size: 48px;
    color: #ff6900;
    margin-bottom: 20px;
}

.contact-info-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.contact-info-card p {
    margin: 8px 0;
    color: #666;
    font-size: 15px;
}

.contact-form-wrapper {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form-wrapper h2 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.contact-form .form-control {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #ff6900;
    box-shadow: 0 0 0 3px rgba(255, 105, 0, 0.1);
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, #ff6900, #ff8c42);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 105, 0, 0.4);
}

/* Checkout Page Styles */
.checkout-container-modern {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    min-height: 70vh;
}

.checkout-header-modern {
    background: linear-gradient(135deg, #ff6900, #ff8c42);
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(255, 105, 0, 0.3);
    text-align: center;
}

.checkout-header-modern h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.checkout-content-modern {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
}

.checkout-form-modern {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.checkout-summary-modern {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.section-title-modern {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.address-selection-modern {
    margin-bottom: 30px;
}

.address-options-modern {
    display: grid;
    gap: 15px;
    margin-bottom: 20px;
}

.address-option-modern {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.address-option-modern:hover {
    border-color: #ff6900;
    background: #fff8f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 105, 0, 0.1);
}

.address-option-modern.selected {
    border-color: #ff6900;
    background: #fff8f0;
    box-shadow: 0 4px 15px rgba(255, 105, 0, 0.2);
}

.address-option-modern input[type="radio"] {
    margin-right: 12px;
}

.address-details-modern {
    margin-left: 25px;
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

.address-form-modern {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 15px;
    display: none;
    border: 2px solid #e0e0e0;
}

.address-form-modern.active {
    display: block;
}

.payment-section-modern {
    margin-top: 30px;
}

.payment-methods-modern {
    display: grid;
    gap: 15px;
    margin-bottom: 20px;
}

.payment-method-modern {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
}

.payment-method-modern:hover {
    border-color: #ff6900;
    background: #fff8f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 105, 0, 0.1);
}

.payment-method-modern.selected {
    border-color: #ff6900;
    background: #fff8f0;
    box-shadow: 0 4px 15px rgba(255, 105, 0, 0.2);
}

.payment-method-modern input[type="radio"] {
    margin: 0;
}

.payment-icon-modern {
    font-size: 28px;
    color: #ff6900;
}

.shipping-method-modern {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    margin-bottom: 15px;
}

.shipping-method-modern:hover {
    border-color: #ff6900;
    background: #fff8f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 105, 0, 0.1);
}

.shipping-method-modern.selected {
    border-color: #ff6900;
    background: #fff8f0;
    box-shadow: 0 4px 15px rgba(255, 105, 0, 0.2);
}

.order-items-modern {
    margin-bottom: 25px;
}

.order-item-modern {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.order-item-modern:last-child {
    border-bottom: none;
}

.order-item-image-modern {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.order-item-title-modern {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
    font-size: 15px;
}

.order-item-price-modern {
    color: #666;
    font-size: 14px;
}

.order-item-quantity-modern {
    color: #666;
    font-size: 14px;
}

.place-order-btn-modern {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #ff6900, #ff8c42);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.place-order-btn-modern:hover {
    background: linear-gradient(135deg, #e55e00, #e67a2e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 0, 0.4);
}

.place-order-btn-modern:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .checkout-content-modern {
        grid-template-columns: 1fr;
    }
    
    .checkout-summary-modern {
        position: static;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

