/* =========================
   BUYERS PAGES — TELEGREEN
   ========================= */

:root {
    --tg-green: #2fb36a;
    --tg-green-dark: #239055;
    --tg-orange: #fea500;
    --tg-bg: #f7f9fb;
    --tg-text: #1f2937;
    --tg-muted: #6b7280;
    --tg-border: #e5e7eb;
    --tg-radius: 16px;
}

/* ====== COMMON ====== */

.buyers-page,
.buyers-hub {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    color: var(--tg-text);
}

.buyers-page h1,
.buyers-hub h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.buyers-page h2 {
    margin-top: 36px;
    margin-bottom: 12px;
    font-size: 22px;
}

.buyers-page p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--tg-muted);
    margin-bottom: 16px;
}

.buyers-page ul {
    padding-left: 18px;
    margin-bottom: 24px;
}

.buyers-page li {
    margin-bottom: 8px;
}

/* ====== BREADCRUMBS ====== */

.breadcrumbs {
    font-size: 14px;
    color: var(--tg-muted);
    margin-bottom: 24px;
}

.breadcrumbs a {
    color: var(--tg-green);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* ====== HUB PAGE ====== */

.buyers-hub__subtitle {
    max-width: 720px;
    font-size: 18px;
    color: var(--tg-muted);
    margin-bottom: 40px;
}

.buyers-hub__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ====== HUB CARD ====== */

.buyers-card {
    display: block;
    background: #fff;
    border: 1px solid var(--tg-border);
    border-radius: var(--tg-radius);
    padding: 28px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.buyers-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(47,179,106,0.08),
        rgba(254,165,0,0.08)
    );
    opacity: 0;
    transition: opacity 0.25s ease;
}

.buyers-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    border-color: var(--tg-green);
}

.buyers-card:hover::after {
    opacity: 1;
}

.buyers-card__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.buyers-card__text {
    font-size: 15px;
    color: var(--tg-muted);
    line-height: 1.6;
}

/* ====== CONTENT BLOCKS ====== */

.buyers-info-block {
    background: #fff;
    border: 1px solid var(--tg-border);
    border-radius: var(--tg-radius);
    padding: 28px;
    margin: 32px 0;
}

.buyers-info-block__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.buyers-info-block__list a {
    display: block;
    padding: 10px 0;
    text-decoration: none;
    color: var(--tg-green);
    border-bottom: 1px dashed var(--tg-border);
}

.buyers-info-block__list a:hover {
    color: var(--tg-green-dark);
}

/* ====== IMPORTANT NOTICE ====== */

.buyers-important {
    margin-top: 40px;
    padding: 20px 24px;
    border-radius: var(--tg-radius);
    background: rgba(254,165,0,0.08);
    border-left: 4px solid var(--tg-orange);
    font-size: 15px;
}

.buyers-important a {
    color: var(--tg-green);
    font-weight: 600;
    text-decoration: none;
}

.buyers-important a:hover {
    text-decoration: underline;
}

/* ====== BUTTON ====== */

.buyers-btn {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 28px;
    border-radius: 999px;
    background: var(--tg-green);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease;
}

.buyers-btn:hover {
    background: var(--tg-green-dark);
}

/* ====== MOBILE ====== */

@media (max-width: 1024px) {
    .buyers-hub__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .buyers-page,
    .buyers-hub {
        padding: 40px 16px;
    }

    .buyers-hub__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .buyers-page h1,
    .buyers-hub h1 {
        font-size: 28px;
    }

    .buyers-hub__subtitle {
        font-size: 16px;
    }

    .buyers-card {
        padding: 22px;
    }
}
