/* ==========================================================================
   MY ACCOUNT
   ========================================================================== */
.aaima-myaccount-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: var(--aaima-spacing-xl);
    padding: var(--aaima-spacing-xl) 0;
}

.aaima-account-nav {
    background: var(--aaima-bg);
    border: 1px solid var(--aaima-border-light);
    border-radius: var(--aaima-radius-md);
    overflow: hidden;
}

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

.aaima-account-nav li a {
    display: flex;
    align-items: center;
    gap: var(--aaima-spacing-md);
    padding: var(--aaima-spacing-md) var(--aaima-spacing-lg);
    color: var(--aaima-text);
    border-bottom: 1px solid var(--aaima-border-light);
    transition: var(--aaima-transition-fast);
}

.aaima-account-nav li:last-child a {
    border-bottom: none;
}

.aaima-account-nav li a:hover,
.aaima-account-nav li.active a {
    background: var(--aaima-bg-light);
    color: var(--aaima-accent);
}

.aaima-account-nav li a svg {
    width: 20px;
    height: 20px;
}

.aaima-account-content {
    background: var(--aaima-bg);
    border: 1px solid var(--aaima-border-light);
    border-radius: var(--aaima-radius-md);
    padding: var(--aaima-spacing-xl);
}

/* ==========================================================================
   WISHLIST
   ========================================================================== */
.aaima-wishlist-table {
    width: 100%;
    border-collapse: collapse;
}

.aaima-wishlist-table th {
    text-align: left;
    padding: var(--aaima-spacing-md);
    background: var(--aaima-bg-light);
    font-size: var(--aaima-font-size-sm);
}

.aaima-wishlist-table td {
    padding: var(--aaima-spacing-md);
    border-bottom: 1px solid var(--aaima-border-light);
    vertical-align: middle;
}

/* Wishlist Page */
.aaima-wishlist-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.aaima-wishlist-page .wishlist-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #232f3e;
}

.aaima-wishlist-page .wishlist-empty {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.aaima-wishlist-page .wishlist-empty svg {
    color: #ccc;
    margin-bottom: 16px;
}

.aaima-wishlist-page .wishlist-empty p {
    font-size: 18px;
    color: #666;
    margin-bottom: 24px;
}

.aaima-wishlist-page .wishlist-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.aaima-wishlist-page .wishlist-actions .wishlist-count {
    font-weight: 500;
    color: #666;
}

.aaima-wishlist-page .clear-wishlist {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 14px;
}

.aaima-wishlist-page .clear-wishlist:hover {
    text-decoration: underline;
}

.aaima-wishlist-page .wishlist-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.aaima-wishlist-page .wishlist-products.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.aaima-wishlist-page .wishlist-products.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.aaima-wishlist-page .wishlist-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.2s, opacity 0.3s, transform 0.3s;
}

.aaima-wishlist-page .wishlist-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.aaima-wishlist-page .wishlist-product-wrapper {
    padding: 16px;
}

.aaima-wishlist-page .remove-from-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    transition: all 0.2s;
}

.aaima-wishlist-page .remove-from-wishlist:hover {
    background: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

.aaima-wishlist-page .product-thumbnail {
    display: block;
    margin-bottom: 12px;
}

.aaima-wishlist-page .product-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.aaima-wishlist-page .product-title {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #232f3e;
    text-decoration: none;
    margin-bottom: 8px;
    line-height: 1.4;
}

.aaima-wishlist-page .product-title:hover {
    color: var(--aaima-primary, #ff9900);
}

.aaima-wishlist-page .product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.aaima-wishlist-page .product-rating .rating-count {
    font-size: 12px;
    color: #666;
}

.aaima-wishlist-page .product-price {
    font-size: 18px;
    font-weight: 600;
    color: #b12704;
    margin-bottom: 8px;
}

.aaima-wishlist-page .product-price del {
    font-size: 14px;
    color: #999;
    font-weight: normal;
}

.aaima-wishlist-page .product-stock {
    margin-bottom: 12px;
}

.aaima-wishlist-page .stock-status {
    font-size: 13px;
    font-weight: 500;
}

.aaima-wishlist-page .stock-status.in-stock {
    color: #007600;
}

.aaima-wishlist-page .stock-status.low-stock {
    color: #ff9900;
}

.aaima-wishlist-page .stock-status.out-of-stock {
    color: #dc3545;
}

.aaima-wishlist-page .product-actions .button {
    width: 100%;
    padding: 10px 16px;
    background: var(--aaima-primary, #ff9900);
    color: #111;
    border: none;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.aaima-wishlist-page .product-actions .button:hover {
    background: #e68a00;
}

.aaima-wishlist-page .out-of-stock-notice {
    display: block;
    text-align: center;
    color: #dc3545;
    font-size: 14px;
}

.aaima-wishlist-page .wishlist-share {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

@media (max-width: 992px) {
    .aaima-wishlist-page .wishlist-products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .aaima-wishlist-page .wishlist-products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .aaima-wishlist-page .wishlist-products {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   COMPARISON PAGE
   ========================================================================== */
.aaima-compare-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.aaima-compare-page .compare-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #232f3e;
}

.aaima-compare-page .compare-empty {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.aaima-compare-page .compare-empty svg {
    color: #ccc;
    margin-bottom: 16px;
}

.aaima-compare-page .compare-empty p {
    font-size: 18px;
    color: #666;
    margin-bottom: 24px;
}

.compare-table-wrapper {
    overflow-x: auto;
    margin-bottom: 24px;
}

.compare-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.compare-table tr {
    border-bottom: 1px solid #e5e5e5;
}

.compare-table tr:last-child {
    border-bottom: none;
}

.compare-table th,
.compare-table td {
    padding: 16px 20px;
    text-align: center;
    vertical-align: middle;
}

.compare-table th.compare-label {
    background: #f8f9fa;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: #232f3e;
    width: 180px;
    min-width: 180px;
}

.compare-table td.compare-value {
    min-width: 200px;
    position: relative;
}

.compare-table .compare-image td {
    padding: 20px;
}

.compare-table .compare-image td a {
    display: block;
    position: relative;
}

.compare-table .compare-image td img {
    max-width: 150px;
    max-height: 150px;
    width: auto;
    height: auto;
    border-radius: 8px;
}

.compare-table .remove-compare {
    position: absolute;
    top: 0;
    right: 20px;
    width: 28px;
    height: 28px;
    background: #dc3545;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.compare-table .remove-compare:hover {
    background: #c82333;
    transform: scale(1.1);
}

.compare-table .compare-title td a {
    font-size: 16px;
    font-weight: 600;
    color: #232f3e;
    text-decoration: none;
}

.compare-table .compare-title td a:hover {
    color: #ff9900;
}

.compare-table .compare-price td {
    font-size: 18px;
    font-weight: 700;
    color: #b12704;
}

.compare-table .compare-price td del {
    font-size: 14px;
    color: #999;
    font-weight: normal;
}

.compare-table .compare-rating td {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.compare-table .rating-count {
    font-size: 12px;
    color: #666;
}

.compare-table .no-rating {
    color: #999;
    font-size: 13px;
}

.compare-table .compare-stock .in-stock {
    color: #007600;
    font-weight: 500;
}

.compare-table .compare-stock .out-of-stock {
    color: #dc3545;
    font-weight: 500;
}

.compare-table .compare-add-to-cart .button {
    padding: 10px 20px;
    background: #ff9900;
    color: #111;
    border: none;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.compare-table .compare-add-to-cart .button:hover {
    background: #e68a00;
}

.aaima-compare-page .compare-actions {
    text-align: center;
    padding: 20px 0;
}

.aaima-compare-page .compare-actions .button {
    padding: 12px 24px;
    background: #f0f0f0;
    color: #333;
    border: none;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.aaima-compare-page .compare-actions .button:hover {
    background: #e0e0e0;
}

@media (max-width: 768px) {
    .compare-table th.compare-label {
        width: 120px;
        min-width: 120px;
        font-size: 13px;
        padding: 12px 10px;
    }
    
    .compare-table td.compare-value {
        min-width: 150px;
        padding: 12px 10px;
    }
    
    .compare-table .compare-image td img {
        max-width: 100px;
        max-height: 100px;
    }
}

/* Legacy comparison table */
.aaima-comparison-wrapper {
    overflow-x: auto;
}

.aaima-comparison-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}

.aaima-comparison-table th,
.aaima-comparison-table td {
    padding: var(--aaima-spacing-md);
    text-align: center;
    border: 1px solid var(--aaima-border-light);
}

.aaima-comparison-table th {
    background: var(--aaima-bg-light);
    font-weight: 600;
}

.aaima-comparison-table .feature-name {
    text-align: left;
    font-weight: 500;
}

/* ==========================================================================
   FLASH DEALS / COUNTDOWN
   ========================================================================== */
.aaima-flash-deals {
    background: var(--aaima-bg);
    border-radius: var(--aaima-radius-md);
    padding: var(--aaima-spacing-lg);
    margin-bottom: var(--aaima-spacing-xl);
}

.aaima-flash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--aaima-spacing-lg);
}

.aaima-flash-title {
    display: flex;
    align-items: center;
    gap: var(--aaima-spacing-md);
}

.aaima-flash-title h2 {
    margin: 0;
    font-size: var(--aaima-font-size-xl);
}

.aaima-countdown {
    display: flex;
    gap: var(--aaima-spacing-sm);
}

.aaima-countdown-item {
    text-align: center;
    background: var(--aaima-primary);
    color: #fff;
    padding: var(--aaima-spacing-sm) var(--aaima-spacing-md);
    border-radius: var(--aaima-radius-sm);
    min-width: 50px;
}

.aaima-countdown-value {
    font-size: var(--aaima-font-size-xl);
    font-weight: 700;
}

.aaima-countdown-label {
    font-size: var(--aaima-font-size-xs);
    text-transform: uppercase;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.aaima-footer {
    background: var(--aaima-footer-bg, #232f3e);
    color: var(--aaima-footer-text, #dddddd);
    margin-top: auto;
}

.aaima-footer-back-to-top {
    display: block;
    background: var(--aaima-nav-bg, #37475a);
    text-align: center;
    padding: var(--aaima-spacing-md);
    color: #fff;
    font-size: var(--aaima-font-size-sm);
    cursor: pointer;
    transition: var(--aaima-transition-fast);
    text-decoration: none;
}

.aaima-footer-back-to-top:hover {
    background: var(--aaima-primary, #ff9900);
    color: #fff;
    text-decoration: none;
}

.aaima-footer-main {
    padding: var(--aaima-spacing-2xl) 0;
}

.aaima-footer-widgets {
    display: grid;
    gap: var(--aaima-spacing-xl);
}

/* Footer widgets column layouts - use class-based columns */
.aaima-footer-widgets.columns-1 {
    grid-template-columns: 1fr;
}

.aaima-footer-widgets.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.aaima-footer-widgets.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.aaima-footer-widgets.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.aaima-footer-widget h4,
.aaima-footer-col h4,
.aaima-footer-col .widget-title {
    color: #fff;
    font-size: var(--aaima-font-size-base);
    margin-bottom: var(--aaima-spacing-md);
    font-weight: 600;
}

.aaima-footer-widget ul,
.aaima-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aaima-footer-widget li,
.aaima-footer-col li {
    margin-bottom: var(--aaima-spacing-xs);
}

.aaima-footer-widget a,
.aaima-footer-col a {
    color: var(--aaima-footer-link, #dddddd);
    font-size: var(--aaima-font-size-sm);
    text-decoration: none;
    transition: color 0.2s ease;
}

.aaima-footer-widget a:hover,
.aaima-footer-col a:hover {
    color: #fff;
    text-decoration: underline;
}

.aaima-footer-bottom {
    background: var(--aaima-header-bg, #131921);
    padding: var(--aaima-spacing-lg) 0;
}

.aaima-footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--aaima-spacing-md, 15px);
}

.aaima-footer-logo {
    flex-shrink: 0;
}

.aaima-footer-logo img,
.aaima-footer-logo .footer-logo-img {
    max-height: 35px;
    width: auto;
}

.aaima-footer-logo .footer-logo-link,
.aaima-footer-logo .footer-site-title {
    display: inline-block;
    text-decoration: none;
}

.aaima-footer-logo .footer-site-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
}

.aaima-footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--aaima-spacing-md, 15px);
}

.aaima-footer-links:empty {
    display: none;
}

.aaima-footer-links .footer-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--aaima-spacing-md, 15px);
    list-style: none;
    margin: 0;
    padding: 0;
}

.aaima-footer-links .footer-menu li {
    margin: 0;
}

.aaima-footer-links .footer-menu a {
    color: var(--aaima-footer-link, #dddddd);
    font-size: var(--aaima-font-size-sm);
    text-decoration: none;
}

.aaima-footer-links .footer-menu a:hover {
    color: #fff;
    text-decoration: underline;
}

.aaima-footer-links a {
    color: var(--aaima-footer-link, #dddddd);
    font-size: var(--aaima-font-size-sm);
}

.aaima-copyright {
    color: #999;
    font-size: var(--aaima-font-size-xs);
    text-align: center;
}

.aaima-payment-icons {
    display: flex;
    align-items: center;
    gap: var(--aaima-spacing-sm, 10px);
    background: #ffffff;
    padding: 5px 10px;
    border-radius: 4px;
}

.aaima-payment-icons img {
    height: 24px;
    width: auto;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .aaima-footer-widgets.columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .aaima-footer-widgets.columns-4,
    .aaima-footer-widgets.columns-3,
    .aaima-footer-widgets.columns-2 {
        grid-template-columns: 1fr;
    }
    
    .aaima-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: var(--aaima-spacing-md, 15px);
    }
    
    .aaima-footer-links {
        width: 100%;
    }
}

/* ==========================================================================
   QUICK VIEW MODAL
   ========================================================================== */
.aaima-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: var(--aaima-z-modal);
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--aaima-spacing-lg);
}

.aaima-modal-overlay.active {
    display: flex;
}

.aaima-modal {
    background: var(--aaima-bg);
    border-radius: var(--aaima-radius-lg);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.aaima-modal-close {
    position: absolute;
    top: var(--aaima-spacing-md);
    right: var(--aaima-spacing-md);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--aaima-bg-light);
    border: none;
    border-radius: var(--aaima-radius-full);
    cursor: pointer;
    z-index: 10;
}

.aaima-modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--aaima-spacing-lg);
    padding: var(--aaima-spacing-xl);
}

/* ==========================================================================
   LOADING STATES
   ========================================================================== */

/* ==========================================================================
   LOCATION MODAL - Amazon-style
   ========================================================================== */
.aaima-location-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.aaima-location-modal.active {
    display: flex;
}

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

.aaima-location-modal .aaima-modal-container {
    position: relative;
    background: #fff;
    border-radius: 8px;
    max-width: 420px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.aaima-location-modal .aaima-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e7e7e7;
    background: #f7f7f7;
    border-radius: 8px 8px 0 0;
}

.aaima-location-modal .aaima-modal-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #0f1111;
}

.aaima-location-modal .aaima-modal-title svg {
    color: var(--aaima-accent, #ff9900);
}

.aaima-location-modal .aaima-modal-close {
    position: static;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: #555;
    transition: all 0.2s;
}

.aaima-location-modal .aaima-modal-close:hover {
    background: #e7e7e7;
    color: #0f1111;
}

.aaima-location-modal .aaima-modal-body {
    padding: 20px;
}

.aaima-location-modal .location-description {
    margin: 0 0 20px;
    font-size: 14px;
    color: #565959;
    line-height: 1.5;
}

/* Detect Button Section */
.aaima-location-modal .location-detect-section {
    margin-bottom: 20px;
}

.aaima-location-modal .aaima-detect-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #0f1111;
    background: #fff;
    border: 1px solid #888;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.aaima-location-modal .aaima-detect-location:hover {
    background: #f7f7f7;
    border-color: #555;
}

.aaima-location-modal .aaima-detect-location.loading {
    opacity: 0.7;
    cursor: wait;
}

.aaima-location-modal .aaima-detect-location.loading svg {
    animation: spin 1s linear infinite;
}

.aaima-location-modal .detect-status {
    margin-top: 10px;
    text-align: center;
    font-size: 13px;
    min-height: 20px;
}

.aaima-location-modal .detect-status .detecting {
    color: #565959;
}

.aaima-location-modal .detect-status .success {
    color: #067d62;
}

.aaima-location-modal .detect-status .error {
    color: #c40000;
}

/* Divider */
.aaima-location-modal .location-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: #565959;
    font-size: 13px;
}

.aaima-location-modal .location-divider::before,
.aaima-location-modal .location-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e7e7e7;
}

.aaima-location-modal .location-divider span {
    padding: 0 15px;
}

/* Form Styles */
.aaima-location-modal .location-form .form-group {
    margin-bottom: 16px;
}

.aaima-location-modal .location-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #0f1111;
}

.aaima-location-modal .location-form .form-control {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #888;
    border-radius: 4px;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.aaima-location-modal .location-form .form-control:focus {
    outline: none;
    border-color: var(--aaima-accent, #ff9900);
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.2);
}

.aaima-location-modal .location-form select.form-control {
    cursor: pointer;
}

.aaima-location-modal .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.aaima-location-modal .form-actions {
    margin-top: 20px;
}

.aaima-location-modal .aaima-btn-primary {
    display: block;
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #0f1111;
    background: linear-gradient(to bottom, #f7dfa5, #f0c14b);
    border: 1px solid #a88734;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.aaima-location-modal .aaima-btn-primary:hover {
    background: linear-gradient(to bottom, #f5d78e, #eeb933);
}

/* Saved Addresses */
.aaima-location-modal .saved-addresses {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aaima-location-modal .saved-address-btn {
    display: flex;
    align-items: center;
    gap: 12px;
