/* ================================================================
   Zeynep Giyim — site.css
   Tailwind supplement: ONLY keyframes, pseudo-elements & GSAP state.
   Everything else is handled by Tailwind utility classes.
   ================================================================ */

/* ── Alpine cloak ─────────────────────────────────────────── */
[x-cloak] { display: none !important; }

/* ── Focus ring ───────────────────────────────────────────── */
:focus-visible { outline: 2px solid #C0402E; outline-offset: 2px; }

/* ── Base ─────────────────────────────────────────────────── */
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
*, *::before, *::after { box-sizing: border-box; }
a { text-decoration: none; color: inherit; }

/* ── Keyframes ────────────────────────────────────────────── */
@keyframes kenBurns {
    0%   { transform: scale(1.05); }
    100% { transform: scale(1.00); }
}
@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes scrollDrop {
    0%   { transform: translateY(-200%); }
    100% { transform: translateY(200%); }
}

/* ── Hero background Ken Burns ────────────────────────────── */
.hero-bg {
    animation: kenBurns 14s ease-out forwards;
    transform: scale(1.05);
}

/* ── Ticker marquee ───────────────────────────────────────── */
.ticker-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 35s linear infinite;
    will-change: transform;
}

/* ── Scroll indicator line ────────────────────────────────── */
.scroll-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    animation: scrollDrop 2s ease-in-out infinite;
    will-change: transform;
}

/* ── Nav link underline hover ─────────────────────────────── */
.nav-link-item { position: relative; }
.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: #C0402E;
    transition: width 0.25s ease;
}
.nav-link-item:hover::after { width: 100%; }

/* ── Hero label editorial line ────────────────────────────── */
.hero-label {
    display: flex;
    align-items: center;
    gap: 16px;
}
.hero-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

/* ── GSAP initial state ───────────────────────────────────── */
.section-reveal { opacity: 0; }
.section-reveal:target,
.section-reveal:target .section-reveal { opacity: 1 !important; transform: none !important; }

/* ── Service card left accent ─────────────────────────────── */
.service-card { position: relative; overflow: hidden; }
.service-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: #C0402E;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}
.service-card:hover::before { transform: scaleY(1); }

/* ── Parallax image ───────────────────────────────────────── */
.parallax-img {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

/* ── Brand name underline ─────────────────────────────────── */
.brand-name-link { position: relative; display: inline-block; }
.brand-name-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1.5px;
    background: #C0402E;
    transition: width 0.3s ease;
}
.brand-item:hover .brand-name-link::after { width: 100%; }

/* ── Reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hero-bg { animation: none; transform: scale(1); }
    .ticker-track { animation: none; }
    .scroll-line::after { animation: none; transform: none; }
}

/* ── Blog article body ───────────────────────────────────── */
.blog-body h2 {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-weight: 300;
    font-size: 1.75rem;
    line-height: 1.3;
    color: #1a1108;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(26, 17, 8, 0.1);
}
.blog-body h3 {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.4;
    color: #1a1108;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.blog-body p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: rgba(26, 17, 8, 0.7);
    margin-bottom: 1.25rem;
}
.blog-body strong {
    color: #1a1108;
    font-weight: 600;
}
.blog-body a {
    color: #C0402E;
    text-decoration: none;
    transition: color 0.2s;
}
.blog-body a:hover {
    text-decoration: underline;
}
.blog-body img {
    width: 100%;
    height: auto;
    border: 1px solid rgba(26, 17, 8, 0.08);
    box-shadow: 0 4px 20px rgba(26, 17, 8, 0.06);
    margin: 2rem 0;
}
.blog-body ul, .blog-body ol {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: rgba(26, 17, 8, 0.7);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}
.blog-body ul { list-style: disc; }
.blog-body ol { list-style: decimal; }
.blog-body li {
    margin-bottom: 0.5rem;
    padding-left: 0.25rem;
}
.blog-body li strong {
    color: #1a1108;
}

/* Blog: info/alert boxes */
.blog-body .alert,
.blog-body [class*="alert-"] {
    background: #f8f6f3;
    border: 1px solid rgba(26, 17, 8, 0.08);
    border-left: 3px solid #C0402E;
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(26, 17, 8, 0.7);
}
.blog-body .alert strong {
    display: block;
    font-size: 0.8125rem;
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C0402E;
    margin-bottom: 0.75rem;
}
.blog-body .alert ul {
    margin-bottom: 0;
}

/* Blog: tables */
.blog-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.875rem;
    line-height: 1.6;
}
.blog-body thead {
    background: #1a1108;
}
.blog-body thead th {
    color: #fff;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.875rem 1rem;
    text-align: left;
    border: none;
}
.blog-body tbody td {
    padding: 0.75rem 1rem;
    color: rgba(26, 17, 8, 0.7);
    border-bottom: 1px solid rgba(26, 17, 8, 0.08);
}
.blog-body tbody tr:hover {
    background: rgba(26, 17, 8, 0.02);
}
.blog-body tbody td strong {
    color: #1a1108;
}

/* Blog: blockquote */
.blog-body blockquote {
    border-left: 3px solid #C0402E;
    background: #f8f6f3;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    font-style: normal;
    color: rgba(26, 17, 8, 0.7);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ── RTL SUPPORT (Arabic) ───────────────────────────────── */

[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .text-left {
    text-align: right;
}

[dir="rtl"] .text-right {
    text-align: left;
}

[dir="rtl"] .flex-row {
    flex-direction: row-reverse;
}

[dir="rtl"] nav .justify-between {
    flex-direction: row-reverse;
}

[dir="rtl"] .absolute.left-0 {
    left: auto;
    right: 0;
}

[dir="rtl"] .absolute.right-8 {
    right: auto;
    left: 2rem;
}

[dir="rtl"] .absolute.left-16 {
    left: auto;
    right: 4rem;
}

[dir="rtl"] .pl-12 {
    padding-left: 0;
    padding-right: 3rem;
}

[dir="rtl"] .pl-4 {
    padding-left: 0;
    padding-right: 1rem;
}

[dir="rtl"] .ml-1 {
    margin-left: 0;
    margin-right: 0.25rem;
}

@media (min-width: 1024px) {
    [dir="rtl"] .lg\:grid-cols-\[2fr_1fr_1fr_1fr\] {
        direction: rtl;
    }
}

[dir="rtl"] .service-card::before {
    left: auto;
    right: 0;
}

[dir="rtl"] .blog-body .alert {
    border-left: none;
    border-right: 3px solid #C0402E;
}
[dir="rtl"] .blog-body blockquote {
    border-left: none;
    border-right: 3px solid #C0402E;
}
[dir="rtl"] .blog-body ul,
[dir="rtl"] .blog-body ol {
    padding-left: 0;
    padding-right: 1.5rem;
}
[dir="rtl"] .blog-body thead th {
    text-align: right;
}

[dir="rtl"] .nav-link-item::after {
    left: auto;
    right: 0;
}

[dir="rtl"] a svg,
[dir="rtl"] button svg {
    transform: scaleX(-1);
}

/* ── Hakkımızda: editorial company-profile section ────────── */
.prose-company p strong { color: #1C1209; font-weight: 600; }

.prose-company .dropcap::first-letter {
    font-family: 'Manrope', 'Manrope Fallback', system-ui, sans-serif;
    font-size: 4.25rem;
    line-height: 0.95;
    font-weight: 300;
    color: #C0402E;
    float: left;
    padding: 0.35rem 0.75rem 0 0;
    margin-top: 0.1rem;
}

@media (min-width: 1024px) {
    .prose-company .dropcap::first-letter {
        font-size: 5rem;
        padding-right: 1rem;
    }
}

/* RTL: drop cap floats to right; chapter numerals move to right gutter */
[dir="rtl"] .prose-company .dropcap::first-letter {
    float: right;
    padding: 0.35rem 0 0 0.75rem;
}

[dir="rtl"] .prose-company > div > span[aria-hidden="true"] {
    left: auto;
    right: -4rem;
}

/* Respect reduced-motion: prevent float dropcap from shifting when animating */
@media (prefers-reduced-motion: reduce) {
    .section-reveal { opacity: 1 !important; transform: none !important; }
}

/* ── Hakkımızda: brand orbit (merkez Zeynep + 4 dönen marka) ── */
.brand-orbit {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .brand-orbit { max-width: 620px; }
}

/* Dışta yumuşak crimson halo */
.brand-orbit-halo {
    position: absolute;
    inset: 4%;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(192, 64, 46, 0.06), rgba(192, 64, 46, 0) 70%);
    pointer-events: none;
}

/* Kesik çizgi dönen ring */
.brand-orbit-ring {
    position: absolute;
    inset: 14%;
    border-radius: 50%;
    border: 1px dashed rgba(192, 64, 46, 0.22);
    animation: brand-orbit-spin 60s linear infinite;
}

/* Markaların döndürüldüğü sahne */
.brand-orbit-stage {
    position: absolute;
    inset: 0;
    animation: brand-orbit-spin 60s linear infinite;
}

/* Her marka item'i sabit noktaya absolute konumlanır, sahne döner */
.brand-orbit-item {
    position: absolute;
    width: 22%;
    max-width: 120px;
    transform: translate(-50%, -50%);
    z-index: 4;
}

.brand-orbit-item-top    { top: 4%;  left: 50%; }
.brand-orbit-item-right  { top: 50%; left: 96%; }
.brand-orbit-item-bottom { top: 96%; left: 50%; }
.brand-orbit-item-left   { top: 50%; left: 4%;  }

/* Frame: counter-spin → hem logo hem caption HEP dik ve sabit yönde kalır */
.brand-orbit-item-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    animation: brand-orbit-counter 60s linear infinite;
}

/* Dairesel logo kartı */
.brand-orbit-item-card {
    width: 100%;
    height: 100%;
    background: #FAF7F2;
    border: 1px solid #E0D4C4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14%;
    box-shadow: 0 6px 20px -8px rgba(29, 18, 9, 0.14);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    cursor: pointer;
}

.brand-orbit-item-card:hover {
    transform: scale(1.08);
    border-color: rgba(192, 64, 46, 0.4);
    box-shadow: 0 12px 28px -10px rgba(192, 64, 46, 0.28);
}

.brand-orbit-item-card img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

/* Alt etiket — sadece hover'da görünür, merkez logonun üst katmanında */
.brand-orbit-caption {
    position: absolute;
    left: 50%;
    top: calc(100% + 10px);
    transform: translateX(-50%);
    width: max-content;
    max-width: 180px;
    text-align: center;
    pointer-events: none;
    margin: 0;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #E0D4C4;
    border-radius: 14px;
    box-shadow: 0 10px 28px -12px rgba(29, 18, 9, 0.28);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 5;
}

/* Üst konumdaki item'in etiketi logonun ÜSTÜNE alınır — aksi halde merkez Zeynep logosunun üstüne gelir */
.brand-orbit-item-top .brand-orbit-caption {
    top: auto;
    bottom: calc(100% + 10px);
}

/* Alt konumdaki item'in etiketi logonun ÜSTÜNE gelsin ki paragrafla çakışmasın */
.brand-orbit-item-bottom .brand-orbit-caption {
    top: auto;
    bottom: calc(100% + 10px);
}

/* Logoya hover → etiket belirir */
.brand-orbit-item:hover .brand-orbit-caption,
.brand-orbit-item:focus-within .brand-orbit-caption {
    opacity: 1;
}

/* Hover edilen item tüm katmanların üstünde */
.brand-orbit-item:hover,
.brand-orbit-item:focus-within {
    z-index: 10;
}

.brand-orbit-caption-name {
    display: block;
    font-family: 'Manrope', 'Manrope Fallback', system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1C1209;
    line-height: 1.2;
}

.brand-orbit-caption-tag {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 0.5625rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #C0402E;
    margin-top: 3px;
    white-space: normal;
    line-height: 1.35;
}

/* Merkezdeki Zeynep logosu */
.brand-orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 56%;
    aspect-ratio: 1 / 1;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border: 1px solid #E0D4C4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9%;
    z-index: 2;
    box-shadow:
        0 0 0 8px rgba(250, 247, 242, 0.95),
        0 0 0 9px rgba(192, 64, 46, 0.12),
        0 22px 56px -16px rgba(29, 18, 9, 0.26);
}

.brand-orbit-center img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

@keyframes brand-orbit-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes brand-orbit-counter {
    from { transform: rotate(0deg); }
    to   { transform: rotate(-360deg); }
}

/* Küçük ekranda etiketler sürekli görünür (hover yok) */
@media (max-width: 640px) {
    .brand-orbit-caption { display: none; }
    .brand-orbit-item-inner { padding: 16%; }
}

/* Reduced motion: dönüşü durdur, statik kompozisyon */
@media (prefers-reduced-motion: reduce) {
    .brand-orbit-ring,
    .brand-orbit-stage,
    .brand-orbit-item-inner {
        animation: none !important;
    }
}

/* RTL: dönüş yönünü tersine çevir (tutarlı his için) */
[dir="rtl"] .brand-orbit-ring,
[dir="rtl"] .brand-orbit-stage {
    animation-direction: reverse;
}

[dir="rtl"] .brand-orbit-item-inner {
    animation-direction: reverse;
}

[dir="rtl"] button[aria-haspopup] svg,
[dir="rtl"] button[aria-expanded] svg {
    transform: none;
}

[dir="rtl"] .divide-x > :not(:first-child) {
    border-left-width: 0;
    border-right-width: 1px;
}

[dir="rtl"] .divide-x > :first-child {
    border-right-width: 0;
}

/* ── Dil-özel font overrides ────────────────────────────── */

/* Arapça: Cairo ile tüm fontları override et */
:lang(ar) .font-display,
:lang(ar) .font-body,
:lang(ar) .font-mono {
    font-family: 'Cairo', 'Noto Sans Arabic', sans-serif;
    font-style: normal;
}

/* Arapça: h1 italic ve letter-spacing Arap harfleri için uygun değil */
:lang(ar) .hero-h1 {
    font-family: 'Cairo', 'Noto Sans Arabic', sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.3;
}

/* Arapça: hero label (mono etiket) */
:lang(ar) .hero-label {
    font-family: 'Cairo', sans-serif;
    letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════════════════
   BUYER SEGMENT — hero yan panelinde alıcı tipi seçici
   ══════════════════════════════════════════════════════════ */
.zy-buyer {
    --zy-ivory: #FAF7F2;
    --zy-ink: #1C1209;
    --zy-soft: #5A4A3C;
    --zy-border: #E6DDCC;
    --zy-crimson: #C0402E;

    background: var(--zy-ivory);
    border: 1px solid var(--zy-border);
    padding: 32px 28px;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    color: var(--zy-ink);
    width: 100%;
    max-width: 440px;
    margin: 0 0 0 auto;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.4);
}
.zy-buyer *, .zy-buyer *::before, .zy-buyer *::after { box-sizing: border-box; }

.zy-buyer__kicker {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--zy-crimson);
    margin: 0 0 12px;
}
.zy-buyer__title {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 300;
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
    color: var(--zy-ink);
}
.zy-buyer__lede {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--zy-soft);
    margin: 0 0 22px;
}

.zy-buyer__tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 24px;
}
.zy-buyer__tab {
    padding: 12px 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
    background: transparent;
    color: var(--zy-ink);
    border: 1px solid var(--zy-border);
    cursor: pointer;
    transition: all .18s ease;
    border-radius: 2px;
}
.zy-buyer__tab:hover { border-color: var(--zy-crimson); color: var(--zy-crimson); }
.zy-buyer__tab[aria-selected="true"] {
    background: var(--zy-crimson);
    color: var(--zy-ivory);
    border-color: var(--zy-crimson);
}

.zy-buyer__panel { display: none; list-style: none; padding: 0; margin: 0; }
.zy-buyer__panel[data-active="true"] { display: block; }

.zy-buyer__row {
    display: flex;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--zy-border);
    gap: 12px;
}
.zy-buyer__row:last-child { border-bottom: 0; }
.zy-buyer__row > div { flex: 1; min-width: 0; }

.zy-buyer__check {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--zy-crimson);
    margin-top: 2px;
    position: relative;
    display: inline-block;
}
.zy-buyer__check::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 1.5px 1.5px 0;
    transform: translate(-50%, -60%) rotate(45deg);
}

.zy-buyer__row-title {
    margin: 0 0 3px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--zy-ink);
    line-height: 1.35;
}
.zy-buyer__row-sub {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    color: var(--zy-soft);
}

.zy-buyer__chips {
    display: inline-flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.zy-buyer__chip {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(192, 64, 46, 0.08);
    color: var(--zy-crimson);
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
}

.zy-buyer__link {
    color: var(--zy-crimson);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    transition: opacity .18s ease;
}
.zy-buyer__link:hover { opacity: .7; }

.zy-buyer__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 22px;
    padding: 15px 20px;
    background: var(--zy-crimson);
    color: var(--zy-ivory);
    border: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background-color .18s ease, transform .18s ease;
    text-decoration: none;
    border-radius: 2px;
}
.zy-buyer__cta:hover { background: #9e3524; }
.zy-buyer__cta svg { width: 16px; height: 16px; }

.zy-buyer__note {
    margin: 16px 0 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(90, 74, 60, .7);
    text-align: start;
}

/* RTL: CTA ok işaretini yansıt */
:lang(ar) .zy-buyer__cta svg { transform: scaleX(-1); }

/* RTL: typography — Cairo */
:lang(ar) .zy-buyer,
:lang(ar) .zy-buyer__title,
:lang(ar) .zy-buyer__kicker,
:lang(ar) .zy-buyer__tab,
:lang(ar) .zy-buyer__chip,
:lang(ar) .zy-buyer__note {
    font-family: 'Cairo', 'Noto Sans Arabic', sans-serif;
    letter-spacing: 0;
}

/* Tablet ve altı: kart hero içinde gizli, hero'nun hemen altında görünür */
@media (max-width: 1023px) {
    .zy-buyer--in-hero { display: none; }
    .zy-buyer--mobile { display: block; max-width: 100%; margin: 0 auto; }
}
@media (min-width: 1024px) {
    .zy-buyer--mobile { display: none; }
}

@media (max-width: 520px) {
    .zy-buyer { padding: 24px 18px; }
    .zy-buyer__title { font-size: 22px; }
    .zy-buyer__tab { padding: 10px 4px; font-size: 9.5px; }
}
