/* ===================================================
   LOKA — Design System
   רקע: #07070f | זהב: #D4A853 | RTL עברית
   Fonts: Heebo + Playfair Display
   =================================================== */

/* ===== CSS Variables ===== */
:root {
    --bg:           #07070f;
    --bg-2:         #0e0e1a;
    --bg-3:         #13131f;
    --bg-card:      #111120;
    --bg-card-hover:#16162a;

    --gold:         #D4A853;
    --gold-light:   #e8c47a;
    --gold-dark:    #b8893a;
    --gold-glow:    rgba(212, 168, 83, 0.15);
    --gold-border:  rgba(212, 168, 83, 0.25);

    --text:         #f0ede8;
    --text-muted:   #8a8799;
    --text-faint:   #4a4860;

    --white:        #ffffff;
    --border:       rgba(255,255,255,0.07);
    --border-gold:  rgba(212, 168, 83, 0.3);

    --radius-sm:    6px;
    --radius:       12px;
    --radius-lg:    20px;
    --radius-xl:    32px;

    --shadow:       0 4px 24px rgba(0,0,0,0.4);
    --shadow-gold:  0 0 40px rgba(212,168,83,0.12);
    --shadow-card:  0 8px 32px rgba(0,0,0,0.5);

    --transition:   0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    --header-h:     72px;
    --container:    1200px;
}

/* ===== Reset ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Heebo', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    direction: rtl;
    text-align: right;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* טקסטורה עדינה ברקע */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(212,168,83,0.06) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: 'Heebo', sans-serif; }

p { color: var(--text-muted); line-height: 1.75; }

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--gold-light); }

ul { list-style: none; }

img { max-width: 100%; display: block; }

/* ===== Layout ===== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

main#main-content {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - var(--header-h) - 300px);
    padding-top: var(--header-h);
}

section { padding: 80px 0; }

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-h);
    z-index: 1000;
    background: rgba(7, 7, 15, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    background: rgba(7, 7, 15, 0.97);
    box-shadow: 0 2px 32px rgba(0,0,0,0.5);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 100%;
}

/* לוגו */
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
    transition: color var(--transition);
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 1px;
}

.logo:hover .logo-text { color: var(--gold-light); }

/* ניווט ראשי */
.main-nav { flex: 1; }

.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav > ul > li > a {
    display: block;
    padding: 8px 16px;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
    color: var(--gold);
    background: var(--gold-glow);
}

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    box-shadow: var(--shadow-card);
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.dropdown li a:hover {
    color: var(--gold);
    background: var(--gold-glow);
}

.cat-icon { font-size: 1.1rem; }

/* חיפוש בהדר */
.header-search { flex-shrink: 0; }

.header-search-input {
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    color: var(--text);
    font-family: 'Heebo', sans-serif;
    font-size: 0.9rem;
    padding: 9px 16px 9px 40px;
    width: 240px;
    transition: all var(--transition);
    direction: rtl;
    outline: none;
}

.header-search-input::placeholder { color: var(--text-faint); }

.header-search-input:focus {
    border-color: var(--border-gold);
    background: var(--bg-2);
    width: 280px;
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.header-search { position: relative; }

.header-search-btn {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: color var(--transition);
}

.header-search-btn:hover { color: var(--gold); }

/* המבורגר */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-right: auto;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* תפריט מובייל */
.mobile-menu {
    display: none;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding: 16px 0;
}

.mobile-menu.open { display: block; }

.mobile-menu ul { padding: 0 16px; }

.mobile-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--text-muted);
    font-size: 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.mobile-menu li a:hover {
    color: var(--gold);
    background: var(--gold-glow);
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    position: relative;
    z-index: 1;
}

.breadcrumbs ol {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    color: var(--text-faint);
}

.breadcrumbs li a { color: var(--text-muted); }
.breadcrumbs li a:hover { color: var(--gold); }
.breadcrumbs li[aria-current="page"] { color: var(--gold); }

/* ===== CARDS ===== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.card:hover {
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.card:hover::before { opacity: 1; }

/* ===== SUPPLIER CARD ===== */
.supplier-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.supplier-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold), var(--shadow-card);
}

.supplier-card-body { padding: 20px; flex: 1; }

.supplier-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 6px;
}

.supplier-card-category {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.supplier-card-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.supplier-card-footer {
    padding: 14px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.supplier-card-area {
    font-size: 0.82rem;
    color: var(--text-faint);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== RATING STARS ===== */
.stars {
    display: flex;
    align-items: center;
    gap: 3px;
}

.star {
    color: var(--text-faint);
    font-size: 0.85rem;
}

.star.filled { color: var(--gold); }

.rating-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-right: 6px;
    font-weight: 500;
}

/* ===== BADGES ===== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.badge-gold {
    background: rgba(212,168,83,0.15);
    color: var(--gold);
    border: 1px solid var(--border-gold);
}

.badge-green {
    background: rgba(74,222,128,0.1);
    color: #4ade80;
    border: 1px solid rgba(74,222,128,0.2);
}

.badge-muted {
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    font-family: 'Heebo', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,168,83,0.3);
    color: var(--bg);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--border-gold);
}

.btn-outline:hover {
    background: var(--gold-glow);
    transform: translateY(-2px);
    color: var(--gold-light);
}

.btn-ghost {
    background: var(--bg-3);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: var(--bg-card);
    color: var(--text);
    border-color: var(--border-gold);
}

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ===== SEARCH BAR (דף חיפוש / דף ראשי) ===== */
.search-bar {
    position: relative;
    max-width: 640px;
    width: 100%;
}

.search-bar-input {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    color: var(--text);
    font-family: 'Heebo', sans-serif;
    font-size: 1.1rem;
    padding: 18px 24px 18px 56px;
    direction: rtl;
    outline: none;
    transition: all var(--transition);
}

.search-bar-input::placeholder { color: var(--text-faint); }

.search-bar-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px var(--gold-glow);
    background: var(--bg-2);
}

.search-bar-btn {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color var(--transition);
    padding: 4px;
}

.search-bar-btn:hover { color: var(--gold-light); }

/* ===== GRID LAYOUTS ===== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* ===== SECTION HEADER ===== */
.section-header {
    margin-bottom: 48px;
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-header h2 { margin-bottom: 12px; }

.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 16px auto 0;
}

/* ===== FILTER TAGS ===== */
.filters {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.filter-tag {
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.filter-tag:hover,
.filter-tag.active {
    background: var(--gold-glow);
    border-color: var(--border-gold);
    color: var(--gold);
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: 'Heebo', sans-serif;
    font-size: 0.95rem;
    padding: 12px 16px;
    direction: rtl;
    outline: none;
    transition: all var(--transition);
}

.form-control::placeholder { color: var(--text-faint); }

.form-control:focus {
    border-color: var(--border-gold);
    background: var(--bg-2);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8799' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 14px center;
    padding-left: 36px;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.page-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.page-btn:hover,
.page-btn.active {
    background: var(--gold-glow);
    border-color: var(--border-gold);
    color: var(--gold);
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-state h3 {
    font-family: 'Heebo', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-muted);
}

/* ===== TOAST / ALERTS ===== */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(74,222,128,0.1);
    border: 1px solid rgba(74,222,128,0.2);
    color: #4ade80;
}

.alert-error {
    background: rgba(248,113,113,0.1);
    border: 1px solid rgba(248,113,113,0.2);
    color: #f87171;
}

.alert-info {
    background: var(--gold-glow);
    border: 1px solid var(--border-gold);
    color: var(--gold);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
    position: relative;
    z-index: 1;
    margin-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-logo { margin-bottom: 16px; }

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-nav-col h3 {
    font-family: 'Heebo', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-nav-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-nav-col li a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-nav-col li a:hover { color: var(--gold); }

.footer-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin-bottom: 28px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy,
.footer-credit {
    font-size: 0.82rem;
    color: var(--text-faint);
}

/* ===== UTILITY ===== */
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.text-right  { text-align: right; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.flex         { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2        { gap: 16px; }
.gap-3        { gap: 24px; }

.w-full       { width: 100%; }

/* ===== LOADING SKELETON ===== */
.skeleton {
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-sm);
}

@keyframes skeleton-loading {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.animate-in {
    animation: fadeInUp 0.5s ease forwards;
}

/* ===== SCROLL TO TOP ===== */
#scroll-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 500;
}

#scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

#scroll-top:hover {
    background: var(--gold-glow);
    transform: translateY(-3px);
}

/* ===================================================
   RESPONSIVE — Mobile First
   =================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-nav { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
    :root { --header-h: 60px; }

    .main-nav, .header-search { display: none; }
    .nav-toggle { display: flex; }

    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }

    .footer-nav { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    section { padding: 48px 0; }

    .btn-lg { padding: 14px 28px; font-size: 1rem; }

    .search-bar-input { font-size: 1rem; padding: 15px 20px 15px 48px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    h1 { font-size: 1.8rem; }
}

/* ===================================================
   INDEX.PHP — דף הבית
   =================================================== */

/* HERO */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 80px 0 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 0%, rgba(212,168,83,0.08) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 80% 80%, rgba(212,168,83,0.04) 0%, transparent 60%);
    pointer-events: none;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.hero-content { max-width: 720px; width: 100%; }

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    line-height: 1.2;
    margin: 16px 0 20px;
    font-family: 'Heebo', sans-serif;
    font-weight: 800;
}

.hero-title-gold {
    color: var(--gold);
    display: block;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.hero-search-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.hero-search-wrap .search-bar { width: 100%; max-width: 600px; }

.hero-popular {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-popular-label {
    font-size: 0.82rem;
    color: var(--text-faint);
}

/* סטטיסטיקות */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: 24px 48px;
    box-shadow: var(--shadow-gold);
}

.hero-stat { text-align: center; }

.hero-stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
    letter-spacing: 0.05em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* CATEGORIES */
.section-categories { padding: 80px 0; }

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 28px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-glow), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.category-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.category-card:hover::before { opacity: 1; }

.category-card-icon {
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.category-card-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    position: relative;
    z-index: 1;
    transition: color var(--transition);
}

.category-card:hover .category-card-name { color: var(--gold); }

.category-card-desc {
    font-size: 0.75rem;
    color: var(--text-faint);
    position: relative;
    z-index: 1;
}

/* SUPPLIER CARD BADGES */
.supplier-card-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 12px;
}

/* HOW IT WORKS */
.section-how {
    padding: 80px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

/* קו מחבר בין השלבים */
.how-grid::before {
    content: '';
    position: absolute;
    top: 48px;
    right: 20%;
    left: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.how-step {
    text-align: center;
    padding: 32px 24px;
    position: relative;
}

.how-step-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-glow);
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
}

.how-step-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.how-step h3 {
    font-family: 'Heebo', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.how-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* CTA */
.section-cta { padding: 80px 0; }

.cta-box {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(212,168,83,0.05) 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(212,168,83,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }

.cta-content h2 { margin: 12px 0 16px; }

.cta-content p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.cta-decoration {
    position: absolute;
    font-size: 8rem;
    opacity: 0.04;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* FEATURED / NEWEST */
.section-featured,
.section-newest { padding: 80px 0; }

.section-newest {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* ===== RESPONSIVE — דף הבית ===== */
@media (max-width: 1024px) {
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-stats { padding: 20px 32px; gap: 24px; }
}

@media (max-width: 768px) {
    .hero { min-height: auto; padding: 40px 0 48px; }
    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
        padding: 20px 24px;
        justify-content: center;
    }
    .hero-stat-divider { display: none; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .how-grid { grid-template-columns: 1fr; gap: 24px; }
    .how-grid::before { display: none; }
    .cta-box { padding: 40px 24px; }
}

@media (max-width: 480px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .hero-stat-num { font-size: 1.6rem; }
}

/* ===================================================
   SUPPLIER.PHP — דף ספק
   =================================================== */

.supplier-page {
    padding: 40px 0 80px;
}

/* HERO CARD */
.sup-hero {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.sup-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 300px; height: 300px;
    background: radial-gradient(ellipse, rgba(212,168,83,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.sup-category a {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
}

.sup-category a:hover { color: var(--gold-light); }

.sup-name {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin: 10px 0 14px;
    color: var(--text);
    font-family: 'Heebo', sans-serif !important;
}

.sup-highlight {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 600px;
}

.sup-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.sup-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.sup-meta-item svg { color: var(--gold); flex-shrink: 0; }

.sup-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sup-rating-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
}

.sup-rating-count {
    font-size: 0.85rem;
    color: var(--text-faint);
}

/* Contact Card */
.sup-contact-card {
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: fit-content;
    position: sticky;
    top: calc(var(--header-h) + 20px);
}

.sup-contact-title {
    font-family: 'Heebo', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.sup-contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition);
    border: 1px solid var(--border);
}

.sup-contact-phone {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg) !important;
    border-color: transparent;
    font-weight: 700;
    font-size: 1rem;
    justify-content: center;
}

.sup-contact-phone:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,168,83,0.3);
}

.sup-contact-email {
    color: var(--text-muted);
    background: var(--bg-card);
}

.sup-contact-email:hover {
    color: var(--gold);
    border-color: var(--border-gold);
    background: var(--gold-glow);
}

.sup-contact-website {
    color: var(--text-muted);
    background: var(--bg-card);
    justify-content: space-between;
}

.sup-contact-website:hover {
    color: var(--gold);
    border-color: var(--border-gold);
    background: var(--gold-glow);
}

/* Share */
.sup-share {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
}

.sup-share-label {
    font-size: 0.8rem;
    color: var(--text-faint);
}

.sup-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.sup-share-btn:hover {
    color: var(--gold);
    border-color: var(--border-gold);
    background: var(--gold-glow);
}

/* LAYOUT */
.sup-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 32px;
    align-items: start;
}

/* SECTIONS */
.sup-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
}

.sup-section-title {
    font-family: 'Heebo', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sup-section-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gold-glow);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
}

.sup-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.85;
    white-space: pre-line;
}

.sup-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* REVIEWS */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--bg);
    flex-shrink: 0;
}

.review-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.review-date {
    font-size: 0.78rem;
    color: var(--text-faint);
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* RELATED */
.related-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-card {
    display: block;
    padding: 14px 16px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all var(--transition);
}

.related-card:hover {
    border-color: var(--border-gold);
    background: var(--gold-glow);
    transform: translateX(-3px);
}

.related-card-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.related-card-area {
    font-size: 0.78rem;
    color: var(--text-faint);
    margin-bottom: 6px;
}

.related-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .sup-hero { grid-template-columns: 1fr; }
    .sup-contact-card { position: static; }
    .sup-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .sup-hero { padding: 24px; }
    .sup-section { padding: 20px; }
    .sup-meta { gap: 10px; }
}

/* ===================================================
   CATEGORY.PHP — דף קטגוריה
   =================================================== */

.category-page { padding: 40px 0 80px; }

/* HERO */
.cat-hero {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-gold);
}

.cat-hero-icon {
    font-size: 4rem;
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
}

.cat-hero-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin: 8px 0 12px;
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
}

.cat-hero-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.cat-hero-count {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* LAYOUT */
.cat-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    align-items: start;
}

/* SIDEBAR */
.cat-filters-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 20px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.filter-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.filter-box-title {
    font-family: 'Heebo', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .cat-layout { grid-template-columns: 1fr; }
    .cat-filters-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
    .filter-box { flex: 1; min-width: 200px; }
}

@media (max-width: 768px) {
    .cat-hero { flex-direction: column; text-align: center; padding: 24px; gap: 20px; }
    .cat-hero-icon { width: 72px; height: 72px; font-size: 2.5rem; }
    .cat-filters-sidebar { flex-direction: column; }
}

/* ===================================================
   TAG.PHP — דף תגית
   =================================================== */

.tag-page { padding: 40px 0 80px; }

.tag-hero {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    margin-bottom: 32px;
    box-shadow: var(--shadow-gold);
}

.tag-hero-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.tag-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text);
    margin-bottom: 12px;
}

.tag-hero-count {
    font-size: 1rem;
    color: var(--text-muted);
}

.tag-related {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.tag-related-label {
    font-size: 0.82rem;
    color: var(--text-faint);
    flex-shrink: 0;
}

/* ===================================================
   SEARCH.PHP — דף חיפוש
   =================================================== */

.search-page { padding: 40px 0 80px; }

.search-hero {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.search-bar-lg { max-width: 700px; width: 100%; }

.search-summary {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: center;
}

.search-summary strong { color: var(--text); }

.search-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    align-items: start;
}

.search-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 20px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.search-results { min-height: 400px; }

.search-empty-prompt { padding: 80px 0; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .search-layout { grid-template-columns: 1fr; }
    .search-sidebar { position: static; display: grid; grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 640px) {
    .search-sidebar { grid-template-columns: 1fr; }
}

/* ===================================================
   AUTOCOMPLETE — השלמה אוטומטית
   =================================================== */

.autocomplete-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    left: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    z-index: 500;
    overflow: hidden;
    display: none;
}

.autocomplete-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    transition: background var(--transition);
    border-bottom: 1px solid var(--border);
}

.autocomplete-item:last-child { border-bottom: none; }

.autocomplete-item:hover,
.autocomplete-item.focused {
    background: var(--gold-glow);
}

.autocomplete-icon { font-size: 1.2rem; flex-shrink: 0; }

.autocomplete-label { flex: 1; display: flex; flex-direction: column; gap: 2px; }

.autocomplete-main { font-size: 0.9rem; font-weight: 500; color: var(--text); }

.autocomplete-sub { font-size: 0.75rem; color: var(--text-faint); }

.autocomplete-type {
    font-size: 0.7rem;
    color: var(--gold);
    background: var(--gold-glow);
    border: 1px solid var(--border-gold);
    padding: 2px 8px;
    border-radius: 100px;
    flex-shrink: 0;
}

/* ===================================================
   AUTOCOMPLETE — חיפוש מהיר
   =================================================== */

.autocomplete-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    z-index: 500;
    overflow: hidden;
    animation: fadeInUp 0.15s ease;
}

.autocomplete-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all var(--transition);
    cursor: pointer;
    border-bottom: 1px solid var(--border);
}

.autocomplete-item:last-child { border-bottom: none; }

.autocomplete-item:hover,
.autocomplete-item.focused {
    background: var(--gold-glow);
    color: var(--text);
}

.autocomplete-cat { color: var(--gold); }

.ac-icon { font-size: 1.1rem; flex-shrink: 0; }

.ac-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.ac-text { color: var(--text); font-weight: 500; }

.ac-sub {
    font-size: 0.75rem;
    color: var(--text-faint);
}

.ac-type {
    font-size: 0.72rem;
    color: var(--gold);
    background: var(--gold-glow);
    padding: 2px 8px;
    border-radius: 100px;
    margin-right: auto;
}

.autocomplete-all {
    background: var(--bg-3);
    color: var(--gold);
    font-weight: 500;
    justify-content: center;
}

.autocomplete-all:hover { background: var(--gold-glow); }

/* ===================================================
   REGISTER.PHP — הרשמת ספק
   =================================================== */

.register-page { padding: 40px 0 80px; }

.register-hero {
    text-align: center;
    margin-bottom: 48px;
}

.register-hero h1 { margin: 12px 0 10px; }
.register-hero p   { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 28px; }

.register-benefits {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.register-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.register-benefit-icon {
    color: var(--gold);
    font-weight: 700;
}

.register-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

/* FORM */
.register-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.register-form { display: flex; flex-direction: column; gap: 4px; }

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

.form-hint {
    font-size: 0.75rem;
    color: var(--text-faint);
    margin-right: 8px;
    font-weight: 400;
}

.form-counter {
    display: block;
    font-size: 0.75rem;
    color: var(--text-faint);
    text-align: left;
    margin-top: 4px;
}

.form-check { display: flex; align-items: center; }

.form-check-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.form-check-input {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
    cursor: pointer;
}

.required { color: var(--gold); }

.register-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-faint);
    margin-top: 8px;
}

/* SUCCESS */
.register-success {
    text-align: center;
    padding: 48px 20px;
}

.register-success-icon { font-size: 4rem; margin-bottom: 16px; }
.register-success h2   { margin-bottom: 12px; }
.register-success p    { color: var(--text-muted); max-width: 360px; margin: 0 auto; }

/* INFO SIDEBAR */
.register-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: calc(var(--header-h) + 20px);
}

.register-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.register-info-card h3 {
    font-family: 'Heebo', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gold);
}

.register-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
}

.register-steps li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.register-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold-glow);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.register-steps strong { display: block; font-size: 0.9rem; color: var(--text); margin-bottom: 2px; }
.register-steps p      { font-size: 0.8rem; color: var(--text-muted); }

.register-perks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .register-layout { grid-template-columns: 1fr; }
    .register-info    { position: static; flex-direction: row; }
    .register-info-card { flex: 1; }
}

@media (max-width: 768px) {
    .register-form-wrap { padding: 24px; }
    .form-row           { grid-template-columns: 1fr; }
    .register-info      { flex-direction: column; }
    .register-benefits  { gap: 12px; }
}

/* ===================================================
   SUPPLIER LOGO — Favicon API
   =================================================== */

.sup-logo-wrap {
    margin-bottom: 16px;
}

.sup-logo-img {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-3);
    object-fit: contain;
    padding: 8px;
}

.sup-logo-fallback {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    background: var(--gold);
    color: #000;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
