/* ============================================
   Manar Handmade - Global Styles
   Modern, Responsive, Dark/Light Mode Support
   ============================================ */

/* ===== CSS Variables & Theme System ===== */
:root {
    --gold-primary: #D4AF37;
    --gold-light: #F4E4BC;
    --gold-dark: #AA8C2C;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #AA8C2C 100%);
    --gold-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);

    --bg-primary: #FAFAFA;
    --bg-secondary: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-input: #F5F5F5;
    --bg-hover: #F0F0F0;
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    --text-muted: #999999;
    --border-color: #E0E0E0;
    --border-gold: #D4AF37;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --overlay-bg: rgba(0, 0, 0, 0.6);

    --success: #22C55E;
    --success-bg: #DCFCE7;
    --danger: #EF4444;
    --danger-bg: #FEE2E2;
    --warning: #F59E0B;
    --info: #3B82F6;

    --font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #0F0F0F;
        --bg-secondary: #1A1A1A;
        --bg-card: #1E1E1E;
        --bg-input: #2A2A2A;
        --bg-hover: #333333;
        --text-primary: #F5F5F5;
        --text-secondary: #AAAAAA;
        --text-muted: #777777;
        --border-color: #333333;
        --border-gold: #D4AF37;
        --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
        --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
        --shadow-lg: 0 8px 30px rgba(0,0,0,0.5);
        --overlay-bg: rgba(0, 0, 0, 0.8);
    }
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    direction: rtl;
    transition: var(--transition);
}

.hidden { display: none !important; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
    background: var(--gold-gradient);
    color: #1A1A1A;
    box-shadow: var(--gold-shadow);
    border: 2px solid var(--gold-dark);
}
.btn-gold:hover {
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    filter: brightness(1.1);
}

.btn-green {
    background: var(--success);
    color: white;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}
.btn-green:hover {
    background: #16A34A;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.btn-red {
    background: var(--danger);
    color: white;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}
.btn-red:hover {
    background: #DC2626;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
}
.btn-outline-gold:hover {
    background: var(--gold-primary);
    color: #1A1A1A;
}

.btn-sm { padding: 8px 16px; font-size: 0.875rem; }
.btn-block { width: 100%; }

.btn-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}
.btn-close:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

/* ===== Modal System ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: var(--overlay-bg);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-gold);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(212, 175, 55, 0.1);
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: var(--transition);
    position: relative;
}
.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: 32px 32px 16px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== Logo ===== */
.logo-gold {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.logo-gold.small {
    flex-direction: row;
    gap: 12px;
}
.logo-gold h1, .logo-gold h2 {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-gold.small h2 { font-size: 1.25rem; }
.logo-icon { font-size: 2.5rem; }
.logo-gold.small .logo-icon { font-size: 1.5rem; }
.subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 4px;
}

/* ===== Login Modal ===== */
.login-modal { max-width: 420px; }
.login-form {
    padding: 24px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.login-footer {
    padding: 16px 32px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ===== Input Groups ===== */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.input-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}
.input-group label .optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-input);
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}
.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.input-group input::placeholder,
.input-group textarea::placeholder { color: var(--text-muted); }

.password-wrapper { position: relative; }
.password-wrapper input { padding-left: 48px; }
.toggle-password {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    opacity: 0.6;
    transition: var(--transition);
}
.toggle-password:hover { opacity: 1; }

.hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.error-msg {
    font-size: 0.8rem;
    color: var(--danger);
    min-height: 18px;
    display: block;
}

.price-input-wrapper { position: relative; }
.price-input-wrapper input { padding-left: 60px; }
.currency-label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 0.9rem;
}

/* ===== Image Upload ===== */
.image-upload-area {
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-upload-area:hover {
    border-color: var(--gold-primary);
    background: var(--bg-hover);
}
.image-upload-area.has-image {
    border-style: solid;
    border-color: var(--gold-primary);
    padding: 0;
    min-height: 200px;
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}
.upload-icon { font-size: 2rem; }
.upload-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.image-preview {
    position: relative;
    width: 100%;
    height: 200px;
}
.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}
.btn-remove-image {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--danger);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: var(--transition);
}
.btn-remove-image:hover {
    transform: scale(1.1);
    background: #DC2626;
}

/* ===== Form Actions ===== */
.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}
.form-actions .btn { flex: 1; }

/* ===== App Header ===== */
.app-header {
    background: var(--bg-card);
    border-bottom: 2px solid var(--border-gold);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.user-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}
.admin-badge {
    background: var(--gold-gradient);
    color: #1A1A1A;
    border: 1px solid var(--gold-dark);
}
.user-badge-plain {
    background: var(--bg-input);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}
.user-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

/* ===== Main Content ===== */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ===== Stats Grid ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}
.stat-card {
    background: var(--bg-card);
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.stat-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}
.stat-info {
    display: flex;
    flex-direction: column;
}
.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1.2;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ===== Action Section ===== */
.action-section { display: flex; justify-content: center; }
.btn-add-product {
    padding: 16px 32px;
    font-size: 1.1rem;
    gap: 12px;
}
.btn-icon { font-size: 1.25rem; }

/* ===== Section Cards ===== */
.section-card {
    background: var(--bg-card);
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.section-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
}
.section-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== Data Tables ===== */
.table-responsive { overflow-x: auto; padding: 0; }
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.data-table th,
.data-table td {
    padding: 14px 16px;
    text-align: right;
    border-bottom: 1px solid var(--border-color);
}
.data-table th {
    background: var(--bg-secondary);
    font-weight: 700;
    color: var(--gold-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.data-table td {
    color: var(--text-primary);
    vertical-align: middle;
}
.data-table tr:hover td { background: var(--bg-hover); }
.data-table .product-thumb {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border-gold);
}
.data-table .product-thumb-placeholder {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--bg-input);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 2px dashed var(--border-color);
}
.data-table .price-tag {
    font-weight: 700;
    color: var(--gold-primary);
    font-size: 1rem;
}
.data-table .desc-cell {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text-secondary);
}
.data-table .date-cell {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
}
.data-table .actions-cell { display: flex; gap: 8px; }
.data-table .btn-action {
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-family);
}
.btn-action-delete {
    background: var(--danger-bg);
    color: var(--danger);
}
.btn-action-delete:hover {
    background: var(--danger);
    color: white;
}

/* ===== Empty State ===== */
.empty-state {
    padding: 48px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.empty-icon { font-size: 3rem; opacity: 0.5; }
.empty-state p { color: var(--text-secondary); font-weight: 600; }
.empty-hint { font-size: 0.85rem; color: var(--text-muted); }

/* ===== Hero Section ===== */
.hero-section {
    text-align: center;
    padding: 32px 16px;
    background: var(--bg-card);
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.hero-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.hero-subtitle { color: var(--text-secondary); font-size: 1rem; }

/* ===== Products Grid (User) ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.product-card {
    background: var(--bg-card);
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md), 0 0 30px rgba(212, 175, 55, 0.15);
}
.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 2px solid var(--border-gold);
}
.product-image-placeholder {
    width: 100%;
    height: 220px;
    background: var(--bg-input);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border-bottom: 2px solid var(--border-gold);
}
.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.product-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
}
.product-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    gap: 4px;
}
.product-price .currency { font-size: 0.85rem; font-weight: 600; }
.product-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
}
.product-actions { margin-top: 8px; }
.btn-buy { width: 100%; padding: 12px; font-size: 1rem; }

/* ===== Order Modal ===== */
.order-modal { max-width: 460px; }
.order-product-info {
    padding: 16px 24px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    gap: 16px;
    align-items: center;
}
.order-product-info img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border-gold);
}
.order-product-info .order-product-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.order-product-info .order-product-name { font-weight: 700; color: var(--text-primary); }
.order-product-info .order-product-price { color: var(--gold-primary); font-weight: 700; }

.order-form {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ===== Payment Modal ===== */
.payment-modal { max-width: 440px; }
.payment-info { padding: 24px; }
.transfer-card {
    background: var(--gold-gradient);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    border: 2px solid var(--gold-dark);
    position: relative;
}
.transfer-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1A1A1A;
    opacity: 0.8;
    margin-bottom: 8px;
}
.transfer-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1A1A1A;
    font-family: monospace;
    letter-spacing: 2px;
    margin-bottom: 12px;
    direction: ltr;
}
.btn-copy {
    background: rgba(255,255,255,0.3);
    border: 2px solid #1A1A1A;
    color: #1A1A1A;
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.btn-copy:hover {
    background: #1A1A1A;
    color: var(--gold-primary);
}
.btn-copy.copied {
    background: var(--success);
    border-color: var(--success);
    color: white;
}
.payment-instructions {
    background: var(--bg-input);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.payment-instructions p { font-size: 0.9rem; color: var(--text-secondary); }

.payment-upload-group { padding: 0 24px 24px; }

/* ===== Toast Notifications ===== */
.toast-container {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.toast {
    background: var(--bg-card);
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 14px 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: toastSlide 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
    min-width: 280px;
    justify-content: center;
}
.toast.success { border-color: var(--success); background: var(--success-bg); color: #166534; }
.toast.error { border-color: var(--danger); background: var(--danger-bg); color: #991B1B; }
.toast.warning { border-color: var(--warning); background: #FEF3C7; color: #92400E; }
.toast.info { border-color: var(--info); background: #DBEAFE; color: #1E40AF; }
@keyframes toastSlide {
    from { opacity: 0; transform: translateY(-20px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== Loading Overlay ===== */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: var(--overlay-bg);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    flex-direction: column;
    gap: 16px;
}
.loading-spinner p { color: var(--gold-primary); font-weight: 600; font-size: 1.1rem; }
.spinner-ring {
    width: 56px;
    height: 56px;
    border: 4px solid var(--border-color);
    border-top-color: var(--gold-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-primary); }

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .modal { max-width: 100%; margin: 10px; }
    .login-form { padding: 20px 24px 24px; }
    .header-content {
        flex-wrap: wrap;
        padding: 10px 16px;
    }
    .header-actions {
        width: 100%;
        justify-content: flex-end;
        margin-top: 8px;
    }
    .main-content { padding: 16px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: 1fr; }
    .data-table { font-size: 0.8rem; }
    .data-table th, .data-table td { padding: 10px 8px; }
    .product-thumb, .product-thumb-placeholder { width: 40px; height: 40px; }
    .hero-title { font-size: 1.25rem; }
    .form-actions { flex-direction: column; }
    .transfer-number { font-size: 1.4rem; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .stat-card { padding: 16px; }
    .logo-gold h1 { font-size: 1.4rem; }
    .btn-add-product { width: 100%; }
    .data-table .desc-cell { max-width: 100px; }
}

/* ===== Country Selector ===== */
.input-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-input);
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 12px center;
    padding-left: 40px;
}
.input-group select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.input-group select option {
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 10px;
}
.input-group select option:first-child {
    color: var(--text-muted);
}
.required-star {
    color: var(--danger);
    font-weight: bold;
}

/* ===== Shipping Note ===== */
.shipping-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-right: 4px;
}
.data-table .shipping-note {
    font-size: 0.7rem;
}
.order-product-info .shipping-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
}
