/* ===================================================
   Pic2Light — Professional Warm Design System
   No emojis. No shortcuts. Clean and refined.
   =================================================== */

:root {
    --bg: #FAF6F1;
    --bg-warm: #F3ECE3;
    --bg-deep: #E8DFD3;
    --text: #2A1F14;
    --text-muted: #6B5D4F;
    --text-light: #8C7E6F;
    --primary: #C4622D;
    --primary-hover: #A8501F;
    --primary-glow: rgba(196, 98, 45, 0.12);
    --accent: #D4956A;
    --surface: #FFFFFF;
    --surface-warm: #FFF9F3;
    --border: #E5DDD2;
    --border-light: #F0EAE1;
    --success: #4A7C59;
    --success-bg: #EDF5F0;
    --warning: #B8860B;
    --warning-bg: #FFF8E7;
    --danger: #C0392B;
    --danger-bg: #FDEDEB;
    --info: #2980B9;
    --info-bg: #EBF5FB;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-xs: 0 1px 2px rgba(42, 31, 20, 0.04);
    --shadow-sm: 0 1px 4px rgba(42, 31, 20, 0.06);
    --shadow-md: 0 4px 16px rgba(42, 31, 20, 0.08);
    --shadow-lg: 0 8px 32px rgba(42, 31, 20, 0.12);
    --shadow-xl: 0 16px 48px rgba(42, 31, 20, 0.16);
    --shadow-glow: 0 0 80px rgba(196, 98, 45, 0.15);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.8; transform: translateX(-50%) scale(1.08); }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.anim-fade-up { opacity: 0; animation: fadeUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.35s; }
.anim-delay-4 { animation-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
    .anim-fade-up { animation: none; opacity: 1; }
    html { scroll-behavior: auto; }
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
.text-accent { color: var(--primary); font-style: italic; }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    min-height: 46px;
    line-height: 1;
}
.btn:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.6; pointer-events: none; }

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

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    padding: 10px 18px;
}
.btn-ghost:hover { color: var(--primary); background: var(--primary-glow); }

.btn-sm { padding: 8px 16px; font-size: 0.85rem; min-height: 38px; }

.btn-danger { background: var(--danger); }
.btn-danger:hover { background: #A93226; }

.btn-success { background: var(--success); }
.btn-success:hover { background: #3D6B4C; }

/* ---- NAV ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 246, 241, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition);
}
.nav-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}
.nav-logo span { color: var(--primary); }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
    padding: 8px 14px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.nav-links a:hover { color: var(--primary); background: var(--primary-glow); }
.nav-admin-link {
    opacity: 0.4;
    font-size: 0.82rem !important;
}
.nav-admin-link:hover { opacity: 1; }

/* ---- HERO ---- */
.hero {
    padding: 140px 24px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}
.hero-glow {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 98, 45, 0.1) 0%, transparent 65%);
    pointer-events: none;
    animation: glowPulse 8s ease-in-out infinite;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 800;
    color: var(--text);
    max-width: 640px;
    margin: 0 auto 20px;
    letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--primary); }
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 40px;
    font-weight: 400;
    line-height: 1.8;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- SECTIONS ---- */
.section {
    padding: 80px 24px;
    max-width: 1160px;
    margin: 0 auto;
}
.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--primary);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 48px;
    line-height: 1.8;
}
.section-desc.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title.center { text-align: center; }
.section-label.center { text-align: center; }

/* ---- TRUST BAR ---- */
.trust-bar {
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 28px 24px;
}
.trust-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}
.trust-item svg { color: var(--primary); flex-shrink: 0; }

/* ---- PRODUCT CARDS ---- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.loading-placeholder {
    text-align: center;
    color: var(--text-light);
    padding: 60px 20px;
    grid-column: 1 / -1;
}
.product-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all var(--transition-slow);
    position: relative;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
}
.product-image-wrap {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-deep) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-image-wrap img { transform: scale(1.03); }
.product-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(196, 98, 45, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-placeholder svg { color: var(--accent); }
.product-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--surface);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--primary);
}
.product-body { padding: 28px; }
.product-body h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 10px; }
.product-body p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 20px; line-height: 1.65; }
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}
.product-price span {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-light);
}

/* ---- HOW IT WORKS ---- */
.how-section {
    background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
    padding: 80px 24px;
}
.how-inner { max-width: 900px; margin: 0 auto; }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}
.step-card { text-align: center; padding: 24px 16px; }
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 16px;
}
.step-icon {
    margin-bottom: 16px;
    color: var(--primary);
}
.step-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }

/* ---- ORDER FORM ---- */
.order-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
    padding: 80px 24px;
}
.order-container { max-width: 620px; margin: 0 auto; }
.order-form-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}
@media (max-width: 640px) { .order-form-card { padding: 24px; } }

/* ---- FORMS ---- */
.form-group { margin-bottom: 22px; }
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 7px;
    color: var(--text);
}
.form-group label .required { color: var(--primary); margin-left: 2px; }
.form-input {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--surface);
    transition: all var(--transition);
    min-height: 46px;
    -webkit-appearance: none;
}
.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}
.form-input::placeholder { color: var(--text-light); }
textarea.form-input { resize: vertical; min-height: 72px; }
select.form-input {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B5D4F' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}
.form-input-sm { min-height: 38px; padding: 8px 12px; font-size: 0.85rem; }
.form-hint { font-size: 0.8rem; color: var(--text-light); margin-top: 5px; }
.form-error { color: var(--danger); font-size: 0.85rem; margin: 8px 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-actions { display: flex; gap: 12px; margin-top: 8px; }
.image-preview { margin-top: 8px; }
.image-preview img { max-width: 120px; max-height: 80px; border-radius: 8px; border: 1px solid var(--border); }

/* Photo upload */
.upload-zone {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 32px 20px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    background: var(--surface-warm);
}
.upload-zone:hover { border-color: var(--primary); background: var(--primary-glow); }
.upload-zone.dragover { border-color: var(--primary); background: var(--primary-glow); transform: scale(1.01); }
.upload-zone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
.upload-icon-wrap { color: var(--accent); margin-bottom: 8px; }
.upload-zone p { color: var(--text-muted); font-size: 0.92rem; }
.upload-zone .upload-cta { font-weight: 600; color: var(--primary); }
.photo-preview { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.photo-preview img {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid var(--primary);
}

/* Order total */
.order-total-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-top: 1px solid var(--border-light);
    margin-top: 8px;
}
.order-total-label { font-weight: 600; font-size: 1rem; }
.order-total-price {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary);
}
.btn-submit { width: 100%; padding: 15px; font-size: 1rem; margin-top: 8px; }
.form-disclaimer { text-align: center; font-size: 0.82rem; color: var(--text-light); margin-top: 12px; }

/* Success card */
.success-card {
    text-align: center;
    padding: 56px 36px;
    background: var(--surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
}
.success-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--success-bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.success-icon-wrap svg { color: var(--success); }
.success-card h3 { font-size: 1.7rem; margin-bottom: 12px; }
.success-card p { color: var(--text-muted); font-size: 1rem; max-width: 400px; margin: 0 auto; line-height: 1.7; }

/* ---- FOOTER ---- */
.footer {
    background: var(--text);
    color: rgba(255,255,255,0.55);
    padding: 44px 24px;
    text-align: center;
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 8px;
}
.footer-logo span { color: var(--accent); }
.footer p { font-size: 0.82rem; }

/* ---- MODALS ---- */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(42, 31, 20, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 36px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-xl);
}
@media (max-width: 640px) { .modal { padding: 24px; border-radius: var(--radius-lg); } }
.modal h2 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 24px; }
.modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text-light);
    border: none;
    background: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition);
}
.modal-close:hover { color: var(--text); background: var(--bg-warm); }

/* ============================================
   ADMIN STYLES
   ============================================ */

.admin-body { background: var(--bg-warm); }

/* Login */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.login-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    width: 100%;
    max-width: 380px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.login-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.login-logo span { color: var(--primary); }
.login-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 28px;
}
.login-footer { margin-top: 20px; font-size: 0.85rem; }
.login-footer a { color: var(--primary); text-decoration: none; }
.login-footer a:hover { text-decoration: underline; }

/* Admin Header */
.admin-header {
    background: var(--surface);
    border-bottom: 1px solid var(--border-light);
    padding: 0 24px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 50;
}
.admin-header-left { display: flex; align-items: center; gap: 12px; }
.admin-header-right { display: flex; align-items: center; gap: 12px; }
.admin-badge {
    background: var(--primary-glow);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.admin-user {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}
.admin-header .nav-logo { font-size: 1.2rem; }

/* Admin Tabs */
.admin-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border-light);
    background: var(--surface);
    padding: 0 24px;
    position: sticky;
    top: 60px;
    z-index: 40;
}
.admin-tab {
    padding: 14px 24px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
}
.admin-tab:hover { color: var(--text); }
.admin-tab.active { color: var(--primary); border-bottom-color: var(--primary); }

/* Admin Content */
.admin-content { max-width: 960px; margin: 0 auto; }
.admin-panel { padding: 24px; }
.admin-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.admin-panel-header h2 { font-size: 1.3rem; }
.admin-list { display: flex; flex-direction: column; gap: 12px; }

/* Admin Product Item */
.admin-product-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.admin-product-card:hover { border-color: var(--border); box-shadow: var(--shadow-sm); }
.admin-product-card .product-thumb {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    background: var(--bg-warm);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.admin-product-card .product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.admin-product-card .product-thumb-placeholder {
    color: var(--accent);
}
.admin-product-card .info { flex: 1; min-width: 0; }
.admin-product-card .info h4 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.admin-product-card .info span { color: var(--primary); font-weight: 700; font-size: 0.9rem; }
.admin-product-card .info .meta { color: var(--text-light); font-size: 0.82rem; margin-top: 2px; }
.admin-product-card .actions { display: flex; gap: 8px; flex-shrink: 0; }

/* Admin Order Card */
.admin-order-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 20px;
    transition: all var(--transition);
}
.admin-order-card:hover { border-color: var(--border); }
.admin-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.admin-order-id { font-weight: 700; font-size: 0.88rem; font-family: monospace; }
.admin-order-amount {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}
.admin-order-detail { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 4px; }
.admin-order-photos { display: flex; gap: 8px; margin: 12px 0; flex-wrap: wrap; }
.admin-order-photos img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: transform var(--transition);
}
.admin-order-photos img:hover { transform: scale(1.1); }
.admin-order-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

/* Status badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.status-pending { background: var(--warning-bg); color: var(--warning); }
.status-paid { background: var(--success-bg); color: var(--success); }
.status-shipped { background: var(--info-bg); color: var(--info); }
.status-completed { background: #F0F0F0; color: #555; }

/* Settings */
.settings-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 28px;
    max-width: 480px;
}
.settings-card h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: 20px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .hero { padding: 120px 20px 80px; }
    .hero h1 { font-size: 2.2rem; }
    .section { padding: 60px 20px; }
    .how-section { padding: 60px 20px; }
    .order-section { padding: 60px 20px; }
    .products-grid { grid-template-columns: 1fr; }
    .trust-inner { gap: 20px; }
    .nav-links a { padding: 8px 10px; font-size: 0.85rem; }
    .form-row { grid-template-columns: 1fr; }
    .admin-header { padding: 0 16px; }
    .admin-tabs { padding: 0 16px; overflow-x: auto; }
    .admin-panel { padding: 16px; }
    .admin-product-card { flex-wrap: wrap; }
    .admin-header-right .admin-user { display: none; }
    .admin-order-header { flex-direction: column; align-items: flex-start; gap: 4px; }
}
