/* ========================================
   CART & CHECKOUT PAGES STYLES
   ======================================== */

.section-padding {
    padding: 60px 0;
}

/* Progress Steps */
.cart-progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.cart-progress-steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
}

.cart-progress-steps .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #E5E7EB;
    color: #9CA3AF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cart-progress-steps .step.active .step-number,
.cart-progress-steps .step.completed .step-number {
    background: #C17A5C;
    color: #fff;
}

.cart-progress-steps .step-title {
    font-size: 13px;
    color: #6B7280;
    font-weight: 500;
}

.cart-progress-steps .step.active .step-title,
.cart-progress-steps .step.completed .step-title {
    color: #1F2937;
    font-weight: 600;
}

.cart-progress-steps .step-line {
    width: 120px;
    height: 2px;
    background: #E5E7EB;
    margin: 0 20px;
}

.cart-progress-steps .step-line.completed {
    background: #C17A5C;
}

/* Cart Content Wrapper */
.cart-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Order Info Header */
.order-info-header {
    background: #F9FAFB;
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.order-info-header h5 {
    font-size: 16px;
    font-weight: 700;
    color: #1F2937;
    margin: 0;
}

.order-info-header .order-date {
    font-size: 13px;
    color: #6B7280;
}

.order-info-header .edit-link {
    margin-right: auto;
    color: #3B82F6;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.order-info-header .edit-link:hover {
    text-decoration: underline;
}

/* Cart Items List */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    background: #F8F8FA;
    border-radius: 20px;
}

.cart-item {
    /* background: #fff;
    border: 1px solid #E5E7EB; */
    border-radius: 12px;
    padding: 20px;
    display: grid;
    grid-template-columns: 110px 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 20px;
    row-gap: 15px;
    align-items: start;
}

.cart-item .item-row-top {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 20px;
    align-items: flex-start;
}

.cart-item .item-row-bottom {
    grid-column: 1 / -1;
    display: grid;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
    margin-top: -6%;
}

.cart-item .item-row-bottom .remove-btn {
    grid-column: 2;
    justify-self: start;
}

.cart-item .item-row-bottom .quantity-control {
    grid-column: 3;
    justify-self: end;
    background: #FFF;
    padding: 5px;
    border-radius: 10px;
}

.cart-item .item-image {
    width: 110px;
    height: 110px;
    border-radius: 12px;
    overflow: hidden;
    background: #F9FAFB;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item .item-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item .item-details h6 {
    font-size: 16px;
    font-weight: 600;
    color: #1F2937;
    margin: 0;
}

.cart-item .item-details p {
    font-size: 13px;
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
}

.cart-item .item-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    justify-self: end;
}

.cart-item .item-price .currency {
    font-size: 13px;
    color: #9CA3AF;
    font-weight: 500;
}

.cart-item .item-price .amount {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
}

.cart-item .remove-btn {
    background: none;
    border: none;
    color: #EF4444;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.cart-item .remove-btn:hover {
    color: #DC2626;
}

.cart-item .remove-btn i {
    font-size: 18px;
}

/* Quantity Control */
.quantity-control {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-control .qty-btn {
    width: 26px;
    height: 26px;
    border: none;
    background: #C17A5C;
    color: #fff;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quantity-control .qty-btn:hover {
    background: #A86B50;
}

.quantity-control .plus {
    background: #C46641;
}

.quantity-control .minus {
    background: #F9F0EC;
    color: #D79880;
}

.quantity-control .qty-value {
    font-size: 16px;
    font-weight: 600;
    color: #1F2937;
    min-width: 25px;
    text-align: center;
}

/* Delivery Address Section */
.delivery-address-section {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.delivery-address-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.delivery-address-section .section-header h6 {
    font-size: 16px;
    font-weight: 700;
    color: #1F2937;
    margin: 0;
}

.delivery-address-section .add-address-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #C17A5C;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.delivery-address-section .add-address-btn:hover {
    background: #A86B50;
}

.delivery-address-section .add-address-btn i {
    font-size: 18px;
}

.delivery-address-section .address-card {
    background: #F5F3F0;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.delivery-address-section .address-card:hover {
    border-color: #C17A5C;
}

.delivery-address-section .address-card.selected {
    border-color: #C17A5C;
    background: #F5F3F0;
}

.delivery-address-section .address-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.delivery-address-section .address-icon i {
    font-size: 24px;
    color: #6B9BD1;
}

.delivery-address-section .address-details {
    flex: 1;
}

.delivery-address-section .address-details h6 {
    font-size: 13px;
    font-weight: 600;
    color: #6B7280;
    margin: 0 0 5px 0;
}

.delivery-address-section .address-details p {
    font-size: 14px;
    color: #1F2937;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.delivery-address-section .edit-address-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: transparent;
    border: none;
    color: #6B9BD1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.delivery-address-section .edit-address-btn:hover {
    background: rgba(107, 155, 209, 0.1);
}

.delivery-address-section .edit-address-btn i {
    font-size: 20px;
}

/* Payment Methods Section */
.payment-methods-section {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.payment-methods-section h6 {
    font-size: 16px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 20px;
}

.payment-method {
    background: #fff;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.payment-method:hover {
    border-color: #C17A5C;
}

.payment-method.selected {
    border-color: #C17A5C;
    background: #FFF7F3;
}

.payment-method .payment-radio {
    display: flex;
    align-items: center;
    flex: 1;
}

.payment-method input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-left: 15px;
    cursor: pointer;
    accent-color: #C17A5C;
}

.payment-method label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    margin: 0;
    flex: 1;
}

.payment-method .payment-logo {
    width: 50px;
    height: auto;
    object-fit: contain;
}

.payment-method .payment-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.payment-method .payment-name {
    font-size: 15px;
    font-weight: 600;
    color: #1F2937;
}

.payment-method .payment-desc {
    font-size: 12px;
    color: #6B7280;
    margin: 0;
}

.payment-method .payment-selected-indicator {
    color: #10B981;
    font-size: 24px;
}

.payment-method .payment-selected-indicator i {
    display: block;
}

/* Payment Summary Box */
.payment-summary-box {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.payment-summary-box .summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.payment-summary-box .summary-header h5 {
    font-size: 16px;
    font-weight: 700;
    color: #1F2937;
    margin: 0;
}

.payment-summary-box .hide-link {
    color: #C17A5C;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.payment-summary-box .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-bottom: 0;
    background: #FFF;
}

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

.payment-summary-box .summary-row span:first-child {
    font-size: 14px;
    color: #6B7280;
}

.payment-summary-box .summary-row .amount {
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
}

.payment-summary-box .summary-row.total {
    padding-top: 15px;
    margin-top: 0px;
    border-top: 0;
}

.payment-summary-box .summary-row.total span:first-child {
    font-size: 16px;
    font-weight: 700;
    color: #1F2937;
}

.payment-summary-box .summary-row.total .amount {
    font-size: 18px;
    font-weight: 700;
    color: #C17A5C;
}

/* Coupon Section */
.coupon-section {
    margin-bottom: 30px;
}

.coupon-section h6 {
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 12px;
}

.coupon-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 9px;
    padding: 6px 20px;
    transition: all 0.3s ease;
}

.coupon-input-wrapper:focus-within {
    border-color: #C17A5C;
}

.coupon-input-wrapper .coupon-check-icon {
    color: #10B981;
    font-size: 22px;
    flex-shrink: 0;
}

.coupon-input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    color: #1F2937;
    font-weight: 600;
    padding: 0;
    height: 36px;
}

.coupon-input-wrapper input:focus {
    outline: none;
}

.coupon-input-wrapper input::placeholder {
    color: #9CA3AF;
    font-weight: 500;
}

.coupon-input-wrapper .remove-coupon {
    background: none;
    border: none;
    color: #9CA3AF;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.coupon-input-wrapper .remove-coupon:hover {
    color: #EF4444;
}

.coupon-input-wrapper .remove-coupon i {
    font-size: 18px;
}

/* Cart Action Buttons */
.cart-action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.cart-action-buttons3 {
    display: block;
}

.cart-action-buttons .btn-outline {
    padding: 14px 24px;
    border: 2px solid #C46641;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #F9F0EC !important;
    color: #C46641;
}

.cart-action-buttons .btn-outline:hover {
    background: #C17A5C;
    color: #fff;
}

.cart-action-buttons .btn-primary {
    padding: 14px 24px;
    border: none;
    background: #C46641;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(193, 122, 92, 0.3);
}

/* Empty Cart Section */
.empty-cart-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.empty-cart-content {
    text-align: center;
    /* max-width: 500px; */
}

.empty-cart-icon {
    margin-bottom: 30px;
}

.empty-cart-icon img {
    width: 200px;
    height: auto;
}

.empty-cart-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 30px;
}

.btn-start-shopping {
    padding: 14px 40px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.btn-start-shopping:hover {
    background: #1F2937;
    transform: translateY(-2px);
}

.or-divider {
    margin: 20px 0;
    position: relative;
}

.or-divider span {
    background: #fff;
    padding: 0 15px;
    color: #9CA3AF;
    font-size: 13px;
    position: relative;
    z-index: 1;
}

.or-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 1px;
    background: #E5E7EB;
}

.login-text {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

.login-link {
    color: #C17A5C;
    font-weight: 600;
    text-decoration: none;
}

.login-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
    .cart-progress-steps .step-line {
        width: 80px;
        margin: 0 10px;
    }
}

@media (max-width: 767px) {
    .cart-item {
        grid-template-columns: 80px 1fr;
        column-gap: 12px;
    }
    
    .cart-item .item-row-top {
        grid-template-columns: 80px 1fr;
    }
    
    .cart-item .item-row-bottom {
        grid-template-columns: 80px 1fr;
    }
    
    .cart-item .item-image {
        width: 80px;
        height: 80px;
    }
    
    .cart-item .item-price {
        grid-column: 2;
        justify-self: end;
    }
    
    .cart-item .item-row-bottom .remove-btn {
        grid-column: 2;
        justify-self: start;
    }
    
    .cart-item .item-row-bottom .quantity-control {
        grid-column: 2;
        justify-self: end;
    }
    
    .cart-action-buttons {
        grid-template-columns: 1fr;
    }
    
    .cart-progress-steps {
        flex-wrap: wrap;
    }
    
    .cart-progress-steps .step-line {
        display: none;
    }
    
    .guarantee-banner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Cart Sidebar Styles */
.cart-sidebar {
    position: sticky;
    top: 100px;
}

.cart-sidebar .delivery-address-section,
.cart-sidebar .payment-methods-section,
.cart-sidebar .payment-summary-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cart-sidebar .delivery-address-section .section-header h6 {
    font-size: 15px;
}

.cart-sidebar .address-card {
    padding: 15px;
}

.cart-sidebar .coupon-section.sidebar-coupon {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cart-sidebar .payment-methods-section h6 {
    font-size: 15px;
    margin-bottom: 15px;
}

.cart-sidebar .payment-method {
    padding: 12px 15px;
    margin-bottom: 10px;
}

.cart-sidebar .payment-summary-box {
    background: #F9FAFB;
}

.cart-sidebar .payment-summary-box .summary-row {
    padding: 10px;
}

.cart-sidebar .btn-block {
    width: 100%;
    display: block;
}

@media (max-width: 991px) {
    .cart-sidebar {
        position: relative;
        top: 0;
        margin-top: 30px;
    }
}

/* Payment Completed Modal */
.payment-completed-modal {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.payment-completed-modal .modal-overlay {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.payment-completed-modal .payment-success-content {
    position: relative;
    background: #fff;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

.payment-completed-modal .success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #E8F5FF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-completed-modal .success-icon i {
    font-size: 50px;
    color: #4A90E2;
}

.payment-completed-modal h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 15px 0;
}

.payment-completed-modal p {
    font-size: 15px;
    color: #9CA3AF;
    line-height: 1.6;
    margin: 0 0 35px 0;
}

.payment-completed-modal .payment-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.payment-completed-modal .btn-cancel {
    padding: 16px 24px;
    border: 2px solid #E5E7EB;
    background: #fff;
    color: #6B7280;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-completed-modal .btn-cancel:hover {
    border-color: #D1D5DB;
    background: #F9FAFB;
}

.payment-completed-modal .btn-view-invoice {
    padding: 16px 24px;
    border: none;
    background: #C17A5C;
    color: #fff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-completed-modal .btn-view-invoice:hover {
    background: #A86B50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193, 122, 92, 0.3);
}

@media (max-width: 767px) {
    .payment-completed-modal .payment-success-content {
        padding: 40px 30px;
    }
    
    .payment-completed-modal .payment-actions {
        grid-template-columns: 1fr;
    }
}

/* Address Modal */
.address-modal {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.address-modal .modal-overlay {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.address-modal .modal-content {
    position: relative;
    background: #F8F9FA;
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.address-modal .modal-header {
    padding: 30px 30px 10px 30px;
    border-bottom: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.address-modal .modal-header h5 {
    font-size: 28px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 8px 0;
}

.address-modal .modal-header::after {
    content: 'Enter the details to add a new address to your profile.';
    font-size: 14px;
    color: #9CA3AF;
    font-weight: 400;
    margin-top: 5px;
}

.address-modal .modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: transparent;
    border: none;
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.address-modal .modal-close:hover {
    background: #E5E7EB;
    color: #1F2937;
}

.address-modal .modal-close i {
    font-size: 20px;
}

.address-modal .modal-body {
    padding: 20px 30px 30px 30px;
}

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

.address-modal .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #6B7280;
    margin-bottom: 8px;
    text-transform: lowercase;
}

.address-modal .form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    font-size: 14px;
    color: #1F2937;
    background: #fff;
    transition: all 0.3s ease;
    height: 50px;
}

.address-modal .form-control:focus {
    outline: none;
    border-color: #C17A5C;
    box-shadow: 0 0 0 3px rgba(193, 122, 92, 0.1);
}

.address-modal .form-control::placeholder {
    color: #D1D5DB;
}

.address-modal select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239CA3AF' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 18px center;
    padding-left: 45px;
}

.address-modal textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.address-modal .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.address-modal .modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
    padding-top: 0;
    border-top: none;
}

.address-modal .btn-cancel {
    padding: 16px 24px;
    border: 2px solid #E5E7EB;
    background: #fff;
    color: #6B7280;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.address-modal .btn-cancel:hover {
    border-color: #D1D5DB;
    background: #F9FAFB;
}

.address-modal .btn-save {
    padding: 16px 24px;
    border: none;
    background: #C17A5C;
    color: #fff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.address-modal .btn-save:hover {
    background: #A86B50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193, 122, 92, 0.3);
}

@media (max-width: 767px) {
    .address-modal .modal-content {
        max-width: 100%;
        margin: 0 10px;
        border-radius: 20px;
    }
    
    .address-modal .modal-header,
    .address-modal .modal-body {
        padding: 20px;
    }
    
    .address-modal .form-row {
        grid-template-columns: 1fr;
    }
    
    .address-modal .modal-actions {
        grid-template-columns: 1fr;
    }
}
