
.header[data-v-04939a73] {
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.header-container[data-v-04939a73] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8px var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}
.logo[data-v-04939a73] {
    flex-shrink: 0;
    cursor: pointer;
}
.logo-image[data-v-04939a73] {
    height: 30px;
    width: auto;
}
.location-selector[data-v-04939a73] {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    transition: var(--transition);
}
.location-selector[data-v-04939a73]:hover {
    background-color: var(--gray-100);
}
.location-icon[data-v-04939a73] {
    width: 24px;
    height: 28px;
    flex-shrink: 0;
}
.location-info[data-v-04939a73] {
    display: flex;
    flex-direction: column;
}
.location-label[data-v-04939a73] {
    font-size: 0.75rem;
    color: var(--text-light);
}
.location-value[data-v-04939a73] {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    padding: 0;
}
.dropdown-icon[data-v-04939a73] {
    font-size: 0.625rem;
    color: var(--text-light);
}
.search-container[data-v-04939a73] {
    flex: 1;
    max-width: 600px;
    position: relative;
    display: flex;
    align-items: center;
}
.search-icon[data-v-04939a73] {
    position: absolute;
    left: 12px;
    width: 20px;
    height: 20px;
    pointer-events: none;
}
.search-input[data-v-04939a73] {
    width: 100%;
    padding: 10px 16px 10px 40px;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    font-size: 0.9375rem;
    transition: var(--transition);
    background-color: var(--gray-50);
}
.search-input[data-v-04939a73]:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 179, 0, 0.1);
}
.search-input[data-v-04939a73]::placeholder {
    color: var(--text-light);
}
.header-actions[data-v-04939a73] {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: auto;
}
.auth-button[data-v-04939a73] {
    padding: 8px 15px;
    background: transparent;
    color: var(--text-dark);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}
.auth-button[data-v-04939a73]:hover {
    background: var(--gray-100);
    border-color: var(--gray-300);
    transform: translateY(-1px);
}
.account-icon[data-v-04939a73] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.loyalty-points[data-v-04939a73] {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}
.points-icon[data-v-04939a73] {
    width: 20px;
    height: 20px;
}
.points-info[data-v-04939a73] {
    display: flex;
    flex-direction: column;
}
.points-value[data-v-04939a73] {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #000000;
}
.cart-button[data-v-04939a73] {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.cart-button[data-v-04939a73]:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}
.cart-icon[data-v-04939a73] {
    width: 24px;
    height: 24px;
}
.cart-badge[data-v-04939a73] {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.25rem;
}
.user-dropdown[data-v-04939a73] {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    min-width: 220px;
    padding: 8px 0;
    z-index: 200;
    animation: dropdownFadeIn-04939a73 0.2s ease;
}
@keyframes dropdownFadeIn-04939a73 {
from {
        opacity: 0;
        transform: translateY(-8px);
}
to {
        opacity: 1;
        transform: translateY(0);
}
}
.dropdown-item[data-v-04939a73] {
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    text-align: left;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: inherit;
}
.dropdown-item[data-v-04939a73]:hover {
    background-color: var(--gray-100);
}
.dropdown-item svg[data-v-04939a73] {
    flex-shrink: 0;
    color: #666;
}
.dropdown-item.logout[data-v-04939a73] {
    color: #dc2626;
}
.dropdown-item.logout svg[data-v-04939a73] {
    color: #dc2626;
}
.dropdown-divider[data-v-04939a73] {
    height: 1px;
    background-color: var(--gray-200);
    margin: 8px 0;
}
@media (max-width: 768px) {
.header[data-v-04939a73] {
        padding: var(--spacing-xs);
}
.header-container[data-v-04939a73] {
        padding: 0;
        gap: var(--spacing-sm);
}
.search-container[data-v-04939a73] {
        display: none;
}
.logo-image[data-v-04939a73] {
        height: 28px;
        display: none;
}
.location-selector[data-v-04939a73] {
        padding: var(--spacing-xs);
}
.loyalty-points[data-v-04939a73] {
        padding: var(--spacing-sm);
}
.auth-button[data-v-04939a73] {
        padding: 4px 10px;
}
.cart-button[data-v-04939a73] {
        width: 44px;
        height: 44px;
}
}

.modal-overlay[data-v-be1e42b2] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
}
.modal-content[data-v-be1e42b2] {
    background: white;
    border-radius: 24px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-height: 90vh;
    overflow-y: auto;
    margin: auto;
}
.blue-header[data-v-be1e42b2] {
    background: linear-gradient(180deg, #0052CC 0%, #0047B3 100%);
    padding: 60px 40px 80px;
    position: relative;
    overflow: visible;
}
.blue-header[data-v-be1e42b2]::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 30px;
    background: white;
    border-radius: 50% 50% 0 0 / 15px 15px 0 0;
}
.blue-header[data-v-be1e42b2]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}
.arabic-text[data-v-be1e42b2] {
    font-size: 32px;
    font-weight: 700;
    color: #FFB800;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    direction: rtl;
}
.logo-container[data-v-be1e42b2] {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.modal-logo[data-v-be1e42b2] {
    height: 100px;
    width: 100px;
    display: block;
    border: 5px solid white;
    border-radius: 20px;
}
.white-content[data-v-be1e42b2] {
    background: white;
    border-radius: 0 0 24px 24px;
    padding: 70px 40px 40px;
    position: relative;
}
.close-button[data-v-be1e42b2] {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
    z-index: 10;
}
.close-button[data-v-be1e42b2]:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}
h2[data-v-be1e42b2] {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    text-align: center;
}
.subtitle[data-v-be1e42b2] {
    font-size: 16px;
    color: #666;
    margin: 0 0 40px 0;
    text-align: center;
}
.auth-form[data-v-be1e42b2] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}
.form-group[data-v-be1e42b2] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.phone-input-group[data-v-be1e42b2] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
}
.country-select[data-v-be1e42b2] {
    flex: 0 0 140px;
}
.phone-number-input[data-v-be1e42b2] {
    flex: 1;
}
label[data-v-be1e42b2] {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
    display: block;
}
.country-code[data-v-be1e42b2] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background: #f9f9f9;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 51px;
    box-sizing: border-box;
    font-family: inherit;
    color: #1a1a1a;
    font-weight: 600;
}
.country-code[data-v-be1e42b2]:hover {
    border-color: #d1d5db;
    background: #f5f5f5;
}
.country-code[data-v-be1e42b2]:focus {
    outline: none;
    border-color: #0052CC;
    background: white;
}
input[data-v-be1e42b2] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.2s ease;
    font-family: inherit;
    background: white;
    height: 51px;
    box-sizing: border-box;
}
input[data-v-be1e42b2]:focus {
    outline: none;
    border-color: #0052CC;
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}
input[data-v-be1e42b2]:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
}
.primary-button[data-v-be1e42b2] {
    width: 100%;
    padding: 16px 24px;
    background: #0052CC;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}
.primary-button[data-v-be1e42b2]:hover:not(:disabled) {
    background: #003d99;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 82, 204, 0.3);
}
.primary-button[data-v-be1e42b2]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.primary-button.full-width[data-v-be1e42b2] {
    width: 100%;
}
.divider[data-v-be1e42b2] {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: #999;
    font-size: 14px;
}
.divider[data-v-be1e42b2]::before,
.divider[data-v-be1e42b2]::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e5e5;
}
.social-buttons[data-v-be1e42b2] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.social-button[data-v-be1e42b2] {
    padding: 16px;
    background: white;
    color: #1a1a1a;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}
.social-button[data-v-be1e42b2]:hover:not(:disabled) {
    background: #f9fafb;
    border-color: #d1d5db;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.social-button[data-v-be1e42b2]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.apple-button[data-v-be1e42b2] {
    color: #000;
}
.google-button svg[data-v-be1e42b2] {
    width: 24px;
    height: 24px;
}
.error-message[data-v-be1e42b2] {
    padding: 12px 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    color: #dc2626;
    font-size: 14px;
    margin-bottom: 20px;
}
.success-message[data-v-be1e42b2] {
    padding: 12px 16px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    color: #16a34a;
    font-size: 14px;
    margin-bottom: 20px;
}
.otp-method-selection[data-v-be1e42b2] {
    margin: 24px 0;
}
.otp-method-selection label[data-v-be1e42b2] {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    display: block;
}
.otp-methods[data-v-be1e42b2] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.otp-method-button[data-v-be1e42b2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 600;
    color: #666;
}
.otp-method-button[data-v-be1e42b2]:hover:not(:disabled) {
    border-color: #0052CC;
    background: #f8f9ff;
}
.otp-method-button.active[data-v-be1e42b2] {
    border-color: #0052CC;
    background: #f0f5ff;
    color: #0052CC;
}
.otp-method-button[data-v-be1e42b2]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.otp-method-button svg[data-v-be1e42b2] {
    width: 32px;
    height: 32px;
}
.back-button[data-v-be1e42b2] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: #0052CC;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 20px;
    margin-left: -8px;
    font-family: inherit;
}
.back-button[data-v-be1e42b2]:hover:not(:disabled) {
    background: #f8f9ff;
    border-radius: 8px;
    transform: translateX(-2px);
}
.back-button[data-v-be1e42b2]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.back-button svg[data-v-be1e42b2] {
    width: 20px;
    height: 20px;
}
@media (max-width: 480px) {
.blue-header[data-v-be1e42b2] {
        padding: 40px 24px 60px;
}
.white-content[data-v-be1e42b2] {
        padding: 60px 24px 32px;
}
.arabic-text[data-v-be1e42b2] {
        font-size: 24px;
        margin-bottom: 30px;
}
.modal-logo[data-v-be1e42b2] {
        height: 80px;
        width: 80px;
}
.logo-container[data-v-be1e42b2] {
        bottom: -30px;
}
.phone-input-group[data-v-be1e42b2] {
        flex-direction: column;
}
.country-select[data-v-be1e42b2] {
        flex: 1;
}
}
.privacy-text[data-v-be1e42b2] {
    margin-top: 32px;
    font-size: 12px;
    color: #999;
    line-height: 1.6;
    text-align: center;
}
.privacy-link[data-v-be1e42b2] {
    color: #0052CC;
    text-decoration: none;
    font-weight: 600;
}
.privacy-link[data-v-be1e42b2]:hover {
    text-decoration: underline;
}

.modal-overlay[data-v-f59ff56d] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}
.modal-content[data-v-f59ff56d] {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}
.close-button[data-v-f59ff56d] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f4f6;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6b7280;
    z-index: 10;
}
.close-button[data-v-f59ff56d]:hover {
    background: #e5e7eb;
    color: #1a1a1a;
    transform: scale(1.05);
}
.close-button[data-v-f59ff56d]:active {
    transform: scale(0.95);
}
.modal-title[data-v-f59ff56d] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}
.modal-subtitle[data-v-f59ff56d] {
    font-size: 0.875rem;
    color: #666;
    margin: 0 0 1.5rem 0;
}
.map-container[data-v-f59ff56d] {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 2px solid #e5e7eb;
}
#map[data-v-f59ff56d] {
    width: 100%;
    height: 100%;
}
.center-marker[data-v-f59ff56d] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    pointer-events: none;
    z-index: 1000;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.center-marker img[data-v-f59ff56d] {
    width: 40px;
    height: 46px;
    display: block;
}
.current-location-btn[data-v-f59ff56d] {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background-color: #f3f4f6;
    color: #1a1a1a;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.current-location-btn[data-v-f59ff56d]:hover {
    background-color: #e5e7eb;
    transform: translateY(-1px);
}
.current-location-btn[data-v-f59ff56d]:active {
    transform: translateY(0);
}
.confirm-btn[data-v-f59ff56d] {
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: #034AB3;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}
.confirm-btn[data-v-f59ff56d]:hover {
    background-color: #023a8f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(3, 74, 179, 0.3);
}
.confirm-btn[data-v-f59ff56d]:active {
    transform: translateY(0);
}
@media (max-width: 640px) {
.modal-content[data-v-f59ff56d] {
        padding: 1.5rem;
}
.map-container[data-v-f59ff56d] {
        height: 300px;
}
.modal-title[data-v-f59ff56d] {
        font-size: 1.25rem;
}
}

.modal-overlay[data-v-fe306151] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
}
.modal[data-v-fe306151] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    background-color: white;
    border-radius: 16px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.modal-header[data-v-fe306151] {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    z-index: 10;
}
.close-button[data-v-fe306151] {
    background-color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s;
}
.close-button[data-v-fe306151]:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.modal-content[data-v-fe306151] {
    flex: 1;
    overflow-y: auto;
}
.product-image-section[data-v-fe306151] {
    width: 100%;
    height: 250px;
    overflow: hidden;
}
.product-image[data-v-fe306151] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-details[data-v-fe306151] {
    padding: var(--spacing-lg);
}
.product-title[data-v-fe306151] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 var(--spacing-sm) 0;
}
.product-description[data-v-fe306151] {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0 0 var(--spacing-lg) 0;
}
.ingredients-section[data-v-fe306151],
.sizes-section[data-v-fe306151],
.options-section[data-v-fe306151],
.supplements-section[data-v-fe306151] {
    margin-bottom: var(--spacing-lg);
}
.ingredients-section h3[data-v-fe306151],
.sizes-section h3[data-v-fe306151],
.options-section h3[data-v-fe306151],
.supplements-section h3[data-v-fe306151] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 var(--spacing-md) 0;
}
.required[data-v-fe306151] {
    color: var(--primary-color);
}
.ingredients-list[data-v-fe306151] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}
.ingredient-tag[data-v-fe306151] {
    padding: 6px 12px;
    background-color: var(--bg-light);
    border: 1px solid var(--gray-300);
    border-radius: 20px;
    font-size: 0.8125rem;
    color: var(--text-light);
}
.sizes-options-row[data-v-fe306151] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}
.size-chip[data-v-fe306151] {
    display: inline-flex;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--gray-300);
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.2s;
    background-color: white;
}
.size-chip input[type='radio'][data-v-fe306151] {
    display: none;
}
.size-chip.selected[data-v-fe306151] {
    border-color: var(--primary-color);
    background-color: rgba(255, 71, 71, 0.05);
}
.size-chip[data-v-fe306151]:hover {
    border-color: var(--primary-color);
}
.size-content[data-v-fe306151] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.size-name[data-v-fe306151] {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-dark);
}
.size-price[data-v-fe306151] {
    font-weight: 500;
    font-size: 0.8125rem;
    color: var(--text-light);
}
.choice-group-section[data-v-fe306151] {
    margin-bottom: var(--spacing-lg);
}
.choice-group-header[data-v-fe306151] {
    margin-bottom: var(--spacing-md);
}
.choice-group-header h3[data-v-fe306151] {
    margin: 0 0 4px 0;
}
.choice-instructions[data-v-fe306151] {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
    font-style: italic;
}
.options-list[data-v-fe306151] {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}
.option-item[data-v-fe306151] {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}
.option-item input[type='radio'][data-v-fe306151],
.option-item input[type='checkbox'][data-v-fe306151] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}
.option-item.selected[data-v-fe306151] {
    border-color: var(--primary-color);
    background-color: rgba(255, 71, 71, 0.05);
}
.option-item[data-v-fe306151]:hover {
    border-color: var(--primary-color);
}
.option-name[data-v-fe306151] {
    font-weight: 500;
    color: var(--text-dark);
    flex: 1;
}
.option-price[data-v-fe306151] {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.875rem;
}
.show-more-button[data-v-fe306151] {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    margin-top: var(--spacing-sm);
    background: transparent;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}
.show-more-button[data-v-fe306151]:hover {
    background-color: rgba(255, 71, 71, 0.05);
    border-color: var(--primary-color);
}
.supplements-list[data-v-fe306151] {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}
.supplement-item[data-v-fe306151] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md);
    border: 1px solid var(--gray-300);
    border-radius: 12px;
}
.supplement-info[data-v-fe306151] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}
.supplement-name[data-v-fe306151] {
    font-weight: 500;
    color: var(--text-dark);
}
.supplement-price[data-v-fe306151] {
    font-size: 0.875rem;
    color: var(--text-light);
}
.supplement-controls[data-v-fe306151] {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}
.supplement-button[data-v-fe306151] {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--gray-300);
    background-color: white;
    color: var(--text-dark);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.supplement-button[data-v-fe306151]:hover:not(:disabled) {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}
.supplement-button[data-v-fe306151]:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.supplement-quantity[data-v-fe306151] {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
}
.modal-footer[data-v-fe306151] {
    padding: var(--spacing-lg);
    border-top: 1px solid var(--gray-200);
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}
.footer-controls[data-v-fe306151] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}
.quantity-section[data-v-fe306151] {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) var(--spacing-sm);
    background-color: var(--bg-light);
    border-radius: 8px;
}
.quantity-btn[data-v-fe306151] {
    width: 32px;
    height: 32px;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    background-color: white;
    color: var(--text-dark);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quantity-btn[data-v-fe306151]:hover:not(:disabled) {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}
.quantity-btn[data-v-fe306151]:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.quantity-display[data-v-fe306151] {
    min-width: 32px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
}
.total-price[data-v-fe306151] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}
.add-to-cart-button[data-v-fe306151] {
    flex: 1;
    padding: var(--spacing-md);
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.add-to-cart-button[data-v-fe306151]:hover:not(:disabled) {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 71, 71, 0.3);
}
.add-to-cart-button[data-v-fe306151]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}
.modal-overlay-enter-active[data-v-fe306151],
.modal-overlay-leave-active[data-v-fe306151] {
    transition: opacity 0.3s ease;
}
.modal-overlay-enter-from[data-v-fe306151],
.modal-overlay-leave-to[data-v-fe306151] {
    opacity: 0;
}
.modal-enter-active[data-v-fe306151],
.modal-leave-active[data-v-fe306151] {
    transition: all 0.3s ease;
}
.modal-enter-from[data-v-fe306151],
.modal-leave-to[data-v-fe306151] {
    opacity: 0;
    transform: translate(-50%, -45%);
}
@media (max-width: 768px) {
.modal[data-v-fe306151] {
        width: 95%;
        max-height: 95vh;
}
.product-image-section[data-v-fe306151] {
        height: 200px;
}
.modal-footer[data-v-fe306151] {
        flex-direction: column;
        align-items: stretch;
}
.total-price[data-v-fe306151] {
        text-align: center;
}
}

.modal-overlay[data-v-ab45c6e0] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}
.modal-content[data-v-ab45c6e0] {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}
.close-button[data-v-ab45c6e0] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f4f6;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6b7280;
    z-index: 10;
}
.close-button[data-v-ab45c6e0]:hover {
    background: #e5e7eb;
    color: #1a1a1a;
    transform: scale(1.05);
}
.close-button[data-v-ab45c6e0]:active {
    transform: scale(0.95);
}
.modal-title[data-v-ab45c6e0] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}
@media (max-width: 640px) {
.modal-content[data-v-ab45c6e0] {
        padding: 1.5rem;
}
.map-container[data-v-ab45c6e0] {
        height: 300px;
}
.modal-title[data-v-ab45c6e0] {
        font-size: 1.25rem;
}
}

.coupon-input-field[data-v-7be7550d] {
    display: flex;
}
.coupon-input-field input[data-v-7be7550d]{
    border-radius: 4px 0 0 4px !important;
}
.coupon-error[data-v-7be7550d] {
    color: var(--error-color);
    padding: 2px;
    font-size: 14px;
    font-weight: 600;
}
.coupon-button[data-v-7be7550d] {
    border-radius: 0 4px 4px 0;
    background: var(--gray-200);
    color: var(--color-black);
    padding: var(--spacing-xs) var(--spacing-sm);
    cursor: pointer;
}
.coupon-button[data-v-7be7550d]:disabled {
    cursor: not-allowed;
}
.cart-overlay[data-v-7be7550d] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
.cart-sidebar[data-v-7be7550d] {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 450px;
    max-width: 90vw;
    background-color: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    display: flex;
    flex-direction: column;
}
.cart-header[data-v-7be7550d] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--gray-200);
}
.cart-header h2[data-v-7be7550d] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}
.close-button[data-v-7be7550d] {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.close-button[data-v-7be7550d]:hover {
    color: var(--text-dark);
}
.cart-content[data-v-7be7550d] {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}
.cart-items[data-v-7be7550d] {
    flex: 1;
    overflow-y: auto;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}
.restaurant-group[data-v-7be7550d] {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}
.restaurant-group-header[data-v-7be7550d] {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: var(--spacing-sm);
}
.restaurant-thumbnail[data-v-7be7550d] {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}
.restaurant-info[data-v-7be7550d] {
    flex: 1;
}
.restaurant-name[data-v-7be7550d] {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}
.cart-item[data-v-7be7550d] {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: var(--bg-light);
    border-radius: 12px;
}
.item-details[data-v-7be7550d] {
    flex: 1;
    min-width: 0;
}
.item-details h3[data-v-7be7550d] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 var(--spacing-xs) 0;
}
.item-supplements[data-v-7be7550d] {
    margin-bottom: var(--spacing-xs);
}
.supplement[data-v-7be7550d] {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin: 2px 0;
}
.item-actions[data-v-7be7550d] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--spacing-sm);
}
.remove-button[data-v-7be7550d] {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.2s;
}
.remove-button[data-v-7be7550d]:hover {
    color: #e74c3c;
}
.item-footer[data-v-7be7550d] {
    border-radius: 8px;
    background-color: white;
    flex: 1;
    overflow-y: auto;
    padding: var(--spacing-xs);
    display: flex;
    flex-direction: row;
    gap: var(--spacing-xl);
}
.quantity-controls[data-v-7be7550d] {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 4px;
}
.item-price[data-v-7be7550d] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: var(--spacing-xs);
}
.quantity-button[data-v-7be7550d] {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1px solid var(--gray-300);
    background-color: white;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quantity-button[data-v-7be7550d]:hover:not(:disabled) {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}
.quantity-button[data-v-7be7550d]:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.quantity[data-v-7be7550d] {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
}
.cart-footer[data-v-7be7550d] {
    border-top: 1px solid var(--gray-200);
    padding: var(--spacing-lg);
    background-color: white;
}
.cart-summary[data-v-7be7550d] {
    margin-bottom: var(--spacing-lg);
}
.summary-row[data-v-7be7550d] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xs);
    font-size: 0.9375rem;
    color: var(--text-light);
}
.summary-row.discount .label[data-v-7be7550d],
.summary-row.discount .value[data-v-7be7550d]{
    color: var(--success-color);
}
.summary-row.total[data-v-7be7550d] {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0;
}
.summary-row .service_fees_link[data-v-7be7550d] {
    color: var(--primary-color);
}
.checkout-button[data-v-7be7550d] {
    width: 100%;
    padding: var(--spacing-md);
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: var(--spacing-sm);
}
.checkout-button[data-v-7be7550d]:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 71, 71, 0.3);
}
.checkout-button[data-v-7be7550d]:disabled {
    background-color: var(--bg-light);
    color: var(--text-dark);
    cursor: none;
}
.cart-actions[data-v-7be7550d] {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: var(--spacing-sm);
    padding: 10px 0;
    justify-content: space-between;
}
.back-button[data-v-7be7550d] {
    border: none;
    padding: 4px 10px;
    cursor: pointer;
    transition: color 0.2s;
    display: flex;
    gap: var(--spacing-xs);
}
.clear-button[data-v-7be7550d] {
    background: none;
    border: none;
    padding: 4px 10px;
    cursor: pointer;
    color: var(--error-color);
    transition: color 0.2s;
    display: flex;
    gap: var(--spacing-xs);
}
.clear-button[data-v-7be7550d]:hover {
    background: var(--bg-light);
}
.customer-info h4[data-v-7be7550d] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 var(--spacing-md) 0;
}
.form-group[data-v-7be7550d] {
    margin-bottom: var(--spacing-md);
}
.form-group label[data-v-7be7550d] {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}
.form-group input[data-v-7be7550d] {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.9375rem;
    color: var(--text-dark);
    transition: all 0.2s;
    background-color: white;
    box-sizing: border-box;
}
.form-group input[data-v-7be7550d]::placeholder {
    color: var(--text-light);
}
.form-group input[data-v-7be7550d]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}
.form-group input[data-v-7be7550d]:hover {
    border-color: var(--gray-300);
}
@media (max-width: 768px) {
.cart-sidebar[data-v-7be7550d] {
        width: 100vw;
        max-width: 100vw;
}
.cart-items[data-v-7be7550d] {
        padding: var(--spacing-md);
}
.item-image[data-v-7be7550d] {
        width: 70px;
        height: 70px;
}
}
.delivery-section h3[data-v-7be7550d],
.order-summary-section h3[data-v-7be7550d],
.payment-section h3[data-v-7be7550d] {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 var(--spacing-md) 0;
}
.address-card[data-v-7be7550d] {
    gap: var(--spacing-md);
}
.address-details[data-v-7be7550d] {
    flex: 1;
}
.address-text[data-v-7be7550d] {
    font-size: 0.9375rem;
    color: var(--text-dark);
    margin: 0 0 var(--spacing-xs) 0;
    line-height: 1.5;
}
.change-address-button[data-v-7be7550d] {
    background: none;
    border: none;
    padding: 0;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}
.change-address-button[data-v-7be7550d]:hover {
    opacity: 0.8;
}
.summary-items[data-v-7be7550d] {
    display: flex;
    flex-direction: column;
}
.summary-row[data-v-7be7550d] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.summary-row.total[data-v-7be7550d] {
    border-top: 2px solid var(--gray-200);
    padding-top: var(--spacing-md);
    margin-top: var(--spacing-sm);
}
.summary-row .label[data-v-7be7550d] {
    font-size: 0.9375rem;
    color: var(--text-light);
}
.summary-row .value[data-v-7be7550d] {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
}
.summary-row.total .label[data-v-7be7550d],
.summary-row.total .value[data-v-7be7550d] {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
}
.payment-options[data-v-7be7550d] {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}
.payment-option[data-v-7be7550d] {
    cursor: pointer;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: var(--spacing-xs);
    transition: all 0.2s;
    background-color: white;
}
.payment-option[data-v-7be7550d]:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-very-light);
}
.payment-option.selected[data-v-7be7550d] {
    border-color: var(--primary-color);
    background-color: var(--primary-very-light);
}
.payment-option input[type='radio'][data-v-7be7550d] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.option-content[data-v-7be7550d] {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}
.option-icon[data-v-7be7550d] {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.option-text[data-v-7be7550d] {
    flex: 1;
}
.option-title[data-v-7be7550d] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 4px 0;
}
.option-description[data-v-7be7550d] {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}
.empty-cart[data-v-7be7550d] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-2xl);
    color: var(--text-light);
    flex: 1;
}
.empty-cart svg[data-v-7be7550d] {
    margin-bottom: var(--spacing-lg);
    opacity: 0.5;
}
.empty-cart p[data-v-7be7550d] {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 var(--spacing-sm) 0;
}
.empty-cart span[data-v-7be7550d] {
    font-size: 0.875rem;
}

