/* ==========================================================================
   inner-pages.css — Grand Motors
   Общие стили для внутренних страниц (О компании, Контакты и др.)
   ========================================================================== */

/* ── PAGE HEADER ── */
.page-header {
    padding: 40px 0 28px;
    border-bottom: 1px solid var(--gm-grey-2, #ECF0F0);
    margin-bottom: 44px;
}
.page-header h1 {
    font-family: var(--gm-font-heading, 'Oswald', sans-serif);
    font-size: 36px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.03em;
    color: var(--gm-dark, #323232);
}

/* ── SIDEBAR + CONTENT LAYOUT ── */
.inner-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 28px;
    margin-bottom: 64px;
    align-items: start;
}

/* ── SIDEBAR ── */
.inner-sidebar {}
.sidebar-box {
    background: #fff;
    border: 1px solid var(--gm-grey-2, #ECF0F0);
    border-radius: 8px;
    overflow: hidden;
    position: sticky;
    top: 24px;
}
.sidebar-heading {
    font-family: var(--gm-font-heading, 'Oswald', sans-serif);
    font-size: 16px; font-weight: 600;
    letter-spacing: 0.04em;
    padding: 16px 20px 14px;
    border-bottom: 1px solid var(--gm-grey-2, #ECF0F0);
    color: var(--gm-dark, #323232);
}
.sidebar-nav { list-style: none; }
.sidebar-nav li { border-bottom: 1px solid var(--gm-grey-2, #ECF0F0); }
.sidebar-nav li:last-child { border-bottom: none; }
.sidebar-nav li a {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 20px;
    font-size: 14px; font-weight: 500;
    color: var(--gm-dark, #323232);
    transition: background 0.18s ease, color 0.18s ease;
}
.sidebar-nav li a:hover {
    background: var(--gm-grey, #F7F7F7);
    color: var(--gm-dark, #323232);
}
.sidebar-nav li.active a {
    background: var(--gm-red, #D41111);
    color: #fff;
}
.sidebar-nav li a i {
    font-size: 15px;
    width: 18px; text-align: center;
    color: #8fa3b1;
    transition: color 0.18s ease;
    flex-shrink: 0;
}
.sidebar-nav li.active a i,
.sidebar-nav li a:hover i { color: inherit; }

/* ── INNER CONTENT BOX ── */
.inner-content {
    background: #fff;
    border: 1px solid var(--gm-grey-2, #ECF0F0);
    border-radius: 8px;
    padding: 32px;
}

/* ── ABOUT TEXT ── */
.about-text p {
    font-size: 15px; color: #444;
    line-height: 1.8; margin-bottom: 20px;
}
.about-text p:last-child { margin-bottom: 0; }

/* ── SCHEDULE ── */
.schedule-title {
    font-family: var(--gm-font-heading, 'Oswald', sans-serif);
    font-size: 20px; font-weight: 600;
    margin: 32px 0 16px;
    color: var(--gm-dark, #323232);
}
.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px; margin-bottom: 12px;
}
.schedule-card {
    border: 1px solid var(--gm-grey-2, #ECF0F0);
    border-radius: 8px; padding: 16px 20px;
}
.schedule-day {
    font-size: 13px; color: var(--gm-grey-3, #6D6D6D);
    margin-bottom: 8px;
}
.schedule-time {
    font-family: var(--gm-font-heading, 'Oswald', sans-serif);
    font-size: 22px; font-weight: 600;
    color: var(--gm-dark, #323232);
}
.schedule-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.schedule-badge {
    font-size: 11px; font-weight: 600;
    background: var(--gm-grey-2, #ECF0F0);
    color: var(--gm-grey-3, #6D6D6D);
    padding: 3px 8px; border-radius: 4px;
    text-transform: uppercase; letter-spacing: 0.05em;
}
.schedule-note {
    font-size: 12px; color: var(--gm-grey-3, #6D6D6D);
    margin-top: 5px;
}
.schedule-closed {
    border: 1px solid #FECACA;
    border-radius: 8px; padding: 16px 20px;
    background: #FFF0F0;
    display: flex; align-items: center; justify-content: space-between;
}
.schedule-closed-label {
    font-size: 12px; color: var(--gm-red, #D41111);
    font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.05em; margin-bottom: 4px;
}
.schedule-closed-text {
    font-family: var(--gm-font-heading, 'Oswald', sans-serif);
    font-size: 22px; font-weight: 700;
    color: var(--gm-red, #D41111);
}
.schedule-closed-icon {
    width: 36px; height: 36px;
    border: 1.5px solid #FECACA; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gm-red, #D41111); font-size: 16px;
}

/* ── MAP ── */
.map-section { margin-bottom: 48px; }
.map-placeholder {
    width: 100%; height: 420px;
    background: #D9D9D9; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #999; font-size: 15px; text-align: center;
}
.map-placeholder i { font-size: 40px; color: #bbb; display: block; margin-bottom: 10px; }
/* Реальная карта */
.map-section iframe {
    width: 100%; height: 420px;
    border: none; border-radius: 8px; display: block;
}

/* ── CONTACTS INFO CARDS ── */
.contacts-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-bottom: 56px;
}
.contact-info-card {
    background: var(--gm-grey, #F7F7F7);
    border-radius: 8px; padding: 24px 20px;
    display: flex; gap: 14px; align-items: flex-start;
}
.contact-info-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    background: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.contact-info-icon i { font-size: 17px; color: var(--gm-red, #D41111); }
.contact-info-label {
    font-size: 11px; color: var(--gm-grey-3, #6D6D6D);
    text-transform: uppercase; letter-spacing: 0.06em;
    margin-bottom: 6px; font-weight: 600;
}
.contact-info-value {
    font-size: 14px; font-weight: 600;
    color: var(--gm-dark, #323232); line-height: 1.6;
}
.contact-info-value a { color: var(--gm-dark, #323232); transition: color 0.18s; }
.contact-info-value a:hover { color: var(--gm-red, #D41111); }

/* ── RECOMMENDED ── */
.recommended-section { padding: 48px 0; background: var(--gm-grey, #F7F7F7); }
.recommended-header {
    display: flex; align-items: baseline;
    justify-content: space-between; margin-bottom: 28px;
}
.recommended-title {
    font-family: var(--gm-font-heading, 'Oswald', sans-serif);
    font-size: 28px; font-weight: 600;
    color: var(--gm-dark, #323232);
}
.recommended-link {
    font-size: 14px; color: var(--gm-red, #D41111);
    font-weight: 500; display: flex; align-items: center; gap: 5px;
    transition: opacity 0.18s;
}
.recommended-link:hover { opacity: 0.75; }

/* Товары — те же стили что на главной */
.inner-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.inner-product-card {
    background: #fff;
    border: 1px solid var(--gm-grey-2, #ECF0F0);
    border-radius: 12px; overflow: hidden;
    display: flex; flex-direction: column;
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.inner-product-card:hover {
    box-shadow: 0 6px 28px rgba(0,0,0,0.10);
    transform: translateY(-2px);
}
.inner-product-img {
    aspect-ratio: 4/3; background: #f8f9fa;
    padding: 12px; overflow: hidden;
}
.inner-product-img img {
    width: 100%; height: 100%; object-fit: contain;
    transition: transform 0.3s ease;
}
.inner-product-card:hover .inner-product-img img { transform: scale(1.04); }
.inner-product-body { padding: 12px 16px; flex: 1; display: flex; flex-direction: column; }
.inner-product-brand {
    font-size: 12px; font-weight: 700;
    color: var(--gm-red, #D41111);
    text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 4px;
}
.inner-product-name {
    font-family: var(--gm-font-heading, 'Oswald', sans-serif);
    font-size: 17px; font-weight: 600;
    color: var(--gm-dark, #323232);
    margin-bottom: 10px; line-height: 1.2;
}
.inner-product-specs {
    display: flex; flex-direction: column; gap: 5px;
    padding-top: 8px;
    border-top: 1px solid var(--gm-grey-2, #ECF0F0);
    margin-bottom: 14px; flex: 1;
}
.inner-product-spec-row {
    display: flex; justify-content: space-between; font-size: 12px;
}
.inner-spec-label { color: var(--gm-grey-3, #6D6D6D); }
.inner-spec-value { font-weight: 600; color: var(--gm-dark, #323232); }
.inner-product-btn {
    display: block; margin: 0 16px 16px;
    background: var(--gm-red, #D41111); color: #fff !important;
    font-family: var(--gm-font-heading, 'Oswald', sans-serif);
    font-size: 14px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.05em;
    text-align: center; padding: 11px 16px; border-radius: 4px;
    transition: background 0.22s ease;
}
.inner-product-btn:hover { background: var(--gm-red-dark, #A71212); }

/* ── CATEGORIES ── */
.categories-section { padding: 48px 0 64px; background: #fff; }
.categories-box {
    border: 1px solid var(--gm-grey-2, #ECF0F0);
    border-radius: 8px; padding: 28px 32px;
}
.categories-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.categories-accent { width: 4px; height: 22px; background: var(--gm-red, #D41111); border-radius: 2px; }
.categories-title {
    font-family: var(--gm-font-heading, 'Oswald', sans-serif);
    font-size: 20px; font-weight: 600; color: var(--gm-dark, #323232);
}
.categories-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.category-tag {
    padding: 9px 20px; background: #FFF0F0;
    border-radius: 6px; font-size: 14px; color: var(--gm-dark, #323232);
    transition: background 0.18s ease, color 0.18s ease; cursor: pointer;
    border: none;
}
.category-tag:hover { background: #FCCACA; color: var(--gm-dark, #323232); }

/* ── ADAPTIVE ── */
@media (max-width: 1024px) {
    .inner-products-grid { grid-template-columns: repeat(3, 1fr); }
    .contacts-info { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .inner-layout { grid-template-columns: 1fr; }
    .inner-sidebar { display: none; }
    .page-header h1 { font-size: 26px; }
    .inner-products-grid { grid-template-columns: repeat(2, 1fr); }
    .contacts-info { grid-template-columns: 1fr; }
    .schedule-grid { grid-template-columns: 1fr; }
    .inner-content { padding: 20px; }
    .categories-box { padding: 20px; }
    .recommended-section, .categories-section { padding: 32px 0; }
}
@media (max-width: 480px) {
    .inner-products-grid { grid-template-columns: repeat(2, 1fr); }
    .inner-product-name { font-size: 14px; }
}

/* ── CONTACTS PAGE — новый макет ── */
.contacts-layout {
    display: flex;
    align-items: center;
    margin-bottom: 56px;
    position: relative;
}

/* Красный блок слева */
.contacts-card {
    background: var(--gm-red, #D41111) !important;
    padding: 40px 36px;
    color: #fff !important;
    display: flex; flex-direction: column; gap: 24px;
    border-radius: 16px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 320px;
    margin-right: -40px;
    align-self: center;
}
.contacts-card-title {
    font-family: var(--gm-font-heading, 'Oswald', sans-serif);
    font-size: 24px; font-weight: 700;
    color: #fff !important; margin-bottom: 4px;
}
.contacts-card-group { display: flex; flex-direction: column; gap: 6px; }
.contacts-card-label {
    font-size: 15px; font-weight: 600; color: #fff !important;
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 4px;
}
.contacts-card-label i { font-size: 14px; opacity: 0.9; color: #fff !important; }
.contacts-card-phone {
    font-size: 14px; color: rgba(255,255,255,0.85) !important;
    transition: color 0.18s ease; padding-left: 22px;
}
.contacts-card-phone:hover { color: #fff !important; }
.contacts-card-text {
    font-size: 14px; color: rgba(255,255,255,0.85) !important;
    line-height: 1.6; padding-left: 22px;
}
.contacts-social {
    display: flex; gap: 14px; margin-top: 4px;
}
.contacts-social a {
    width: 36px; height: 36px;
    border: 1.5px solid rgba(255,255,255,0.35) !important;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff !important; font-size: 15px;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.contacts-social a:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff; color: #fff;
}

/* Форма справа */
.contacts-form-wrap {
    background: #fff;
    padding: 48px 48px 48px 80px;
    display: flex; align-items: center;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1;
    flex: 1;
    min-height: 500px;
}
.contacts-form { width: 100%; display: flex; flex-direction: column; gap: 14px; }
.contacts-form-field input,
.contacts-form-field textarea {
    width: 100%; padding: 14px 18px;
    border: 1px solid var(--gm-grey-2, #ECF0F0);
    border-radius: 6px;
    font-size: 15px; color: var(--gm-dark, #323232);
    font-family: var(--gm-font-body, 'Onest', sans-serif);
    outline: none; background: var(--gm-grey, #F7F7F7);
    transition: border-color 0.18s ease, background 0.18s ease;
    resize: vertical;
}
.contacts-form-field input:focus,
.contacts-form-field textarea:focus {
    border-color: var(--gm-red, #D41111);
}
.contacts-form-field input::placeholder,
.contacts-form-field textarea::placeholder { color: #aaa; }
.contacts-form-btn {
    align-self: flex-start;
    padding: 14px 48px;
    background: var(--gm-red, #D41111) !important; color: #fff !important;
    border: none;
    border-radius: 6px;
    font-family: var(--gm-font-heading, 'Oswald', sans-serif);
    font-size: 15px; font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.18s ease;
}
.contacts-form-btn:hover {
    background: var(--gm-red-dark, #A71212) !important;
}

/* Адаптив контакты */
@media (max-width: 768px) {
    .contacts-layout { flex-direction: column; gap: 20px; }
    .contacts-card { width: 100%; margin-right: 0; margin-bottom: 0; align-self: stretch; border-radius: 12px; }
    .contacts-form-wrap { padding: 24px 20px; min-height: auto; width: 100%; border-radius: 12px; }
    .contacts-form-btn { width: 100%; text-align: center; }
}

/* ================================================================
   PAYMENT PAGE
   ================================================================ */

.payment-intro { font-size: 15px; color: #444; line-height: 1.75; margin-bottom: 32px; }
.payment-subtitle { font-family: var(--gm-font-heading, 'Oswald', sans-serif); font-size: 22px; font-weight: 600; color: var(--gm-dark, #323232); margin-bottom: 24px; }

.payment-methods {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}
.payment-method {
    background: #fff; padding: 36px 32px;
    display: flex; flex-direction: column;
    align-items: center; text-align: center; gap: 12px;
    border: 1px solid var(--gm-grey-2, #ECF0F0);
    border-radius: 8px;
}
.payment-method-icon { margin-bottom: 4px; }
.payment-method-icon img { width: 110px; height: 110px; object-fit: contain; }
.payment-method-icon i { font-size: 40px; color: #B0BEC5; }
.payment-method-title { font-family: var(--gm-font-heading, 'Oswald', sans-serif); font-size: 20px; font-weight: 600; color: var(--gm-dark, #323232); }
.payment-method-desc { font-size: 13px; color: var(--gm-grey-3, #6D6D6D); line-height: 1.65; }

/* Условия оплаты — полная ширина, без отступа сайдбара */
.payment-conditions-wrap {
    margin-top: 40px;
    margin-bottom: 48px;
}
.payment-conditions-title { font-family: var(--gm-font-heading, 'Oswald', sans-serif); font-size: 18px; font-weight: 600; color: var(--gm-dark, #323232); margin-bottom: 16px; }
.payment-conditions-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.payment-conditions-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #444; line-height: 1.6; }
.payment-conditions-list li::before { content: '–'; color: var(--gm-red, #D41111); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* CTA с формой — выравнивание сверху */
.payment-cta {
    background: var(--gm-red, #D41111);
    border-radius: 12px; padding: 40px 48px;
    margin-bottom: 64px;
    display: flex; align-items: flex-start; gap: 48px;
}
.payment-cta-text { flex: 1; }
.payment-cta-title { font-family: var(--gm-font-heading, 'Oswald', sans-serif); font-size: 22px; font-weight: 700; color: #fff !important; margin-bottom: 10px; }
.payment-cta-desc { font-size: 14px; color: rgba(255,255,255,0.85) !important; line-height: 1.65; }
.payment-cta-form { display: flex; flex-direction: column; gap: 12px; width: 300px; flex-shrink: 0; }
.payment-cta-form input {
    width: 100%; padding: 14px 18px; border: none; border-radius: 6px;
    font-size: 14px; font-family: var(--gm-font-body, 'Onest', sans-serif);
    outline: none; background: rgba(255,255,255,0.15); color: #fff !important;
    transition: background 0.2s;
}
.payment-cta-form input::placeholder { color: rgba(255,255,255,0.7) !important; }
.payment-cta-form input:focus { background: rgba(255,255,255,0.25); }
.payment-cta-btn {
    width: 100%; padding: 14px;
    background: #BB1516 !important;
    border: none; border-radius: 6px;
    color: #fff !important; font-family: var(--gm-font-heading, 'Oswald', sans-serif);
    font-size: 15px; font-weight: 600; letter-spacing: 0.05em;
    cursor: pointer; transition: background 0.2s;
}
.payment-cta-btn:hover { background: #9e1112 !important; }

/* ================================================================
   NEWS / ARTICLES / SALE — общие стили архивов
   ================================================================ */

.archive-intro { font-size: 15px; color: #444; line-height: 1.75; margin-bottom: 24px; }
.archive-quote { border-left: 3px solid var(--gm-red, #D41111); padding: 14px 20px; margin-bottom: 28px; }
.archive-quote p { font-size: 14px; color: #555; font-style: italic; line-height: 1.75; }
.archive-footer-note { font-size: 13px; color: var(--gm-grey-3, #6D6D6D); font-style: italic; margin-top: 16px; }

/* CTA баннер — общий для архивов */
.archive-cta {
    background: var(--gm-red, #D41111);
    border-radius: 12px; padding: 44px 48px;
    margin-bottom: 64px;
    position: relative; overflow: hidden;
}
.archive-cta-title { font-family: var(--gm-font-heading, 'Oswald', sans-serif); font-size: 26px; font-weight: 700; color: #fff !important; margin-bottom: 10px; line-height: 1.2; }
.archive-cta-desc { font-size: 14px; color: rgba(255,255,255,0.85) !important; line-height: 1.65; max-width: 440px; margin-bottom: 24px; }
.archive-cta-btn {
    display: inline-flex; align-items: center;
    padding: 14px 32px;
    background: #BB1516 !important;
    border: none; border-radius: 6px;
    color: #fff !important; font-family: var(--gm-font-heading, 'Oswald', sans-serif);
    font-size: 15px; font-weight: 600; letter-spacing: 0.04em;
    cursor: pointer; transition: background 0.2s; text-decoration: none;
}
.archive-cta-btn:hover { background: #9e1112 !important; }
.archive-cta-deco {
    position: absolute; right: 48px; top: 50%; transform: translateY(-50%);
    display: flex; gap: 20px; opacity: 0.12;
}
.archive-cta-deco i { font-size: 90px; color: #fff; }

/* NEWS — сетка 3 колонки */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.news-card { display: flex; flex-direction: column; border-radius: 8px; overflow: hidden; border: 1px solid var(--gm-grey-2, #ECF0F0); transition: box-shadow 0.22s, transform 0.22s; background: #fff; }
.news-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.10); transform: translateY(-2px); }
.news-card-img { aspect-ratio: 16/10; overflow: hidden; background: #f0f0f0; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.news-card:hover .news-card-img img { transform: scale(1.04); }
.news-card-body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.news-card-date { font-size: 12px; color: var(--gm-red, #D41111); font-weight: 600; margin-bottom: 8px; }
.news-card-title { font-family: var(--gm-font-heading, 'Oswald', sans-serif); font-size: 17px; font-weight: 600; color: var(--gm-dark, #323232); margin-bottom: 10px; line-height: 1.3; }
.news-card-excerpt { font-size: 13px; color: var(--gm-grey-3, #6D6D6D); line-height: 1.65; flex: 1; margin-bottom: 14px; }
.news-card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--gm-red, #D41111); transition: gap 0.18s; }
.news-card-link:hover { gap: 10px; }
.news-card-link i { font-size: 11px; }

/* ARTICLES — сетка 2 колонки */
.articles-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 16px;
}
.article-card { background: #fff; display: flex; flex-direction: column; transition: box-shadow 0.22s, transform 0.22s; border: 1px solid var(--gm-grey-2, #ECF0F0); border-radius: 8px; overflow: hidden; }
.article-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.10); transform: translateY(-2px); }
.article-card-img { aspect-ratio: 16/9; overflow: hidden; background: #f0f0f0; }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.article-card:hover .article-card-img img { transform: scale(1.03); }
.article-card-body { padding: 20px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.article-card-title { font-family: var(--gm-font-heading, 'Oswald', sans-serif); font-size: 18px; font-weight: 600; color: var(--gm-dark, #323232); margin-bottom: 10px; line-height: 1.3; }
.article-card-excerpt { font-size: 13px; color: var(--gm-grey-3, #6D6D6D); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.article-card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--gm-red, #D41111); transition: gap 0.18s; }
.article-card-link:hover { gap: 10px; }
.article-card-link i { font-size: 11px; }

/* SALE — сетка 2 колонки с бейджем и кнопкой */
.sale-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 16px;
}
.sale-card { background: #fff; display: flex; flex-direction: column; transition: box-shadow 0.22s, transform 0.22s; border: 1px solid var(--gm-grey-2, #ECF0F0); border-radius: 8px; overflow: hidden; }
.sale-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.10); transform: translateY(-2px); }
.sale-card-img { aspect-ratio: 16/9; overflow: hidden; background: #f0f0f0; position: relative; }
.sale-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.sale-card:hover .sale-card-img img { transform: scale(1.03); }
.sale-card-badge {
    position: absolute; bottom: 12px; left: 16px;
    padding: 4px 12px; border-radius: 20px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
    background: #FFF0F0; color: var(--gm-red, #D41111);
}
.sale-card-badge.grey { background: var(--gm-grey-2, #ECF0F0); color: var(--gm-grey-3, #6D6D6D); }
.sale-card-body { padding: 20px 24px 16px; flex: 1; display: flex; flex-direction: column; }
.sale-card-title { font-family: var(--gm-font-heading, 'Oswald', sans-serif); font-size: 18px; font-weight: 600; color: var(--gm-dark, #323232); margin-bottom: 10px; line-height: 1.3; }
.sale-card-excerpt { font-size: 13px; color: var(--gm-grey-3, #6D6D6D); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.sale-card-btn {
    display: block; width: 100%; padding: 13px;
    background: var(--gm-red, #D41111); color: #fff !important;
    font-family: var(--gm-font-heading, 'Oswald', sans-serif);
    font-size: 14px; font-weight: 600; letter-spacing: 0.05em;
    text-align: center; border-radius: 0 0 0 0;
    transition: background 0.2s; text-decoration: none; margin-top: auto;
}
.sale-card-btn:hover { background: var(--gm-red-dark, #A71212); }

/* ПАГИНАЦИЯ */
.archive-pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 56px; }
.page-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 6px; font-size: 14px; font-weight: 500; color: var(--gm-dark, #323232); border: 1px solid var(--gm-grey-2, #ECF0F0); cursor: pointer; transition: all 0.18s; background: #fff; text-decoration: none; }
.page-btn:hover { border-color: var(--gm-red, #D41111); color: var(--gm-red, #D41111); }
.page-btn.current { background: var(--gm-red, #D41111); color: #fff !important; border-color: var(--gm-red, #D41111); }
.page-btn.dots { border: none; background: none; cursor: default; color: var(--gm-grey-3, #6D6D6D); }
.page-btn.arrow { color: var(--gm-grey-3, #6D6D6D); }

/* АДАПТИВ АРХИВОВ */
@media (max-width: 1024px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .news-grid { grid-template-columns: 1fr; }
    .articles-grid, .sale-grid { grid-template-columns: 1fr; }
    .payment-methods { grid-template-columns: 1fr; }
    .payment-cta { flex-direction: column; }
    .payment-cta-form { width: 100%; }
    .archive-cta { padding: 32px 24px; }
    .archive-cta-deco { display: none; }
}
