/*** single-glamping.css v2 — Детальная карточка глэмпинга ***/

:root {
    --sg-primary: #2d7a4f;
    --sg-primary-hover: #236340;
    --sg-red: #e74c3c;
    --sg-orange: #f5a623;
    --sg-gray-50: #ffffff;
    --sg-gray-100: #f5f5f5;
    --sg-gray-200: #eee;
    --sg-gray-300: #e0e0e0;
    --sg-gray-400: #bdbdbd;
    --sg-gray-500: #9e9e9e;
    --sg-gray-600: #757575;
    --sg-gray-700: #616161;
    --sg-gray-800: #424242;
    --sg-gray-900: #212121;
    --sg-radius: 12px;
    --sg-radius-sm: 8px;
    --sg-shadow: 0 2px 8px rgba(0,0,0,0.08);
    --sg-shadow-lg: 0 4px 24px rgba(0,0,0,0.12);
    --sg-tr: 0.2s ease;
}

/* Layout */
.sg-single { background: var(--sg-gray-50); padding-bottom: 60px; }
.sg-single .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Breadcrumbs */
.sg-breadcrumbs { padding: 16px 0 12px; font-size: 13px; color: var(--sg-gray-500); display: flex; flex-wrap: wrap; align-items: center; gap: 4px; }
.sg-breadcrumbs a { color: var(--sg-gray-600); text-decoration: none; transition: color var(--sg-tr); }
.sg-breadcrumbs a:hover { color: var(--sg-primary); }
.sg-breadcrumbs__sep { color: var(--sg-gray-400); }
.sg-breadcrumbs__current { color: var(--sg-gray-800); }

/* Hero */
.sg-hero { display: flex; gap: 0; background: #fff; border-radius: var(--sg-radius); box-shadow: var(--sg-shadow); overflow: hidden; margin-bottom: 28px; }

.sg-hero__image { width: 50%; min-height: 380px; position: relative; background: var(--sg-gray-200); flex-shrink: 0; }
.sg-hero__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sg-hero__placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--sg-gray-400); font-size: 14px; min-height: 380px; }
.sg-hero__gallery-count { position: absolute; bottom: 14px; right: 14px; background: rgba(0,0,0,0.6); color: #fff; padding: 6px 14px; border-radius: 20px; font-size: 13px; cursor: pointer; display: flex; align-items: center; gap: 6px; backdrop-filter: blur(6px); transition: background var(--sg-tr); }
.sg-hero__gallery-count:hover { background: rgba(0,0,0,0.8); }

.sg-hero__info { flex: 1; padding: 28px; display: flex; flex-direction: column; gap: 14px; }

.sg-hero__header { display: flex; align-items: center; gap: 8px; }
.sg-hero__favicon { width: 20px; height: 20px; border-radius: 4px; flex-shrink: 0; }
.sg-hero__title { font-size: 26px; font-weight: 700; margin: 0; color: var(--sg-gray-900); line-height: 1.2; }

/* Rating — золотой */
.sg-hero__rating-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.sg-rating { font-size: 15px; font-weight: 700; color: #fff; padding: 3px 10px; border-radius: 6px; }
.sg-rating--excellent { background: linear-gradient(135deg, #f5a623, #e89b0e); }
.sg-rating--great { background: linear-gradient(135deg, #f5a623, #d4901a); }
.sg-rating--good { background: #d4a017; }
.sg-rating--avg { background: #bfa84f; }
.sg-rating--ok { background: #c0b283; }
.sg-hero__stars { display: flex; gap: 2px; }
.sg-hero__reviews { font-size: 13px; color: var(--sg-gray-500); }

/* Types */
.sg-hero__types { display: flex; flex-wrap: wrap; gap: 6px; }
.sg-type-badge { display: inline-block; padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 500; background: var(--sg-gray-100); color: var(--sg-gray-700); border: 1px solid var(--sg-gray-300); text-decoration: none; transition: all var(--sg-tr); }
.sg-type-badge:hover { background: var(--sg-primary); color: #fff; border-color: var(--sg-primary); }

/* Location */
.sg-hero__location { display: flex; align-items: flex-start; gap: 8px; }
.sg-hero__location svg { flex-shrink: 0; margin-top: 2px; }
.sg-hero__region { font-size: 14px; font-weight: 600; color: var(--sg-gray-800); }
.sg-hero__address { font-size: 13px; color: var(--sg-gray-600); margin-top: 2px; }

/* Price */
.sg-hero__price { font-size: 18px; color: var(--sg-gray-800); }
.sg-hero__price strong { color: var(--sg-primary); font-size: 22px; }

/* Hours */
.sg-hero__hours { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--sg-gray-600); }

/* Amenities */
.sg-hero__amenities { display: flex; flex-wrap: wrap; gap: 5px; }
.sg-amenity-tag { display: inline-block; padding: 3px 10px; border-radius: 14px; font-size: 11px; background: #e8f5e9; color: var(--sg-primary); font-weight: 500; }

/* CTA */
.sg-hero__actions { display: flex; gap: 10px; margin-top: auto; flex-wrap: wrap; }
.sg-btn { display: inline-flex; align-items: center; gap: 7px; padding: 11px 22px; border-radius: var(--sg-radius-sm); font-size: 14px; font-weight: 600; text-decoration: none; transition: all var(--sg-tr); cursor: pointer; border: 2px solid transparent; }
.sg-btn--primary { background: var(--sg-primary); color: #fff !important; border-color: var(--sg-primary); }
.sg-btn--primary:hover { background: var(--sg-primary-hover); border-color: var(--sg-primary-hover); color: #fff !important; }
.sg-btn--outline { background: transparent; color: var(--sg-primary); border-color: var(--sg-primary); }
.sg-btn--outline:hover { background: var(--sg-primary); color: #fff; }

/* Body layout */
.sg-body { display: flex; gap: 28px; align-items: flex-start; }
.sg-body__main { flex: 1; min-width: 0; }
.sg-body__sidebar { width: 320px; flex-shrink: 0; position: sticky; top: 20px; }

/* Sections */
.sg-section { background: #fff; border-radius: var(--sg-radius); box-shadow: var(--sg-shadow); padding: 24px 28px; margin-bottom: 20px; }
.sg-section__title { font-size: 18px; font-weight: 700; margin: 0 0 16px; color: var(--sg-gray-900); padding-bottom: 10px; border-bottom: 2px solid var(--sg-gray-200); }
.sg-section__content { font-size: 15px; line-height: 1.7; color: var(--sg-gray-800); }
.sg-section__content p { margin: 0 0 12px; }
.sg-section__content img { border-radius: var(--sg-radius-sm); max-width: 100%; height: auto; }

/* Map */
.sg-map-wrapper { border-radius: var(--sg-radius); overflow: hidden; margin-bottom: 10px; box-shadow: var(--sg-shadow); }
.sg-map-address { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--sg-gray-600); margin: 8px 0 0; flex-wrap: wrap; }
.sg-map-link { color: var(--sg-primary); text-decoration: none; font-weight: 500; margin-left: 6px; }
.sg-map-link:hover { text-decoration: underline; }

/* Sidebar cards */
.sg-sidebar-card { background: #fff; border-radius: var(--sg-radius); box-shadow: var(--sg-shadow); padding: 20px; margin-bottom: 16px; }
.sg-sidebar-card__title { font-size: 15px; font-weight: 700; margin: 0 0 14px; color: var(--sg-gray-900); padding-bottom: 8px; border-bottom: 2px solid var(--sg-gray-200); }

/* Contacts */
.sg-contacts { display: flex; flex-direction: column; gap: 10px; }
.sg-contact-row { display: flex; align-items: center; gap: 10px; }
.sg-contact-row__icon { font-size: 16px; width: 24px; text-align: center; flex-shrink: 0; }
.sg-contact-row__value { font-size: 14px; color: var(--sg-gray-800); word-break: break-all; }
a.sg-contact-row__value { color: var(--sg-primary); text-decoration: none; }
a.sg-contact-row__value:hover { text-decoration: underline; }

/* Yandex link */
.sg-yandex-link { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #FC3F1D; text-decoration: none; font-weight: 500; }
.sg-yandex-link:hover { text-decoration: underline; }

/* Related */
.sg-related { display: flex; flex-direction: column; gap: 10px; }
.sg-related__item { display: flex; gap: 10px; align-items: center; text-decoration: none; padding: 6px; border-radius: var(--sg-radius-sm); transition: background var(--sg-tr); }
.sg-related__item:hover { background: var(--sg-gray-100); }
.sg-related__img { width: 56px; height: 56px; border-radius: var(--sg-radius-sm); overflow: hidden; background: var(--sg-gray-200); flex-shrink: 0; }
.sg-related__img img { width: 100%; height: 100%; object-fit: cover; }
.sg-related__name { font-size: 13px; font-weight: 600; color: var(--sg-gray-800); line-height: 1.3; }
.sg-related__rating { font-size: 12px; color: var(--sg-orange); margin-top: 2px; }

/* Lightbox */
.sg-lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 99999; display: flex; align-items: center; justify-content: center; }
.sg-lightbox__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); }
.sg-lightbox__close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: #fff; font-size: 36px; cursor: pointer; z-index: 2; line-height: 1; padding: 5px; transition: opacity var(--sg-tr); }
.sg-lightbox__close:hover { opacity: 0.7; }
.sg-lightbox__prev, .sg-lightbox__next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.15); border: none; color: #fff; font-size: 32px; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; z-index: 2; display: flex; align-items: center; justify-content: center; transition: background var(--sg-tr); }
.sg-lightbox__prev { left: 20px; }
.sg-lightbox__next { right: 20px; }
.sg-lightbox__prev:hover, .sg-lightbox__next:hover { background: rgba(255,255,255,0.3); }
.sg-lightbox__content { position: relative; z-index: 1; max-width: 90vw; max-height: 85vh; display: flex; flex-direction: column; align-items: center; }
.sg-lightbox__content img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: 8px; }
.sg-lightbox__counter { color: rgba(255,255,255,0.7); font-size: 14px; margin-top: 10px; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .sg-hero { flex-direction: column; }
    .sg-hero__image { width: 100%; min-height: 260px; max-height: 360px; }
    .sg-hero__info { padding: 22px; }
    .sg-body { flex-direction: column; }
    .sg-body__sidebar { width: 100%; position: static; }
}

@media (max-width: 768px) {
    .sg-hero__title { font-size: 22px; }
    .sg-hero__image { min-height: 200px; max-height: 280px; }
    .sg-hero__info { padding: 18px; gap: 12px; }
    .sg-hero__actions { flex-direction: column; }
    .sg-btn { justify-content: center; }
    .sg-section { padding: 18px; }
    #sg-map { height: 260px !important; }
}

@media (max-width: 480px) {
    .sg-hero__title { font-size: 19px; }
    .sg-hero__price strong { font-size: 18px; }
}


/* ========== REVIEWS ========== */
.sg-reviews__count { font-size: 14px; font-weight: 400; color: var(--sg-gray-500); }

.sg-reviews__list { display: flex; flex-direction: column; gap: 16px; }

.sg-review { padding: 16px; background: var(--sg-gray-100); border-radius: var(--sg-radius-sm); transition: background var(--sg-tr); }
.sg-review:hover { background: #f0f0f0; }
.sg-review--hidden { display: none; }

.sg-review__header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }

.sg-review__avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; background: var(--sg-gray-200); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.sg-review__avatar img { width: 100%; height: 100%; object-fit: cover; }
.sg-review__avatar-placeholder { font-size: 20px; }

.sg-review__meta { display: flex; flex-direction: column; gap: 2px; }
.sg-review__author { font-size: 14px; font-weight: 600; color: var(--sg-gray-900); }
.sg-review__row { display: flex; align-items: center; gap: 8px; }

.sg-review__stars { display: flex; gap: 1px; }
.sg-star { color: var(--sg-gray-300); font-size: 14px; line-height: 1; }
.sg-star--filled { color: #f5a623; }

.sg-review__date { font-size: 12px; color: var(--sg-gray-500); }

.sg-review__text { font-size: 14px; line-height: 1.6; color: var(--sg-gray-800); }

.sg-review__answer { margin-top: 10px; padding: 10px 14px; background: #e8f5e9; border-radius: 6px; font-size: 13px; line-height: 1.5; color: var(--sg-gray-700); }
.sg-review__answer-label { font-weight: 600; color: var(--sg-primary); margin-right: 4px; }

.sg-reviews__more { display: block; width: 100%; margin-top: 16px; padding: 12px; background: none; border: 2px solid var(--sg-primary); border-radius: var(--sg-radius-sm); color: var(--sg-primary); font-size: 14px; font-weight: 600; cursor: pointer; transition: all var(--sg-tr); }
.sg-reviews__more:hover { background: var(--sg-primary); color: #fff; }

.sg-reviews__source { display: flex; align-items: center; gap: 12px; margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--sg-gray-200); flex-wrap: wrap; }
.sg-reviews__source-link { font-size: 13px; color: var(--sg-primary); text-decoration: none; font-weight: 500; }
.sg-reviews__source-link:hover { text-decoration: underline; }
.sg-reviews__updated { font-size: 12px; color: var(--sg-gray-500); }


/* ==============================
   НОВЫЕ БЛОКИ КАРТОЧКИ
   ============================== */

/* ---- Удобства (сетка) ---- */
.sg-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.sg-amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f8fdf8;
    border: 1px solid #e8f5e9;
    border-radius: 10px;
    transition: background 0.2s;
}

.sg-amenity-item:hover {
    background: #e8f5e9;
}

.sg-amenity-item__icon {
    font-size: 20px;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}

.sg-amenity-item__name {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* ---- Авто-описание ---- */
.sg-auto-desc p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
}

.sg-auto-desc p:last-child {
    margin-bottom: 0;
}

/* ---- Цены ---- */
.sg-price-info {
    background: linear-gradient(135deg, #f0faf0 0%, #e8f5e9 100%);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
}

.sg-price-info__main {
    margin-bottom: 16px;
}

.sg-price-info__label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sg-price-info__value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #2e7d32;
    line-height: 1.2;
}

.sg-price-info__per {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 2px;
}

.sg-price-info__note {
    margin-bottom: 20px;
}

.sg-price-info__note p {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

.sg-price-info__btn {
    display: inline-block;
    padding: 14px 32px;
    background: #43a047;
    color: #fff !important;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.sg-price-info__btn:hover {
    background: #2e7d32;
    transform: translateY(-1px);
}

/* ---- FAQ ---- */
.sg-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sg-faq-item {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
    overflow: hidden;
}

.sg-faq-item__q {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1a1a2e;
    transition: background 0.2s;
}

.sg-faq-item__q:hover {
    background: #f8fdf8;
}

.sg-faq-item__q::after {
    content: "+";
    font-size: 22px;
    font-weight: 300;
    color: #43a047;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 12px;
}

.sg-faq-item[open] .sg-faq-item__q::after {
    content: "−";
}

.sg-faq-item__q::-webkit-details-marker {
    display: none;
}

.sg-faq-item__a {
    padding: 0 20px 16px;
    color: #555;
    line-height: 1.6;
    font-size: 14px;
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
    .sg-amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .sg-amenity-item {
        padding: 10px 12px;
    }

    .sg-amenity-item__name {
        font-size: 13px;
    }

    .sg-price-info__value {
        font-size: 28px;
    }

    .sg-price-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .sg-amenities-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* ==============================
   ОТЗЫВЫ v6
   Добавить в single-glamping.css
   ============================== */

/* Секция отзывов */
.sg-reviews-section { margin-top: 2rem; }
.sg-reviews-avg {
    display: inline-block;
    background: #f5a623;
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    margin-left: 8px;
    vertical-align: middle;
}
.sg-reviews-count {
    font-size: .85rem;
    color: #888;
    font-weight: 400;
    margin-left: 4px;
}

/* Список отзывов */
.sg-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Один отзыв */
.sg-review {
    background: #f9fafb;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: box-shadow .2s;
}
.sg-review:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.sg-review__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: .6rem;
}

.sg-review__author {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.sg-review__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sg-review__name {
    font-weight: 600;
    font-size: .9rem;
    color: #222;
}

.sg-review__date {
    font-size: .75rem;
    color: #999;
    margin-top: 2px;
}

.sg-review__stars {
    display: flex;
    gap: 1px;
    flex-shrink: 0;
}

.sg-review__text {
    font-size: .88rem;
    line-height: 1.55;
    color: #444;
    word-break: break-word;
}

/* Ссылка "Все отзывы" */
.sg-reviews-more {
    display: inline-block;
    margin-top: 1rem;
    color: #4a7dff;
    font-size: .85rem;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s;
}
.sg-reviews-more:hover { color: #2a5ddf; text-decoration: underline; }

/* ==============================
   КНОПКА БРОНИРОВАНИЯ
   ============================== */
.sg-btn--book {
    background: linear-gradient(135deg, #fc3f1d, #ff6b4a);
    color: #fff !important;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform .15s, box-shadow .15s;
    cursor: pointer;
}
.sg-btn--book:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(252,63,29,.35);
}
.sg-btn--full { width: 100%; justify-content: center; padding: 12px; font-size: .95rem; }

/* Сайдбар: карточка бронирования */
.sg-sidebar-card--booking {
    background: linear-gradient(135deg, #fff5f3, #fff);
    border: 2px solid #fc3f1d;
}
.sg-booking-price {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: .8rem;
    text-align: center;
}
.sg-booking-price strong { font-size: 1.3rem; color: #111; }
.sg-booking-price small { color: #888; font-size: .8rem; }

/* Цена в hero */
.sg-hero__price {
    font-size: 1.1rem;
    color: #333;
    margin-top: .3rem;
}
.sg-hero__price strong { color: #111; }
.sg-hero__price small { color: #888; font-size: .8rem; }

/* Цена в related */
.sg-related__price {
    font-size: .75rem;
    color: #666;
    margin-top: 2px;
}

/* ==============================
   МОБИЛЬНАЯ АДАПТАЦИЯ
   ============================== */
@media (max-width: 768px) {
    .sg-review {
        padding: .8rem 1rem;
    }
    .sg-review__avatar {
        width: 30px;
        height: 30px;
        font-size: .8rem;
    }
    .sg-review__text {
        font-size: .82rem;
    }
    .sg-hero__actions {
        flex-direction: column;
    }
    .sg-btn--book {
        width: 100%;
        justify-content: center;
    }
}

/* Похожие глэмпинги */
.glamp-similar { margin-top: 48px; padding-top: 32px; border-top: 1px solid #eee; }
.glamp-similar__title { font-size: 22px; font-weight: 700; margin-bottom: 20px; color: #1a1a1a; }
.glamp-similar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.glamp-similar__card { text-decoration: none; color: inherit; border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.08); transition: transform .2s, box-shadow .2s; }
.glamp-similar__card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.glamp-similar__image { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.glamp-similar__image img { width: 100%; height: 100%; object-fit: cover; }
.glamp-similar__info { padding: 12px 14px; }
.glamp-similar__name { font-size: 15px; font-weight: 600; margin-bottom: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.glamp-similar__meta { display: flex; justify-content: space-between; font-size: 13px; color: #666; margin-bottom: 6px; }
.glamp-similar__rating { color: #f5a623; font-weight: 600; }
.glamp-similar__price { font-size: 15px; font-weight: 700; color: #2e7d32; }
@media (max-width: 900px) { .glamp-similar__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .glamp-similar__grid { grid-template-columns: 1fr; } }

/* Поделиться */
.glamp-share { display: flex; align-items: center; gap: 10px; margin: 24px 0; flex-wrap: wrap; }
.glamp-share__label { font-size: 14px; color: #666; font-weight: 500; }
.glamp-share__btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer; transition: all .2s; text-decoration: none; }
.glamp-share__btn--tg { background: #e8f4fd; color: #0088cc; }
.glamp-share__btn--tg:hover { background: #0088cc; color: #fff; }
.glamp-share__btn--vk { background: #e8edf5; color: #4a76a8; }
.glamp-share__btn--vk:hover { background: #4a76a8; color: #fff; }
.glamp-share__btn--max { background: #f3f0ff; padding: 0; overflow: hidden; }
.glamp-share__btn--max svg { border-radius: 50%; }
.glamp-share__btn--max:hover { opacity: 0.8; }
.glamp-share__btn--copy { background: #f0f0f0; color: #666; }
.glamp-share__btn--copy:hover { background: #666; color: #fff; }
.glamp-share__btn--copied { background: #4caf50 !important; color: #fff !important; }

.glamping-card__badge-tag--new { background: linear-gradient(135deg, #2196F3, #00BCD4); }
.sg-hero__views { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: #999; margin-top: 6px; }

.sg-section__subtitle {
    font-size: 14px;
    color: #757575;
    line-height: 1.6;
    margin: -8px 0 16px;
}

