/* GetSpain Terracotta - Extra Styles v3 */

/* === HEADER (Concierge Glass / Sand Light) === */
.gs-hdr {
    position: fixed;
    top: 14px;
    left: 14px;
    right: 14px;
    z-index: 100;
    pointer-events: none;
}
.gs-hdr-pill {
    pointer-events: auto;
    max-width: 1280px;
    margin: 0 auto;
    background: rgba(251, 247, 242, 0.72);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    border: 1px solid rgba(74, 103, 65, 0.14);
    border-radius: 22px;
    padding: 12px 14px 12px 22px;
    display: flex;
    align-items: center;
    gap: 22px;
    box-shadow: 0 10px 30px rgba(44, 44, 46, 0.08), 0 1px 0 rgba(255,255,255,0.6) inset;
}
.gs-hdr-logo {
    font-family: var(--gs-font-heading);
    font-size: 22px;
    font-weight: 600;
    font-style: italic;
    color: var(--gs-olive);
    text-decoration: none;
    letter-spacing: -0.3px;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.gs-hdr-logo span {
    color: var(--gs-terracotta);
    font-style: normal;
}
.gs-hdr-logo:hover { opacity: 0.85; }

.gs-hdr-nav {
    display: flex;
    gap: 26px;
    align-items: center;
    margin-left: auto;
}
.gs-hdr-nav a {
    font-family: var(--gs-font-body);
    color: var(--gs-warm-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.25s;
    white-space: nowrap;
    letter-spacing: 0.1px;
}
.gs-hdr-nav a:hover { color: var(--gs-charcoal); }

.gs-hdr-phone {
    font-family: var(--gs-font-body);
    font-weight: 600;
    color: var(--gs-charcoal);
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    letter-spacing: -0.2px;
    transition: color 0.25s;
}
.gs-hdr-phone:hover { color: var(--gs-terracotta); }

.gs-hdr-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}
.gs-hdr-cta {
    height: 38px;
    padding: 0 20px;
    border-radius: 50px;
    background: var(--gs-charcoal);
    color: var(--gs-sand);
    font-family: var(--gs-font-body);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    letter-spacing: 0.2px;
    transition: background 0.25s, transform 0.2s, color 0.25s;
    border: none;
    cursor: pointer;
}
.gs-hdr-cta:hover {
    background: var(--gs-terracotta);
    color: var(--gs-sand);
    transform: translateY(-1px);
}

.gs-hdr-burger {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(74, 103, 65, 0.08);
    border: 1px solid rgba(74, 103, 65, 0.2);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0;
    transition: background 0.25s;
}
.gs-hdr-burger:hover { background: rgba(74, 103, 65, 0.14); }
.gs-hdr-burger span {
    width: 14px;
    height: 1.5px;
    background: var(--gs-olive);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
    display: block;
}
.gs-hdr-burger.is-active span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.gs-hdr-burger.is-active span:nth-child(2) { opacity: 0; }
.gs-hdr-burger.is-active span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* === DRAWER (mobile menu overlay) === */
.gs-hdr-drawer {
    position: fixed;
    inset: 0;
    background: rgba(251, 247, 242, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
}
.gs-hdr-drawer.is-open {
    opacity: 1;
    visibility: visible;
}
.gs-hdr-drawer-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 110px 28px 48px;
    width: 100%;
    max-width: 440px;
    text-align: center;
}
.gs-hdr-drawer-inner a {
    font-family: var(--gs-font-heading);
    font-size: 28px;
    font-style: italic;
    font-weight: 500;
    color: var(--gs-charcoal);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid rgba(74, 103, 65, 0.1);
    transition: color 0.25s;
    letter-spacing: -0.3px;
}
.gs-hdr-drawer-inner a:hover { color: var(--gs-terracotta); }
.gs-drawer-phone {
    font-family: var(--gs-font-body) !important;
    font-style: normal !important;
    font-size: 22px !important;
    color: var(--gs-olive) !important;
    font-weight: 600 !important;
    margin-top: 24px !important;
    border-bottom: none !important;
    letter-spacing: -0.2px !important;
}
.gs-drawer-cta {
    margin-top: 18px !important;
    align-self: center !important;
    height: 56px !important;
    padding: 0 36px !important;
    font-size: 15px !important;
    font-style: normal !important;
    font-family: var(--gs-font-body) !important;
    border-bottom: none !important;
    color: var(--gs-sand) !important;
}
.gs-drawer-cta:hover { color: var(--gs-sand) !important; }

/* === MOBILE === */
@media (max-width: 900px) {
    .gs-hdr { top: 12px; left: 12px; right: 12px; }
    .gs-hdr-pill {
        padding: 10px 10px 10px 18px;
        gap: 10px;
    }
    .gs-hdr-logo { font-size: 20px; }
    .gs-hdr-nav,
    .gs-hdr-phone { display: none; }
    .gs-hdr-actions { margin-left: auto; }
    .gs-hdr-burger { display: flex; }
    .gs-hdr-cta {
        height: 36px;
        padding: 0 16px;
        font-size: 12px;
    }
}
@media (max-width: 400px) {
    .gs-hdr-logo { font-size: 18px; }
    .gs-hdr-cta { padding: 0 14px; }
}

/* === FOOTER === */
.gs-site-footer {
    background: var(--gs-charcoal);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 24px;
    margin-top: 60px;
}
.gs-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}
.gs-site-footer h4 {
    font-family: var(--gs-font-heading);
    font-style: italic;
    color: var(--gs-sand);
    margin-bottom: 16px;
    font-size: 20px;
}
.gs-site-footer p {
    font-family: var(--gs-font-body);
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}
.gs-site-footer ul { list-style: none; padding: 0; margin: 0; }
.gs-site-footer ul li { margin-bottom: 8px; }
.gs-site-footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}
.gs-site-footer a:hover { color: var(--gs-sand); }
.gs-footer-copy {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}

/* === TRANSFER SINGLE === */
.gs-transfer-header { margin-bottom: 24px; }
.gs-transfer-header h1 { color: var(--gs-charcoal); }
.gs-route-meta { font-size: 18px; color: var(--gs-warm-gray); margin-bottom: 8px; }
.gs-route-arrow { margin: 0 8px; color: var(--gs-primary); font-weight: 700; }
.gs-route-stats { display: flex; gap: 20px; }
.gs-stat { color: var(--gs-warm-gray); font-size: 15px; }

.gs-price-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Includes */
.gs-includes { margin: 40px 0; }
.gs-includes h2 { color: var(--gs-charcoal); }
.gs-includes-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 8px;
}
.gs-includes-list li {
    padding: 10px 0;
    color: var(--gs-charcoal);
    font-size: 15px;
}

/* Attractions */
.gs-attractions { margin: 40px 0; }
.gs-attractions h2 { color: var(--gs-charcoal); }
.gs-attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}
.gs-attraction-card {
    background: var(--gs-white);
    border: 1px solid var(--gs-border);
    border-radius: var(--gs-radius);
    padding: 24px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.gs-attraction-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(139, 125, 107, 0.1);
}
.gs-attraction-card h3 {
    font-family: var(--gs-font-body);
    color: var(--gs-charcoal);
    margin-bottom: 8px;
    font-size: 16px;
}
.gs-attraction-card p { color: var(--gs-warm-gray); font-size: 14px; }

/* CTA block */
.gs-cta-block {
    background: var(--gs-linen);
    border: 1px solid var(--gs-border);
    border-radius: var(--gs-radius);
    padding: 48px;
    text-align: center;
    margin: 48px 0;
}
.gs-cta-block h2 { color: var(--gs-charcoal); margin-bottom: 12px; }
.gs-cta-block p { color: var(--gs-warm-gray); margin-bottom: 20px; }
.gs-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Destination */
.gs-destination { margin: 40px 0; }
.gs-destination h2 { color: var(--gs-charcoal); }
.gs-destination p { color: var(--gs-warm-gray); line-height: 1.8; }

/* Content */
.gs-content { margin: 32px 0; line-height: 1.8; }
.gs-content h2 { color: var(--gs-charcoal); margin-top: 40px; }
.gs-content h3 { color: var(--gs-charcoal); }
.gs-content p { color: var(--gs-warm-gray); }

/* FAQ accordion */
.gs-faq-section { margin: 48px 0; }
.gs-faq-section h2 { color: var(--gs-charcoal); margin-bottom: 20px; }
.gs-faq-answer { display: none; }
.gs-faq-item.active .gs-faq-answer { display: block; }
.gs-faq-toggle {
    font-size: 20px;
    transition: transform 0.3s;
    color: var(--gs-primary);
}
.gs-faq-item.active .gs-faq-toggle { transform: rotate(45deg); }

/* Related */
.gs-related { margin: 60px 0; }
.gs-related h2 { color: var(--gs-charcoal); }
.gs-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

/* Car classes */
/* === CAR CLASS GRID (Feature Grid V2) === */
.gs-cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.gs-car-card {
    background: var(--gs-white);
    border: 1px solid var(--gs-light-border);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}
.gs-car-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
}
.gs-car-card-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gs-linen);
}
.gs-car-card-icon svg {
    width: 36px;
    height: 36px;
}
.gs-car-card-info {
    flex: 1;
    min-width: 0;
}
.gs-car-class {
    font-size: 20px;
    font-weight: 600;
    color: var(--gs-charcoal);
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}
.gs-car-model {
    font-size: 14px;
    color: var(--gs-warm-gray);
    margin-bottom: 4px;
}
.gs-car-seats {
    font-size: 13px;
    color: var(--gs-warm-gray);
    margin-bottom: 16px;
}
.gs-car-class-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--gs-terracotta);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.5px;
}
.gs-car-class-price span {
    font-size: 13px;
    font-weight: 400;
    color: var(--gs-warm-gray);
}

@media (max-width: 900px) { .gs-cars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .gs-cars-grid { grid-template-columns: 1fr; } }

/* Rent */
.gs-rent-city { font-size: 18px; color: var(--gs-warm-gray); }
.gs-conditions { margin: 32px 0; }
.gs-pickup { margin: 32px 0; }
.gs-pickup-list { padding-left: 20px; }
.gs-pickup-list li { margin-bottom: 8px; color: var(--gs-warm-gray); }

/* Archive */
.gs-hero-compact {
    background: linear-gradient(175deg, var(--gs-sand) 0%, var(--gs-linen) 100%);
    padding: 48px 24px;
    border-radius: var(--gs-radius);
    margin-bottom: 24px;
    text-align: center;
}
.gs-filter-bar { display: flex; gap: 8px; flex-wrap: wrap; padding: 16px 0; }
.gs-filter-btn {
    padding: 10px 22px;
    border: 1.5px solid var(--gs-border);
    border-radius: var(--gs-radius-btn);
    text-decoration: none;
    color: var(--gs-warm-gray);
    font-size: 14px;
    font-family: var(--gs-font-body);
    font-weight: 500;
    transition: all 0.3s;
    background: var(--gs-white);
}
.gs-filter-btn:hover,
.gs-filter-btn.active {
    background: var(--gs-primary);
    color: var(--gs-sand);
    border-color: var(--gs-primary);
}

/* Pagination */
.gs-pagination { grid-column: 1 / -1; text-align: center; margin-top: 24px; }
.gs-pagination .nav-links { display: flex; gap: 8px; justify-content: center; }
.gs-pagination a, .gs-pagination span {
    padding: 10px 16px;
    border-radius: var(--gs-radius-sm);
    text-decoration: none;
    font-family: var(--gs-font-body);
}
.gs-pagination .current { background: var(--gs-primary); color: var(--gs-sand); }

/* === GP OVERRIDES === */
body.single-transfer .inside-article,
body.single-rent-car .inside-article,
body.page .inside-article {
    max-width: 900px;
    margin: 0 auto;
}
/* Override GP background */
body {
    background-color: var(--gs-sand) !important;
}
.separate-containers .inside-article,
.separate-containers .comments-area,
.separate-containers .page-header,
.separate-containers .paging-navigation {
    background-color: var(--gs-sand) !important;
    border: none !important;
}
.site-info { display: none; }
body .entry-header { display: none; }
body .site-header,
body .site-footer { display: none !important; }
body.home #page { display: none !important; }

/* GP input overrides */
body input[type="text"],
body input[type="email"],
body input[type="url"],
body input[type="tel"],
body input[type="number"],
body textarea,
body select {
    background: var(--gs-sand) !important;
    border-color: var(--gs-border) !important;
    color: var(--gs-charcoal) !important;
    font-family: var(--gs-font-body) !important;
    border-radius: var(--gs-radius-sm) !important;
}
body input:focus, body textarea:focus, body select:focus {
    border-color: var(--gs-primary) !important;
    box-shadow: 0 0 0 3px rgba(199, 91, 57, 0.1) !important;
    background: var(--gs-white) !important;
}

/* GP link color override */
body a { color: var(--gs-primary); }
body .entry-title a { color: var(--gs-charcoal); }
body .entry-title a:hover { color: var(--gs-primary); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .gs-routes-grid { grid-template-columns: 1fr; gap: 12px; }
    .gs-route-card { padding: 16px 20px; }
    .gs-route-card h3 { font-size: 15px; }
    .gs-route-card .gs-price { font-size: 20px; }
    .gs-route-card-footer { padding-top: 10px; }
    .gs-cars-grid { grid-template-columns: 1fr; }
    .gs-related-grid { grid-template-columns: 1fr; }
    .gs-attractions-grid { grid-template-columns: 1fr; }
    .gs-price-actions { flex-direction: column; align-items: center; }
    .gs-cta-buttons { flex-direction: column; align-items: center; }
    .gs-hero-actions { flex-direction: column; align-items: center; }
    .gs-hero-compact { border-radius: 0; }
    .gs-header-inner { flex-wrap: wrap; }
    .gs-nav { order: 3; width: 100%; overflow-x: auto; gap: 16px; padding: 8px 0; }
    .gs-header-phone { font-size: 14px; }
    .gs-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .gs-booking-form { padding: 28px 20px; }
    .gs-cta-block { padding: 32px 20px; }
}
/* === TELEGRAM BUTTON === */
.gs-btn-telegram {
    background: #2AABEE;
    color: #fff;
    padding: 16px 36px;
    border-radius: var(--gs-radius-btn);
    font-family: var(--gs-font-body);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.gs-btn-telegram:hover {
    background: #229ED9;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(42, 171, 238, 0.25);
}

/* === HOW IT WORKS (STEPS) === */
.gs-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 24px;
}
.gs-step {
    text-align: center;
    padding: 32px 24px;
    position: relative;
}
.gs-step-number {
    width: 48px;
    height: 48px;
    background: var(--gs-primary);
    color: var(--gs-sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--gs-font-heading);
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}
.gs-step h3 {
    font-family: var(--gs-font-body);
    font-size: 17px;
    color: var(--gs-charcoal);
    margin-bottom: 8px;
}
.gs-step p {
    color: var(--gs-warm-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* === TRUST BLOCK (Languages + Legal) === */
.gs-trust-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.gs-trust-item {
    background: var(--gs-white);
    border: 1px solid var(--gs-border);
    border-radius: var(--gs-radius);
    padding: 32px;
}
.gs-trust-item h3 {
    font-family: var(--gs-font-body);
    color: var(--gs-charcoal);
    margin-bottom: 12px;
    font-size: 18px;
}
.gs-trust-item p {
    color: var(--gs-warm-gray);
    font-size: 15px;
    line-height: 1.6;
}
.gs-trust-langs {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.gs-trust-langs span {
    padding: 6px 16px;
    background: var(--gs-sand);
    border-radius: 20px;
    font-size: 14px;
    color: var(--gs-charcoal);
    font-weight: 500;
}

/* === QUIZ TABS === */
.gs-quiz-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    border-radius: var(--gs-radius-sm);
    overflow: hidden;
    border: 1.5px solid var(--gs-border);
}
.gs-quiz-tab {
    flex: 1;
    padding: 14px 20px;
    background: var(--gs-sand);
    border: none;
    font-family: var(--gs-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--gs-warm-gray);
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}
.gs-quiz-tab:not(:last-child) {
    border-right: 1.5px solid var(--gs-border);
}
.gs-quiz-tab:hover {
    color: var(--gs-charcoal);
    background: var(--gs-linen);
}
.gs-quiz-tab--active {
    background: var(--gs-primary);
    color: var(--gs-sand);
}
.gs-quiz-tab--active:hover {
    background: var(--gs-primary-hover);
    color: var(--gs-sand);
}
.gs-quiz-panel {
    display: none;
}
.gs-quiz-panel--active {
    display: block;
}

/* === BLOG CARDS === */
.gs-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}
.gs-blog-card {
    background: var(--gs-white);
    border: 1px solid var(--gs-border);
    border-radius: var(--gs-radius);
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}
.gs-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(139, 125, 107, 0.12);
}
.gs-blog-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.gs-blog-card-body {
    padding: 20px;
}
.gs-blog-date {
    font-size: 13px;
    color: var(--gs-text-muted);
    display: block;
    margin-bottom: 8px;
}
.gs-blog-card h3 {
    font-family: var(--gs-font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--gs-charcoal);
    margin-bottom: 8px;
    line-height: 1.4;
}
.gs-blog-card p {
    color: var(--gs-warm-gray);
    font-size: 14px;
    line-height: 1.5;
}

/* === RESPONSIVE NEW BLOCKS === */
@media (max-width: 768px) {
    .gs-steps { grid-template-columns: 1fr; gap: 16px; }
    .gs-trust-block { grid-template-columns: 1fr; }
    .gs-blog-grid { grid-template-columns: 1fr; }
    .gs-quiz-tabs { flex-direction: column; }
    .gs-quiz-tab:not(:last-child) { border-right: none; border-bottom: 1.5px solid var(--gs-border); }
}

/* === SEARCH (Apple style) === */
.gs-search-wrap {
    position: relative;
    max-width: 600px;
    margin: 0 auto 24px;
}
.gs-search-input {
    width: 100%;
    padding: 18px 52px 18px 52px;
    border: 2px solid var(--gs-warm-gray);
    border-radius: 50px;
    font-family: var(--gs-font-body);
    font-size: 17px;
    background: var(--gs-white);
    color: var(--gs-charcoal);
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(44, 44, 46, 0.08);
}
.gs-search-input:focus {
    border-color: var(--gs-terracotta);
    outline: none;
    box-shadow: 0 6px 24px rgba(199, 91, 57, 0.15);
}
.gs-search-input::placeholder {
    color: var(--gs-warm-gray);
    opacity: 0.6;
}
.gs-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    opacity: 0.7;
    pointer-events: none;
}
.gs-search-clear {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--gs-warm-gray);
    cursor: pointer;
    display: none;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.2s;
}
.gs-search-clear:hover {
    background: var(--gs-linen);
    color: var(--gs-charcoal);
}
.gs-search-clear.visible { display: block; }

.gs-results-count {
    text-align: center;
    font-size: 13px;
    color: var(--gs-warm-gray);
    margin-bottom: 16px;
    min-height: 20px;
}

.gs-no-results {
    text-align: center;
    padding: 48px 24px;
    color: var(--gs-warm-gray);
    font-size: 16px;
}
.gs-no-results .gs-cta-buttons {
    margin-top: 20px;
    justify-content: center;
}

/* Filter bar centered */
.gs-filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 24px;
}

/* Route card hidden state */
.gs-route-card.gs-hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .gs-search-input { font-size: 15px; padding: 14px 44px; }
    .gs-filter-bar { gap: 6px; }
    .gs-filter-btn { padding: 6px 14px; font-size: 13px; }
}

/* === MESSENGER RADIO BUTTONS === */
.gs-messenger-buttons {
    display: flex;
    gap: 12px;
}
.gs-messenger-buttons .wpcf7-radio {
    display: flex;
    gap: 12px;
    width: 100%;
}
.gs-messenger-buttons .wpcf7-list-item {
    flex: 1;
    margin: 0;
}
.gs-messenger-buttons .wpcf7-list-item input[type="radio"] {
    display: none;
}
.gs-messenger-buttons .wpcf7-list-item-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border: 2px solid var(--gs-light-border);
    border-radius: var(--gs-radius-sm);
    font-family: var(--gs-font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--gs-warm-gray);
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    background: var(--gs-sand);
}
.gs-messenger-buttons .wpcf7-list-item-label:hover {
    border-color: var(--gs-warm-gray);
    color: var(--gs-charcoal);
}
.gs-messenger-buttons .wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label {
    border-color: var(--gs-olive);
    background: var(--gs-olive);
    color: #fff;
    box-shadow: 0 4px 12px rgba(74, 103, 65, 0.25);
}

/* === INCLUDES GRID === */
.gs-includes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.gs-include-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px;
    background: var(--gs-white);
    border: 1px solid var(--gs-border);
    border-radius: var(--gs-radius-sm);
}
.gs-include-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}
.gs-include-item strong {
    display: block;
    font-size: 15px;
    color: var(--gs-charcoal);
    margin-bottom: 2px;
}
.gs-include-item p {
    font-size: 13px;
    color: var(--gs-warm-gray);
    line-height: 1.5;
    margin: 0;
}

/* === COMPARE TABLE === */
.gs-compare-table-wrap {
    overflow-x: auto;
    margin-top: 24px;
}
.gs-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--gs-font-body);
    font-size: 15px;
}
.gs-compare-table th,
.gs-compare-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--gs-light-border);
}
.gs-compare-table thead th {
    font-weight: 600;
    color: var(--gs-charcoal);
    font-size: 14px;
    border-bottom: 2px solid var(--gs-light-border);
}
.gs-compare-table td:first-child {
    font-weight: 500;
    color: var(--gs-charcoal);
}
.gs-compare-table td {
    color: var(--gs-warm-gray);
}
.gs-compare-highlight {
    background: rgba(199, 91, 57, 0.04);
    color: var(--gs-charcoal) !important;
    font-weight: 500;
}
.gs-compare-table thead .gs-compare-highlight {
    color: var(--gs-terracotta) !important;
    font-weight: 700;
}

@media (max-width: 768px) {
    .gs-includes-grid { grid-template-columns: 1fr; }
    .gs-compare-table { font-size: 13px; }
    .gs-compare-table th, .gs-compare-table td { padding: 10px 12px; }
}

/* ============================================
   BLOG - EDITORIAL LAYOUT
   ============================================ */

.gs-blog-masthead {
    padding: 60px 0 40px;
    border-bottom: 2px solid var(--gs-charcoal);
}
.gs-blog-masthead h1 {
    font-family: var(--gs-font-heading);
    font-style: italic;
    font-size: 56px;
    color: var(--gs-charcoal);
    letter-spacing: -1px;
    margin-bottom: 8px;
}
.gs-blog-masthead-sub {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.gs-blog-masthead p {
    font-size: 16px;
    color: var(--gs-warm-gray);
}

.gs-editorial-grid {
    display: grid;
    grid-template-columns: 2fr 1px 1fr;
    gap: 0;
    padding: 40px 0 80px;
}
.gs-editorial-main {
    padding-right: 40px;
}
.gs-editorial-divider {
    background: var(--gs-light-border);
}
.gs-editorial-sidebar {
    padding-left: 40px;
}

/* Featured article */
.gs-main-article {
    display: block;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gs-light-border);
    margin-bottom: 32px;
    text-decoration: none;
    color: inherit;
}
.gs-main-article:hover h2 { color: var(--gs-terracotta); }
.gs-main-article-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gs-terracotta);
    font-weight: 700;
    margin-bottom: 12px;
}
.gs-main-article h2 {
    font-family: var(--gs-font-heading);
    font-style: italic;
    font-size: 32px;
    color: var(--gs-charcoal);
    line-height: 1.25;
    margin-bottom: 16px;
    transition: color 0.3s;
}
.gs-main-article-img {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}
.gs-main-article-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}
.gs-main-article p {
    color: var(--gs-warm-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}
.gs-main-article-meta {
    font-size: 13px;
    color: var(--gs-warm-gray);
    opacity: 0.5;
}

/* Text-only articles */
.gs-text-article {
    display: block;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--gs-light-border);
    margin-bottom: 28px;
    text-decoration: none;
    color: inherit;
}
.gs-text-article:last-of-type {
    border-bottom: none;
}
.gs-text-article:hover h3 { color: var(--gs-terracotta); }
.gs-text-article-category {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gs-terracotta);
    font-weight: 700;
    margin-bottom: 2px;
}
.gs-text-article h3 {
    font-family: var(--gs-font-heading);
    font-style: italic;
    font-size: 22px;
    color: var(--gs-charcoal);
    line-height: 1.3;
    margin-bottom: 8px;
    transition: color 0.3s;
}
.gs-text-article p {
    color: var(--gs-warm-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}
.gs-text-article-meta {
    font-size: 12px;
    color: var(--gs-warm-gray);
    opacity: 0.5;
}

/* Sidebar */
.gs-sidebar-section {
    margin-bottom: 40px;
}
.gs-sidebar-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gs-charcoal);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gs-charcoal);
}
.gs-sidebar-link {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--gs-light-border);
    text-decoration: none;
    color: var(--gs-charcoal);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}
.gs-sidebar-link:hover { color: var(--gs-terracotta); }
.gs-sidebar-link span {
    display: block;
    font-size: 12px;
    color: var(--gs-warm-gray);
    margin-top: 4px;
    font-weight: 400;
}
.gs-sidebar-cta {
    background: var(--gs-charcoal);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
}
.gs-sidebar-cta h3 {
    font-family: var(--gs-font-heading);
    font-style: italic;
    font-size: 22px;
    color: var(--gs-sand);
    margin-bottom: 10px;
}
.gs-sidebar-cta p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    line-height: 1.6;
}
.gs-sidebar-cta-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.gs-sidebar-btn-wa {
    display: inline-block;
    background: var(--gs-olive);
    color: var(--gs-sand);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s;
}
.gs-sidebar-btn-wa:hover { background: var(--gs-olive-hover); color: var(--gs-sand); }
.gs-sidebar-btn-tg {
    display: inline-block;
    background: #2AABEE;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s;
}
.gs-sidebar-btn-tg:hover { background: #229ED9; color: #fff; }

@media (max-width: 768px) {
    .gs-editorial-grid { grid-template-columns: 1fr; }
    .gs-editorial-main { padding-right: 0; }
    .gs-editorial-divider { display: none; }
    .gs-editorial-sidebar { padding-left: 0; padding-top: 40px; border-top: 1px solid var(--gs-light-border); }
    .gs-blog-masthead h1 { font-size: 36px; }
    .gs-blog-masthead-sub { flex-direction: column; gap: 8px; align-items: flex-start; }
    .gs-main-article h2 { font-size: 24px; }
    .gs-main-article-img img { height: 200px; }
}

/* ============================================
   INDIVIDUAL CAR PAGES + CATALOG
   ============================================ */

/* --- Car Hero --- */
.gs-single-car { padding: 20px 0 60px; }

.gs-car-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
    align-items: start;
}

.gs-car-hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--gs-linen);
}

.gs-car-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.gs-car-no-photo {
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gs-warm-gray);
    font-size: 1.1rem;
}

.gs-car-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--gs-font-body);
}

.gs-car-badge--available {
    background: var(--gs-olive);
    color: #fff;
}

.gs-car-badge--unavailable {
    background: var(--gs-warm-gray);
    color: #fff;
}

.gs-car-hero-info h1 {
    font-family: var(--gs-font-heading);
    font-size: 2.2rem;
    color: var(--gs-charcoal);
    margin: 0 0 16px;
    line-height: 1.2;
}

.gs-car-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.gs-car-tag {
    padding: 4px 14px;
    background: var(--gs-linen);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--gs-charcoal);
    font-family: var(--gs-font-body);
}

.gs-car-price-hero {
    margin-bottom: 28px;
}

.gs-car-price-amount {
    font-family: var(--gs-font-body);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gs-terracotta);
    letter-spacing: -0.5px;
}

.gs-car-price-period {
    font-size: 1.1rem;
    color: var(--gs-warm-gray);
}

/* Pricing inline in hero */
.gs-car-pricing-inline {
    margin-bottom: 16px;
}
.gs-car-price-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 8px;
}
.gs-car-price-col {
    background: var(--gs-sand);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
}
.gs-car-price-col--best {
    border: 1.5px solid var(--gs-terracotta);
}
.gs-car-price-period-sm {
    display: block;
    font-size: 11px;
    color: var(--gs-warm-gray);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.gs-car-price-val {
    font-size: 18px;
    font-weight: 700;
    color: var(--gs-charcoal);
}
.gs-car-price-val small {
    font-size: 12px;
    font-weight: 400;
    color: var(--gs-warm-gray);
}

/* Compact specs */
.gs-car-specs-compact {
    margin-bottom: 12px;
    padding: 12px 0;
    border-top: 1px solid var(--gs-light-border);
}
.gs-car-spec-line {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
}
.gs-car-spec-line span:first-child {
    color: var(--gs-warm-gray);
}
.gs-car-spec-line span:last-child {
    font-weight: 600;
    color: var(--gs-charcoal);
}

/* Compact conditions */
.gs-car-conditions-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gs-light-border);
}
.gs-car-conditions-compact span {
    font-size: 12px;
    color: var(--gs-olive);
    background: rgba(74, 103, 65, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.gs-car-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.gs-car-cta-group .gs-btn-whatsapp,
.gs-car-cta-group .gs-btn-primary,
.gs-car-cta-group .gs-btn-secondary {
    padding: 14px 28px;
    border-radius: var(--gs-radius-btn);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    font-family: var(--gs-font-body);
    transition: all 0.2s;
}

.gs-btn-secondary {
    background: transparent;
    color: var(--gs-charcoal);
    border: 2px solid var(--gs-light-border);
}

.gs-btn-secondary:hover {
    border-color: var(--gs-terracotta);
    color: var(--gs-terracotta);
}

/* --- Car Sections --- */
.gs-car-section {
    margin-bottom: 48px;
    padding: 32px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--gs-light-border);
}

.gs-car-section h2 {
    font-family: var(--gs-font-heading);
    font-size: 1.6rem;
    color: var(--gs-charcoal);
    margin: 0 0 24px;
}

/* --- Pricing Grid --- */
.gs-car-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.gs-car-price-card {
    background: var(--gs-sand);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    position: relative;
}

.gs-car-price-card--best {
    border: 2px solid var(--gs-terracotta);
}

.gs-car-price-card-label {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gs-terracotta);
    color: #fff;
    padding: 2px 12px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.gs-car-price-card-period {
    font-size: 0.9rem;
    color: var(--gs-warm-gray);
    margin-bottom: 8px;
    font-family: var(--gs-font-body);
}

.gs-car-price-card-amount {
    font-family: var(--gs-font-body);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gs-charcoal);
    letter-spacing: -0.3px;
}

.gs-car-price-card-amount span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gs-warm-gray);
}

.gs-car-deposit {
    color: var(--gs-warm-gray);
    font-size: 0.95rem;
    margin: 8px 0 0;
}

/* --- Specs Grid --- */
.gs-car-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.gs-car-spec {
    padding: 16px;
    background: var(--gs-sand);
    border-radius: 10px;
}

.gs-car-spec-label {
    font-size: 0.8rem;
    color: var(--gs-warm-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-family: var(--gs-font-body);
}

.gs-car-spec-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gs-charcoal);
}

/* --- Conditions --- */
.gs-car-conditions {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.gs-car-condition-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--gs-sand);
    border-radius: 10px;
    font-size: 0.95rem;
}

.gs-car-condition-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* --- CTA Section --- */
.gs-car-cta-section {
    background: var(--gs-linen);
    text-align: center;
}

.gs-car-cta-section p {
    color: var(--gs-warm-gray);
    margin-bottom: 20px;
}

.gs-car-cta-section .gs-car-cta-group {
    justify-content: center;
}

/* ============================================
   CATALOG (ARCHIVE) PAGE
   ============================================ */

.gs-catalog-header {
    text-align: center;
    padding: 40px 0 32px;
}

.gs-catalog-header h1 {
    font-family: var(--gs-font-heading);
    font-size: 2.4rem;
    color: var(--gs-charcoal);
    margin: 0 0 12px;
}

.gs-catalog-subtitle {
    color: var(--gs-warm-gray);
    font-size: 1.1rem;
    margin: 0;
}

/* --- Filters --- */
.gs-catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 32px;
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--gs-light-border);
}

.gs-filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--gs-light-border);
    border-radius: 20px;
    background: transparent;
    color: var(--gs-charcoal);
    font-size: 0.9rem;
    font-family: var(--gs-font-body);
    cursor: pointer;
    transition: all 0.2s;
}

.gs-filter-btn:hover {
    border-color: var(--gs-terracotta);
    color: var(--gs-terracotta);
}

.gs-filter-btn.gs-filter-active {
    background: var(--gs-terracotta);
    color: #fff;
    border-color: var(--gs-terracotta);
}

/* --- Catalog Grid --- */
.gs-cars-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.gs-car-catalog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gs-light-border);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    display: block;
}

.gs-car-catalog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.gs-car-catalog-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.gs-car-catalog-no-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gs-linen);
    color: var(--gs-warm-gray);
}

.gs-car-catalog-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gs-warm-gray);
    color: #fff;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
}

.gs-car-catalog-info {
    padding: 16px 20px 20px;
}

.gs-car-catalog-info h2,
.gs-car-catalog-info h3 {
    font-family: var(--gs-font-heading);
    font-size: 1.2rem;
    color: var(--gs-charcoal);
    margin: 0 0 8px;
    line-height: 1.3;
}

.gs-car-catalog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.gs-car-catalog-meta span {
    padding: 2px 10px;
    background: var(--gs-sand);
    border-radius: 12px;
    font-size: 0.8rem;
    color: var(--gs-warm-gray);
}

.gs-car-catalog-price {
    font-family: var(--gs-font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gs-terracotta);
    letter-spacing: -0.3px;
}

.gs-car-catalog-price-month {
    font-size: 0.85rem;
    color: var(--gs-warm-gray);
    margin-top: 2px;
}

/* --- Catalog CTA --- */
.gs-catalog-cta {
    text-align: center;
    padding: 48px 32px;
    background: var(--gs-linen);
    border-radius: 16px;
    margin-bottom: 48px;
}

.gs-catalog-cta h2 {
    font-family: var(--gs-font-heading);
    color: var(--gs-charcoal);
    margin: 0 0 8px;
}

.gs-catalog-cta p {
    color: var(--gs-warm-gray);
    margin: 0 0 24px;
}

.gs-catalog-cta .gs-car-cta-group {
    justify-content: center;
}

/* ============================================
   MOBILE
   ============================================ */

@media (max-width: 768px) {
    .gs-car-hero {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gs-car-hero-info h1 {
        font-size: 1.6rem;
    }

    .gs-car-price-amount {
        font-size: 1.8rem;
    }

    .gs-car-section {
        padding: 20px;
        margin-bottom: 24px;
    }

    .gs-car-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gs-car-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gs-car-conditions {
        grid-template-columns: 1fr;
    }

    .gs-cars-catalog-grid {
        grid-template-columns: 1fr;
    }

    .gs-catalog-header h1 {
        font-size: 1.6rem;
    }

    .gs-car-cta-group {
        flex-direction: column;
    }
}

/* === HERO V2 (Archive) === */
.gs-hero-v2 {
    position: relative;
    padding: 80px 24px 60px;
    text-align: center;
    overflow: hidden;
    margin-bottom: 8px;
}
.gs-hero-v2-bg-1 {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199,91,57,0.06) 0%, transparent 70%);
    top: -300px;
    right: -200px;
    pointer-events: none;
}
.gs-hero-v2-bg-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,149,106,0.08) 0%, transparent 70%);
    bottom: -200px;
    left: -100px;
    pointer-events: none;
}
.gs-hero-v2-inner {
    position: relative;
    z-index: 2;
}
.gs-hero-v2-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 30px;
    background: rgba(199,91,57,0.08);
    color: var(--gs-primary);
    font-family: var(--gs-font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.gs-hero-v2 h1 {
    font-family: var(--gs-font-body);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
    color: var(--gs-charcoal);
}
.gs-gradient-text {
    background: linear-gradient(135deg, var(--gs-terracotta), var(--gs-adobe));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gs-hero-v2-desc {
    font-family: var(--gs-font-body);
    font-size: 18px;
    color: var(--gs-warm-gray);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 36px;
}
.gs-hero-v2-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.gs-msg-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: var(--gs-font-body);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    color: #fff;
}
.gs-msg-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    color: #fff;
}
.gs-msg-wa { background: #25D366; }
.gs-msg-wa:hover { background: #20bd5a; }
.gs-msg-tg { background: #0088cc; }
.gs-msg-tg:hover { background: #007ab8; }
.gs-msg-form { background: var(--gs-primary); }
.gs-msg-form:hover { background: var(--gs-primary-hover); }

/* === FEATURES STRIP === */
.gs-features-strip {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 0 24px 48px;
    flex-wrap: wrap;
}
.gs-fstrip-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.gs-fstrip-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(199,91,57,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gs-primary);
    flex-shrink: 0;
}
.gs-fstrip-text {
    font-family: var(--gs-font-body);
    font-size: 14px;
    color: var(--gs-warm-gray);
    line-height: 1.4;
}
.gs-fstrip-text strong {
    display: block;
    color: var(--gs-charcoal);
    font-weight: 600;
    font-size: 15px;
}

/* === ROUTE CARD V2 === */
.gs-routes-grid-v2 {
    grid-template-columns: repeat(3, 1fr);
}
.gs-route-card-v2 {
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.gs-route-card-v2:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: rgba(199,91,57,0.2);
}
.gs-route-card-v2 .gs-price {
    font-size: 20px;
    font-weight: 700;
}
.gs-route-card-v2 .gs-price span {
    font-size: 13px;
    font-weight: 500;
    color: var(--gs-warm-gray);
}
.gs-route-link-v2 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 10px;
    background: rgba(199,91,57,0.08);
    color: var(--gs-primary);
    font-family: var(--gs-font-body);
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
}
.gs-route-link-v2:hover {
    background: rgba(199,91,57,0.15);
}

@media (max-width: 900px) {
    .gs-routes-grid-v2 { grid-template-columns: repeat(2, 1fr); }
    .gs-features-strip { gap: 24px; }
}
@media (max-width: 580px) {
    .gs-routes-grid-v2 { grid-template-columns: 1fr; }
    .gs-features-strip { flex-direction: column; align-items: center; gap: 16px; }
    .gs-hero-v2-actions { flex-direction: column; align-items: center; }
    .gs-hero-v2 { padding: 60px 16px 40px; }
}

/* === SEARCH OVERRIDES === */
.gs-search-wrap .gs-search-icon {
    left: 24px !important;
    right: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 17px !important;
    opacity: 0.45 !important;
    transition: opacity 0.15s !important;
}
.gs-search-wrap .gs-search-label {
    position: absolute !important;
    pointer-events: none;
    font-family: var(--gs-font-body);
    color: var(--gs-warm-gray);
    left: 52px !important;
    right: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 16px !important;
    opacity: 0.5 !important;
    transition: opacity 0.15s !important;
}
.gs-search-wrap .gs-search-input {
    padding: 18px 52px 18px 52px !important;
}
.gs-search-wrap .gs-search-input:focus {
    padding-left: 24px !important;
}
.gs-search-wrap .gs-search-input:focus ~ .gs-search-icon,
.gs-search-wrap .gs-search-input:focus ~ .gs-search-label,
.gs-search-wrap.has-value .gs-search-icon,
.gs-search-wrap.has-value .gs-search-label {
    opacity: 0 !important;
    pointer-events: none;
}

/* === FORM V2: Split Card === */
.gs-form-v2-wrap {
    max-width: 1140px;
    margin: 0 auto;
    background: var(--gs-white);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}
.gs-form-v2-left {
    background: linear-gradient(135deg, var(--gs-terracotta) 0%, var(--gs-adobe) 100%);
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}
.gs-form-v2-left h2 {
    font-family: var(--gs-font-body);
    font-size: 36px;
    font-weight: 700;
    font-style: normal;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -1px;
    color: #fff;
}
.gs-form-v2-left p {
    font-size: 16px;
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 36px;
}
.gs-form-v2-feats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.gs-form-v2-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
}
.gs-form-v2-feat-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.gs-form-v2-right {
    padding: 48px;
}
.gs-form-v2-right-title {
    font-family: var(--gs-font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--gs-charcoal);
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}

/* Form grid inside CF7 */
.gs-form-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
}
.gs-form-v2-col {
    display: flex;
    flex-direction: column;
}
.gs-form-v2-right .gs-form-row {
    margin-bottom: 16px;
}
.gs-form-v2-right .gs-form-row label {

    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gs-warm-gray);
    margin-bottom: 2px;
}

.gs-form-v2-right .wpcf7-form-control-wrap input,
.gs-form-v2-right .wpcf7-form-control-wrap select {
    width: 100%;
}

@media (max-width: 768px) {
    .gs-form-v2-wrap {
        grid-template-columns: 1fr;
    }
    .gs-form-v2-left {
        padding: 36px 28px;
    }
    .gs-form-v2-left h2 {
        font-size: 28px;
    }
    .gs-form-v2-right {
        padding: 32px 28px;
    }
    .gs-form-v2-grid {
        grid-template-columns: 1fr;
    }
}

/* === CF7 WRAPPER RESET === */
.gs-form-v2-right .wpcf7-form p {
    margin: 0;
    padding: 0;
}
.gs-form-v2-right .wpcf7-form br {
    display: none;
}
.gs-form-v2-right .gs-form-row p {
    margin: 0 !important;
}

/* === FORM V2 FINAL FIX === */
.gs-form-v2-right .wpcf7-form {
    display: flex;
    flex-direction: column;
}

/* Submit button full width */
.gs-form-v2-right .wpcf7-form > p:last-of-type {
    margin-top: 8px !important;
}

.gs-form-v2-right .wpcf7-submit {
    width: 100%;
    padding: 16px !important;
    border-radius: 14px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    font-family: var(--gs-font-body) !important;
    letter-spacing: 0 !important;
}
.gs-form-v2-right .wpcf7-submit,
.gs-form-v2-right input[type="submit"] {
    background: var(--gs-primary) !important;
    color: var(--gs-sand) !important;
    border: none !important;
    cursor: pointer;
    transition: background 0.25s, transform 0.15s;
}
.gs-form-v2-right .wpcf7-submit:hover {
    background: var(--gs-primary-hover) !important;
    transform: translateY(-1px);
}

/* === DATE INPUT STYLING === */
.gs-form-v2-right input[type="date"] {
    width: 100% !important;
    padding: 14px 16px !important;
    border: 1.5px solid var(--gs-light-border) !important;
    border-radius: 12px !important;
    font-family: var(--gs-font-body) !important;
    font-size: 15px !important;
    color: var(--gs-charcoal) !important;
    background: var(--gs-sand) !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}
.gs-form-v2-right input[type="date"]:focus {
    border-color: var(--gs-primary) !important;
    background: var(--gs-white) !important;
    box-shadow: 0 0 0 3px rgba(199, 91, 57, 0.1) !important;
    outline: none !important;
}
.gs-form-v2-right input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.5;
    filter: none;
    transition: opacity 0.2s;
}
.gs-form-v2-right input[type="date"]:hover::-webkit-calendar-picker-indicator {
    opacity: 0.8;
}
.gs-form-v2-right input[type="date"]::-webkit-datetime-edit {
    color: var(--gs-warm-gray);
    font-family: var(--gs-font-body);
}
.gs-form-v2-right input[type="date"]:valid:not([value=""])::-webkit-datetime-edit {
    color: var(--gs-charcoal);
}

/* === CATALOG GRID: 4 columns max === */
.gs-cars-catalog-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 1000px) {
    .gs-cars-catalog-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 768px) {
    .gs-cars-catalog-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
    .gs-cars-catalog-grid { grid-template-columns: 1fr !important; }
}

/* === CAR CARD: price pinned to bottom === */
.gs-car-catalog-card {
    display: flex !important;
    flex-direction: column;
}
.gs-car-catalog-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.gs-car-catalog-price {
    margin-top: auto !important;
    padding-top: 12px;
}

/* === FILTER BTN HOVER FIX === */
.gs-catalog-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;
}
.gs-catalog-filters .gs-filter-btn {
    background: var(--gs-white);
    border: 1.5px solid var(--gs-light-border);
    color: var(--gs-warm-gray);
    transition: all 0.2s;
}
.gs-catalog-filters .gs-filter-btn:hover {
    border-color: var(--gs-primary);
    color: var(--gs-primary);
    background: var(--gs-white);
}
.gs-catalog-filters .gs-filter-btn.gs-filter-active {
    background: var(--gs-primary);
    color: var(--gs-sand);
    border-color: var(--gs-primary);
}
.gs-catalog-filters .gs-filter-btn.gs-filter-active:hover {
    background: var(--gs-primary-hover);
    border-color: var(--gs-primary-hover);
    color: var(--gs-sand);
}

/* === GLOBAL FORM GAP FIX === */
.gs-form-row { margin-bottom: 10px; }
.gs-form-row p { margin: 0 !important; padding: 0 !important; line-height: inherit; }
.gs-form-row br { display: none !important; }
.gs-form-row label { display: block; margin-bottom: 2px !important; }
.gs-messenger-buttons { margin-top: 4px; }
.gs-messenger-buttons p { margin: 0 !important; }

/* === QUIZ PANEL SUBMIT FIX === */
.gs-quiz-panel .wpcf7-submit {
    width: 100%;
    padding: 16px !important;
    border-radius: 14px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    background: var(--gs-primary) !important;
    color: var(--gs-sand) !important;
    border: none !important;
    cursor: pointer;
}
.gs-quiz-panel .wpcf7-submit:hover {
    background: var(--gs-primary-hover) !important;
}

/* === MOBILE TWEAKS FOR FORMS === */
@media (max-width: 768px) {
    /* Smaller floating WhatsApp so it does not cover form submit on 390px viewport */
    .gs-float-whatsapp {
        width: 48px !important;
        height: 48px !important;
        font-size: 22px !important;
        bottom: 16px !important;
        right: 14px !important;
        opacity: 0.92;
    }

    /* Prevent input text from being cut off with ellipsis when focused */
    .gs-form-v2-right .wpcf7-form-control,
    .gs-form-row .wpcf7-form-control {
        text-overflow: ellipsis;
    }

    /* Slightly smaller placeholders on narrow screens */
    .gs-form-v2-right .wpcf7-form-control::placeholder,
    .gs-form-row .wpcf7-form-control::placeholder {
        font-size: 14px;
    }
}
/* === MENU v4 - Telegram in header, premium WhatsApp bubble, active state === */

html { scroll-behavior: smooth; }

/* Kill legacy phone-in-header styles (element is gone from markup) */
.gs-hdr-phone,
.gs-drawer-phone { display: none !important; }

/* Active menu item (both desktop nav and drawer) */
.gs-hdr-nav a.is-active {
    color: var(--gs-charcoal);
    position: relative;
}
.gs-hdr-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 2px;
    background: var(--gs-terracotta);
    border-radius: 2px;
}
.gs-hdr-drawer-inner a.is-active {
    color: var(--gs-terracotta);
}

/* CTA - terracotta brand color, matches submit buttons across the site */
.gs-hdr-cta {
    background: var(--gs-terracotta);
    color: var(--gs-sand);
    box-shadow: 0 4px 14px rgba(194, 95, 56, 0.28);
}
.gs-hdr-cta:hover {
    background: var(--gs-charcoal);
    color: var(--gs-sand);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(44, 44, 46, 0.32);
}

/* Telegram link in header (desktop) */
.gs-hdr-tg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gs-charcoal);
    text-decoration: none;
    font-family: var(--gs-font-body);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 999px;
    transition: color 0.25s, background 0.25s;
}
.gs-hdr-tg svg {
    width: 18px;
    height: 18px;
    color: #26A5E4; /* Telegram brand blue */
    flex-shrink: 0;
}
.gs-hdr-tg:hover {
    color: #26A5E4;
    background: rgba(38, 165, 228, 0.08);
}
.gs-hdr-tg-label {
    letter-spacing: 0.1px;
}

/* Telegram entry in drawer */
.gs-drawer-tg {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    font-family: var(--gs-font-body) !important;
    font-style: normal !important;
    font-size: 18px !important;
    color: #26A5E4 !important;
    font-weight: 600 !important;
    padding: 14px 0 !important;
    border-bottom: none !important;
    letter-spacing: -0.1px !important;
    align-self: center;
}
.gs-drawer-tg svg {
    width: 22px;
    height: 22px;
    color: #26A5E4;
}

/* Mobile: hide desktop Telegram label, keep icon only as a 44×44 target */
@media (max-width: 900px) {
    .gs-hdr-tg {
        width: 40px;
        height: 38px;
        padding: 0;
        justify-content: center;
        background: rgba(38, 165, 228, 0.08);
    }
    .gs-hdr-tg svg { width: 20px; height: 20px; }
    .gs-hdr-tg-label { display: none; }
    .gs-hdr-actions { gap: 6px; }
}

/* === Premium WhatsApp bubble - white circle, brand logo, soft glow === */
.gs-float-whatsapp {
    width: 58px;
    height: 58px;
    background: #25D366; /* official WhatsApp green */
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.55) inset,
        0 10px 24px rgba(37, 211, 102, 0.35),
        0 2px 8px rgba(0, 0, 0, 0.12);
    animation: gs-wa-pulse 3.6s ease-in-out infinite;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gs-float-whatsapp svg {
    width: 30px;
    height: 30px;
    display: block;
}
.gs-float-whatsapp:hover {
    transform: translateY(-2px) scale(1.04);
    color: #ffffff;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.7) inset,
        0 14px 34px rgba(37, 211, 102, 0.45),
        0 4px 12px rgba(0, 0, 0, 0.16);
}
@keyframes gs-wa-pulse {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.55) inset,
            0 10px 24px rgba(37, 211, 102, 0.35),
            0 2px 8px rgba(0, 0, 0, 0.12),
            0 0 0 0 rgba(37, 211, 102, 0.45);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.55) inset,
            0 12px 28px rgba(37, 211, 102, 0.42),
            0 2px 8px rgba(0, 0, 0, 0.12),
            0 0 0 14px rgba(37, 211, 102, 0);
    }
}
@media (prefers-reduced-motion: reduce) {
    .gs-float-whatsapp { animation: none; }
}
@media (max-width: 900px) {
    .gs-float-whatsapp {
        width: 52px !important;
        height: 52px !important;
        bottom: 18px !important;
        right: 16px !important;
    }
    .gs-float-whatsapp svg { width: 26px; height: 26px; }
}

/* === Mobile section spacing - air between adjacent light sections === */
@media (max-width: 768px) {
    .gs-section + .gs-section,
    .gs-section + .gs-car-section,
    .gs-section + .gs-booking-form,
    .gs-section + .gs-cta-block,
    .gs-car-section + .gs-section,
    .gs-car-section + .gs-car-section,
    .gs-booking-form + .gs-section,
    .gs-booking-form + .gs-car-section,
    .gs-cta-block + .gs-section,
    .gs-cta-block + .gs-booking-form,
    .gs-cta-block + .gs-car-section {
        margin-top: 24px;
    }
}

/* === Header offset for pages without a built-in hero ===
   The floating .gs-hdr is position:fixed and doesn't reserve layout space.
   Custom templates (front-page, archive-transfer/rent-car/car, single-transfer/
   rent-car/car, home.php blog index via theme hero) bake their own top spacing.
   Everything else - generic WP pages, blog posts, 404, search - must push
   content below the pill by itself.
   Header height: desktop 14 + 12 + 40 + 12 ≈ 78px; mobile 12 + 10 + 38 + 10 ≈ 70px. */
body.page:not(.home),
body.blog,
body.single-post,
body.single-transfer,
body.single-rent-car,
body.single-car,
body.search,
body.error404 {
    padding-top: 96px;
}
@media (max-width: 768px) {
    body.page:not(.home),
    body.blog,
    body.single-post,
    body.single-transfer,
    body.single-rent-car,
    body.single-car,
    body.search,
    body.error404 {
        padding-top: 84px;
    }
}

/* === Messenger CTA - premium Apple-style block (rev. 2026-04-25 v2) === */

.gs-msg-cta {
    --gs-cta-text:    #1d1d1f;
    --gs-cta-mute:    #6e6e73;
    --gs-cta-bg:      linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
    --gs-cta-border:  #e8e8ed;
    --gs-cta-radius:  24px;
    --gs-cta-shadow:  0 24px 60px rgba(29, 29, 31, 0.08);

    background: var(--gs-cta-bg);
    border: 1px solid var(--gs-cta-border);
    border-radius: var(--gs-cta-radius);
    /* Inner padding only; outer width/margin owned by parent container.
       gs-section's 60px vertical padding is overridden to avoid double-stack. */
    padding: clamp(56px, 9vw, 112px) clamp(24px, 6vw, 72px) !important;
    margin: clamp(48px, 7vw, 80px) 0;
    text-align: center;
    box-shadow: var(--gs-cta-shadow);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* When the block sits at the page top (e.g. as a hero CTA on /), kill the top margin */
.gs-msg-cta:first-child { margin-top: 0; }
.gs-msg-cta:last-child  { margin-bottom: 0; }

/* Subtle radial accent behind the headline - premium feel without noise */
.gs-msg-cta::before {
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 460px;
    height: 460px;
    background: radial-gradient(closest-side, rgba(74, 103, 65, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.gs-msg-cta__inner {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.gs-msg-cta__title {
    font-family: var(--gs-font-headline, "Playfair Display", Georgia, serif);
    font-weight: 600;
    font-size: clamp(30px, 4.4vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--gs-cta-text);
    margin: 0 0 18px;
}

.gs-msg-cta__subtitle {
    font-family: var(--gs-font-body);
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.55;
    color: var(--gs-cta-mute);
    margin: 0 auto 36px;
    max-width: 520px;
    letter-spacing: -0.003em;
}

.gs-msg-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.gs-msg-buttons--compact {
    margin-top: 4px;
}

.gs-msg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 16px 32px;
    border-radius: 999px;
    font-family: var(--gs-font-body);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.01em;
    text-decoration: none !important;
    border: 0;
    border-bottom: 0 !important;
    color: #fff !important;
    transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 6px 18px rgba(29, 29, 31, 0.12);
    cursor: pointer;
}

.gs-msg-btn:hover,
.gs-msg-btn:focus-visible {
    transform: translateY(-2px);
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 12px 28px rgba(29, 29, 31, 0.2);
}

.gs-msg-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(29, 29, 31, 0.15);
}

/* Brand colors matching the rest of the site (header pills) */
.gs-msg-btn--wa {
    background: var(--gs-olive, #4A6741);
}
.gs-msg-btn--wa:hover {
    background: var(--gs-olive-hover, #3D5736);
}

.gs-msg-btn--tg {
    background: #1E5A8C;
}
.gs-msg-btn--tg:hover {
    background: #286FA5;
}

.gs-msg-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
}

/* Trust hint under buttons (optional, inline span if added in template) */
.gs-msg-cta__hint {
    margin: 28px 0 0;
    font-family: var(--gs-font-body);
    font-size: 13px;
    color: var(--gs-cta-mute);
    letter-spacing: 0.02em;
}

.gs-form-v2-right-note {
    margin: 16px 0 0;
    font-size: 14px;
    color: var(--gs-warm-gray, #6b6b6b);
    text-align: center;
}

@media (max-width: 640px) {
    .gs-msg-cta {
        margin: 40px 12px;
        padding: 56px 24px;
        border-radius: 18px;
    }
    .gs-msg-cta::before { display: none; }
    .gs-msg-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .gs-msg-btn {
        width: 100%;
        max-width: 320px;
        font-size: 16px;
    }
}

/* Full-width CTA rendered AFTER .gs-post-layout - the wrapper centers it
   at the same 1180px width as the article layout above. */
.gs-post-apple .gs-post-cta-wrap {
    max-width: 1180px;
    margin: 0 auto 96px;
    padding: 0 24px;
}
.gs-post-apple .gs-post-cta-wrap .gs-msg-cta {
    margin: 0;
}

/* Defensive: kill underline/red color on any anchor inside .gs-msg-cta
   even if it ends up inside .gs-post-content (e.g. legacy posts that
   embed the partial inline). */
.gs-post-apple .gs-msg-cta a {
    color: #fff !important;
    border-bottom: 0 !important;
}

@media (max-width: 640px) {
    .gs-post-apple .gs-post-cta-wrap {
        padding: 0 16px;
        margin-bottom: 64px;
    }
}

/* === Brand button inline icons (added 2026-04-25) === */
.gs-btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: inline-block;
}
.gs-btn-whatsapp,
.gs-btn-telegram {
    /* parent classes already use inline-flex + gap; just guarantee icon align */
    align-items: center;
}

/* === Header messenger duo (WhatsApp + Telegram) - added 2026-04-25 === */
.gs-hdr-msg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.gs-hdr-msg-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff !important;
    text-decoration: none;
    font-family: var(--gs-font-body);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 999px;
    transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
    white-space: nowrap;
    line-height: 1;
}
.gs-hdr-msg-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.gs-hdr-msg-btn:hover {
    color: #fff !important;
    transform: translateY(-1px);
}
.gs-hdr-msg-wa {
    background: var(--gs-olive);
}
.gs-hdr-msg-wa:hover {
    background: var(--gs-olive-hover);
    box-shadow: 0 4px 12px rgba(74, 103, 65, 0.28);
}
.gs-hdr-msg-tg {
    background: #1E5A8C;
}
.gs-hdr-msg-tg:hover {
    background: #286FA5;
    box-shadow: 0 4px 12px rgba(30, 90, 140, 0.28);
}

/* Mobile: shrink to icon-only round 38x38 */
@media (max-width: 900px) {
    .gs-hdr-msg { gap: 6px; }
    .gs-hdr-pill .gs-hdr-msg-btn {
        width: 38px;
        height: 38px;
        padding: 0;
        justify-content: center;
        gap: 0;
    }
    .gs-hdr-pill .gs-hdr-msg-btn .gs-hdr-msg-label { display: none; }
    .gs-hdr-pill .gs-hdr-msg-btn svg { width: 18px; height: 18px; }
}

/* Drawer: messenger duo always full size with labels */
.gs-drawer-msg {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    align-self: center;
    flex-wrap: wrap;
    justify-content: center;
}
.gs-drawer-msg .gs-hdr-msg-btn {
    padding: 14px 24px;
    font-size: 16px;
    width: auto;
    height: auto;
}
.gs-drawer-msg .gs-hdr-msg-btn svg { width: 20px; height: 20px; }
.gs-drawer-msg .gs-hdr-msg-btn .gs-hdr-msg-label { display: inline; }

/* === Apple-style blog post layout (added 2026-04-25) =================== */

.gs-post-apple {
    --gs-apple-text:    #1d1d1f;
    --gs-apple-mute:    #6e6e73;
    --gs-apple-divider: #d2d2d7;
    --gs-apple-bg-tint: #fbfbfd;
    --gs-apple-accent:  var(--gs-primary, #C75B39);
    --gs-apple-radius:  18px;
}

/* Hero: full-bleed background tint with centered narrow content */
.gs-post-apple .gs-post-hero {
    background: var(--gs-apple-bg-tint);
    padding: 96px 24px 64px;
    text-align: center;
}
.gs-post-apple .gs-post-hero-inner {
    max-width: 760px;
    margin: 0 auto;
}
.gs-post-apple .gs-post-meta {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gs-apple-mute);
    font-family: var(--gs-font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}
.gs-post-apple .gs-post-meta-dot {
    color: var(--gs-apple-divider);
}
.gs-post-apple .gs-post-cat {
    color: var(--gs-apple-accent);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.06em;
    font-size: 13px;
}
.gs-post-apple .gs-post-cat:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}
.gs-post-apple .gs-post-title {
    font-family: var(--gs-font-headline, "Playfair Display", Georgia, serif);
    font-size: clamp(34px, 5.6vw, 60px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--gs-apple-text);
    margin: 0 0 24px;
    font-weight: 600;
}
.gs-post-apple .gs-post-lead {
    font-family: var(--gs-font-body);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.5;
    color: var(--gs-apple-mute);
    max-width: 640px;
    margin: 0 auto;
}

/* Cover image: edge-to-edge but contained */
.gs-post-apple .gs-post-cover {
    max-width: 1080px;
    margin: -32px auto 64px;
    padding: 0 24px;
}
.gs-post-apple .gs-post-cover img {
    width: 100%;
    height: auto;
    border-radius: var(--gs-apple-radius);
    display: block;
    box-shadow: 0 24px 60px rgba(29, 29, 31, 0.12);
}
.gs-post-apple:not(:has(.gs-post-cover)) .gs-post-layout {
    margin-top: 56px;
}

/* Layout grid: narrow content + 280px aside */
.gs-post-apple .gs-post-layout {
    max-width: 1180px;
    margin: 0 auto 96px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 80px;
    align-items: start;
}

/* Article body */
.gs-post-apple .gs-post-content {
    max-width: 720px;
    color: var(--gs-apple-text);
    font-family: var(--gs-font-body);
    font-size: 19px;
    line-height: 1.7;
    letter-spacing: -0.003em;
}
.gs-post-apple .gs-post-content > * + * { margin-top: 1.2em; }
.gs-post-apple .gs-post-content p {
    margin: 0 0 1.2em;
}
.gs-post-apple .gs-post-content h2 {
    font-family: var(--gs-font-headline, "Playfair Display", Georgia, serif);
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--gs-apple-text);
    font-weight: 600;
    margin: 2.2em 0 0.6em;
}
.gs-post-apple .gs-post-content h3 {
    font-family: var(--gs-font-body);
    font-size: 22px;
    line-height: 1.3;
    color: var(--gs-apple-text);
    font-weight: 700;
    margin: 1.8em 0 0.5em;
    letter-spacing: -0.01em;
}
.gs-post-apple .gs-post-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 1.5em 0 0.4em;
    color: var(--gs-apple-text);
}
.gs-post-apple .gs-post-content a {
    color: var(--gs-apple-accent);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
    transition: opacity 0.2s;
}
.gs-post-apple .gs-post-content a:hover { opacity: 0.7; }
.gs-post-apple .gs-post-content ul,
.gs-post-apple .gs-post-content ol {
    margin: 0 0 1.4em;
    padding-left: 28px;
}
.gs-post-apple .gs-post-content li { margin-bottom: 0.5em; }
.gs-post-apple .gs-post-content li::marker { color: var(--gs-apple-accent); }
.gs-post-apple .gs-post-content blockquote {
    border-left: 3px solid var(--gs-apple-accent);
    padding: 4px 0 4px 24px;
    margin: 1.6em 0;
    font-family: var(--gs-font-headline, "Playfair Display", Georgia, serif);
    font-size: 22px;
    line-height: 1.45;
    color: var(--gs-apple-text);
    font-style: italic;
}
.gs-post-apple .gs-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--gs-apple-radius);
    margin: 1.6em auto;
    display: block;
    box-shadow: 0 12px 32px rgba(29, 29, 31, 0.08);
}
.gs-post-apple .gs-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.6em 0;
    font-size: 16px;
}
.gs-post-apple .gs-post-content table th,
.gs-post-apple .gs-post-content table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--gs-apple-divider);
    text-align: left;
}
.gs-post-apple .gs-post-content table th {
    font-weight: 600;
    color: var(--gs-apple-text);
    background: var(--gs-apple-bg-tint);
}
.gs-post-apple .gs-post-content code {
    background: var(--gs-apple-bg-tint);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}
.gs-post-apple .gs-post-content hr {
    border: 0;
    border-top: 1px solid var(--gs-apple-divider);
    margin: 2.4em 0;
}

/* The injected messenger CTA inside content has its own .gs-msg-cta block
   already, just give it some breathing room from the body. */
.gs-post-apple .gs-post-content .gs-msg-cta {
    margin-top: 64px;
    border-radius: var(--gs-apple-radius);
}

/* Aside */
.gs-post-apple .gs-post-aside {
    position: sticky;
    top: 120px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.gs-post-apple .gs-aside-block {
    background: var(--gs-apple-bg-tint);
    border-radius: var(--gs-apple-radius);
    padding: 24px;
}
.gs-post-apple .gs-aside-title {
    font-family: var(--gs-font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gs-apple-mute);
    margin: 0 0 14px;
}
/* Search widget - Apple-style pill with circular icon-button (rev. 2026-04-25 v3) */
.gs-post-apple .gs-aside-search .search-form,
.gs-post-apple .gs-aside-search .wp-block-search__inside-wrapper {
    display: flex;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--gs-apple-divider);
    border-radius: 999px;
    padding: 5px 5px 5px 16px;
    align-items: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.gs-post-apple .gs-aside-search .search-form:focus-within,
.gs-post-apple .gs-aside-search .wp-block-search__inside-wrapper:focus-within {
    border-color: var(--gs-apple-text);
    box-shadow: 0 0 0 3px rgba(29, 29, 31, 0.08);
}

/* GeneratePress wraps input in <label>; let it flex-stretch */
.gs-post-apple .gs-aside-search .search-form > label {
    flex: 1;
    display: flex;
    align-items: center;
    margin: 0;
    min-width: 0;
}

.gs-post-apple .gs-aside-search input[type="search"],
.gs-post-apple .gs-aside-search .search-field,
.gs-post-apple .gs-aside-search .wp-block-search__input {
    flex: 1;
    width: 100%;
    border: 0;
    background: transparent;
    padding: 8px 0;
    font-size: 15px;
    font-family: var(--gs-font-body);
    color: var(--gs-apple-text);
    outline: none;
    min-width: 0;
    box-shadow: none !important;
}
.gs-post-apple .gs-aside-search input[type="search"]::placeholder,
.gs-post-apple .gs-aside-search .search-field::placeholder {
    color: var(--gs-apple-mute);
    opacity: 1;
}

/* Submit - fixed-size circular icon button (no padding-driven sizing) */
.gs-post-apple .gs-aside-search button[type="submit"],
.gs-post-apple .gs-aside-search .search-submit,
.gs-post-apple .gs-aside-search input[type="submit"],
.gs-post-apple .gs-aside-search .wp-block-search__button {
    background: var(--gs-apple-text);
    color: #fff;
    border: 0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: var(--gs-font-body);
    transition: background 0.2s ease, transform 0.15s ease;
    line-height: 0;
    box-shadow: none;
}
.gs-post-apple .gs-aside-search button[type="submit"]:hover,
.gs-post-apple .gs-aside-search .search-submit:hover,
.gs-post-apple .gs-aside-search input[type="submit"]:hover,
.gs-post-apple .gs-aside-search .wp-block-search__button:hover {
    background: var(--gs-apple-accent);
    transform: scale(1.04);
}
.gs-post-apple .gs-aside-search button[type="submit"]:active,
.gs-post-apple .gs-aside-search .search-submit:active {
    transform: scale(0.96);
}

/* Inside the button: GeneratePress uses .gp-icon span wrapping an SVG with
   width="1em" - force a real visible size and white fill. */
.gs-post-apple .gs-aside-search .search-submit .gp-icon,
.gs-post-apple .gs-aside-search .search-submit svg,
.gs-post-apple .gs-aside-search .wp-block-search__button svg {
    display: block;
    width: 16px;
    height: 16px;
    color: #fff;
    fill: currentColor;
}
.gs-post-apple .gs-aside-search .search-submit .gp-icon svg {
    width: 16px;
    height: 16px;
}

/* Block-search variants: hide WP-injected text label "Search" if any */
.gs-post-apple .gs-aside-search .wp-block-search__label {
    display: none;
}

.gs-post-apple .gs-recent-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.gs-post-apple .gs-recent-list li {
    border-top: 1px solid var(--gs-apple-divider);
}
.gs-post-apple .gs-recent-list li:first-child {
    border-top: 0;
}
.gs-post-apple .gs-recent-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 0;
    color: var(--gs-apple-text);
    text-decoration: none;
    transition: color 0.2s;
}
.gs-post-apple .gs-recent-link:hover {
    color: var(--gs-apple-accent);
}
.gs-post-apple .gs-recent-list li.is-current .gs-recent-link {
    color: var(--gs-apple-accent);
    pointer-events: none;
    cursor: default;
}
.gs-post-apple .gs-recent-list li.is-current .gs-recent-title::before {
    content: "→ ";
    margin-right: 2px;
}
.gs-post-apple .gs-recent-title {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 500;
    color: inherit;
}
.gs-post-apple .gs-recent-date {
    font-size: 12px;
    color: var(--gs-apple-mute);
    text-transform: lowercase;
}

/* Tablet + mobile: stack aside under content (after the auto CTA) */
@media (max-width: 1024px) {
    .gs-post-apple .gs-post-layout {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .gs-post-apple .gs-post-aside {
        position: static;
        max-width: 720px;
        margin: 0 auto;
        width: 100%;
    }
}
@media (max-width: 640px) {
    .gs-post-apple .gs-post-hero { padding: 64px 20px 40px; }
    .gs-post-apple .gs-post-cover { padding: 0 16px; margin: -16px auto 40px; }
    .gs-post-apple .gs-post-layout { padding: 0 20px; gap: 40px; margin-bottom: 64px; }
    .gs-post-apple .gs-post-content { font-size: 17px; }
    .gs-post-apple .gs-post-content blockquote { font-size: 19px; padding-left: 16px; }
}

/* Hide the legacy GeneratePress sidebar/footer-comments on .single-post pages
   to make sure nothing competes with our custom layout. */
body.single.single-post #right-sidebar,
body.single.single-post .comments-area,
body.single.single-post .post-navigation {
    display: none;
}

/* === Blog FAQ block (Apple accordion style) =========================== */
.gs-post-apple .gs-post-content .gs-faq-block {
    border-top: 1px solid var(--gs-apple-divider);
    margin-top: 24px;
}
.gs-post-apple .gs-post-content .gs-faq-block h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding: 22px 36px 22px 0;
    border-bottom: 1px solid var(--gs-apple-divider);
    color: var(--gs-apple-text);
    cursor: default;
    position: relative;
    line-height: 1.4;
}
.gs-post-apple .gs-post-content .gs-faq-block h3 + p {
    margin: -1px 0 0;
    padding: 0 0 22px;
    border-bottom: 1px solid var(--gs-apple-divider);
    color: var(--gs-apple-mute);
    font-size: 17px;
    line-height: 1.65;
}

/* Optional <details>/<summary> accordion variant */
.gs-post-apple .gs-post-content details {
    border-bottom: 1px solid var(--gs-apple-divider);
    padding: 0;
    margin: 0;
}
.gs-post-apple .gs-post-content details summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 36px 22px 0;
    font-weight: 600;
    font-size: 18px;
    color: var(--gs-apple-text);
    position: relative;
}
.gs-post-apple .gs-post-content details summary::-webkit-details-marker { display: none; }
.gs-post-apple .gs-post-content details summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: var(--gs-apple-mute);
    transition: transform 0.25s;
    line-height: 1;
}
.gs-post-apple .gs-post-content details[open] summary::after {
    content: "−";
}
.gs-post-apple .gs-post-content details > p,
.gs-post-apple .gs-post-content details > div {
    margin: 0 0 22px;
    color: var(--gs-apple-mute);
    font-size: 17px;
    line-height: 1.65;
}

/* Image placeholders rendered as visible hint blocks (debug aid until
   actual images are uploaded). When real <img> replaces them, this is moot. */
.gs-post-apple .gs-post-content .gs-img-placeholder {
    display: block;
    background: var(--gs-apple-bg-tint);
    border: 1px dashed var(--gs-apple-divider);
    border-radius: var(--gs-apple-radius);
    padding: 56px 24px;
    text-align: center;
    color: var(--gs-apple-mute);
    font-size: 14px;
    margin: 1.6em 0;
}

/* Highlight last update / "actual on" inline */
.gs-post-apple .gs-post-content .gs-actual-on {
    display: inline-block;
    background: var(--gs-apple-bg-tint);
    color: var(--gs-apple-mute);
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
}

/* === Inline figure inside blog post (Apple style) ====================== */
.gs-post-apple .gs-post-content .gs-post-figure {
    margin: 2.4em 0;
    padding: 0;
}
.gs-post-apple .gs-post-content .gs-post-figure img {
    width: 100%;
    height: auto;
    border-radius: var(--gs-apple-radius);
    display: block;
    box-shadow: 0 16px 40px rgba(29, 29, 31, 0.1);
    margin: 0;
}
.gs-post-apple .gs-post-content .gs-post-figure figcaption {
    margin: 12px 0 0;
    font-size: 14px;
    color: var(--gs-apple-mute);
    text-align: center;
    font-style: italic;
    line-height: 1.5;
}

/* === Search results page (Apple style) - added 2026-04-25 ============= */

.gs-search.gs-post-apple { display: block; }

.gs-search-hero {
    background: var(--gs-apple-bg-tint);
    padding: clamp(72px, 10vw, 128px) 24px clamp(56px, 8vw, 96px);
    text-align: center;
    border-bottom: 1px solid var(--gs-apple-divider);
}
.gs-search-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}
.gs-search-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gs-apple-mute);
    font-family: var(--gs-font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.gs-search-meta-icon {
    width: 14px;
    height: 14px;
}
.gs-search-title {
    font-family: var(--gs-font-headline, "Playfair Display", Georgia, serif);
    font-weight: 600;
    font-size: clamp(34px, 5.6vw, 60px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--gs-apple-text);
    margin: 0 0 24px;
}
.gs-search-q {
    color: var(--gs-apple-accent);
    font-style: italic;
}
.gs-search-summary {
    font-family: var(--gs-font-body);
    font-size: clamp(16px, 1.7vw, 19px);
    line-height: 1.5;
    color: var(--gs-apple-mute);
    margin: 0 0 32px;
}
.gs-search-summary strong {
    color: var(--gs-apple-text);
    font-weight: 600;
}

/* In-hero search form - bigger pill */
.gs-search-form {
    display: flex;
    gap: 6px;
    max-width: 560px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--gs-apple-divider);
    border-radius: 999px;
    padding: 6px 6px 6px 24px;
    align-items: center;
    box-shadow: 0 8px 24px rgba(29, 29, 31, 0.06);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.gs-search-form:focus-within {
    border-color: var(--gs-apple-text);
    box-shadow: 0 8px 24px rgba(29, 29, 31, 0.12);
}
.gs-search-form-input {
    flex: 1;
    display: flex;
    align-items: center;
    margin: 0;
    min-width: 0;
}
.gs-search-form-input input[type="search"] {
    flex: 1;
    width: 100%;
    border: 0;
    background: transparent;
    padding: 12px 0;
    font-size: 16px;
    font-family: var(--gs-font-body);
    color: var(--gs-apple-text);
    outline: none;
    box-shadow: none !important;
}
.gs-search-form-input input::placeholder {
    color: var(--gs-apple-mute);
    opacity: 1;
}
.gs-search-form-btn {
    background: var(--gs-apple-text);
    color: #fff;
    border: 0;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    line-height: 0;
}
.gs-search-form-btn:hover {
    background: var(--gs-apple-accent);
    transform: scale(1.05);
}
.gs-search-form-btn:active { transform: scale(0.95); }
.gs-search-form-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Layout: results column + aside */
.gs-search-layout {
    max-width: 1180px;
    margin: clamp(48px, 6vw, 72px) auto clamp(72px, 8vw, 120px);
    padding: 0 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 80px;
    align-items: start;
}

.gs-search-content { min-width: 0; }

.gs-search-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.gs-search-item {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    padding: 32px 0;
    border-top: 1px solid var(--gs-apple-divider);
    align-items: start;
}
.gs-search-item--no-thumb {
    grid-template-columns: 1fr;
}
.gs-search-item:first-child { border-top: 0; padding-top: 0; }
.gs-search-item-thumb {
    display: block;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 4 / 3;
    background: var(--gs-apple-bg-tint);
    position: relative;
}
.gs-search-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.gs-search-item:hover .gs-search-item-thumb img { transform: scale(1.04); }
.gs-search-item-body { display: flex; flex-direction: column; min-width: 0; }
.gs-search-item-type {
    display: inline-block;
    align-self: flex-start;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gs-apple-accent);
    background: rgba(199, 91, 57, 0.08);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
}
.gs-search-item-title {
    font-family: var(--gs-font-headline, "Playfair Display", Georgia, serif);
    font-weight: 600;
    font-size: clamp(22px, 2.2vw, 28px);
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin: 0 0 12px;
    color: var(--gs-apple-text);
}
.gs-search-item-title a {
    color: inherit;
    text-decoration: none;
    border: 0;
}
.gs-search-item-title a:hover { color: var(--gs-apple-accent); }
.gs-search-item-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gs-apple-mute);
    margin: 0 0 16px;
}
.gs-search-item-excerpt mark,
.gs-search-item-title mark {
    background: rgba(199, 91, 57, 0.18);
    color: var(--gs-apple-text);
    padding: 0 4px;
    border-radius: 4px;
}
.gs-search-item-more {
    align-self: flex-start;
    color: var(--gs-apple-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 0 !important;
    padding: 0;
    transition: gap 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.gs-search-item-more:hover { gap: 8px; }

/* Pagination */
.gs-search-pagination {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--gs-apple-divider);
    text-align: center;
}
.gs-search-pagination .nav-links {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.gs-search-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--gs-apple-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: background 0.2s;
}
.gs-search-pagination .page-numbers:hover { background: var(--gs-apple-bg-tint); }
.gs-search-pagination .page-numbers.current {
    background: var(--gs-apple-text);
    color: #fff;
}
.gs-search-pagination .page-numbers.dots { color: var(--gs-apple-mute); }

/* Empty state */
.gs-search-empty {
    text-align: center;
    padding: clamp(56px, 8vw, 96px) 24px;
    background: var(--gs-apple-bg-tint);
    border: 1px solid var(--gs-apple-divider);
    border-radius: var(--gs-apple-radius);
}
.gs-search-empty-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(29, 29, 31, 0.08);
    color: var(--gs-apple-mute);
}
.gs-search-empty-icon svg { width: 32px; height: 32px; }
.gs-search-empty-title {
    font-family: var(--gs-font-headline, "Playfair Display", Georgia, serif);
    font-size: clamp(28px, 3.4vw, 38px);
    font-weight: 600;
    color: var(--gs-apple-text);
    letter-spacing: -0.015em;
    margin: 0 0 16px;
}
.gs-search-empty-lead {
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.6;
    color: var(--gs-apple-mute);
    max-width: 520px;
    margin: 0 auto 32px;
}
.gs-search-empty-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.gs-search-empty-hint {
    margin: 32px 0 0;
    color: var(--gs-apple-mute);
    font-size: 13px;
    letter-spacing: 0.04em;
}

/* Aside tiles for category quick-jump */
.gs-search-tiles {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.gs-search-tiles a {
    display: block;
    padding: 14px 16px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--gs-apple-divider);
    color: var(--gs-apple-text);
    text-decoration: none;
    transition: border-color 0.2s, transform 0.15s;
}
.gs-search-tiles a:hover {
    border-color: var(--gs-apple-text);
    transform: translateY(-1px);
}
.gs-search-tile-label {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: var(--gs-apple-text);
}
.gs-search-tile-desc {
    display: block;
    font-size: 13px;
    color: var(--gs-apple-mute);
    margin-top: 2px;
}

@media (max-width: 1024px) {
    .gs-search-layout {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .gs-search-aside {
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
    }
}
@media (max-width: 640px) {
    .gs-search-hero { padding: 56px 20px 40px; }
    .gs-search-form { padding: 5px 5px 5px 16px; }
    .gs-search-form-btn { width: 38px; height: 38px; }
    .gs-search-layout { padding: 0 20px; gap: 40px; }
    .gs-search-item { grid-template-columns: 1fr; gap: 16px; padding: 24px 0; }
    .gs-search-item-thumb { aspect-ratio: 16 / 9; }
}

/* GeneratePress blanket: hide the legacy sidebar/comments on search page */
body.search #right-sidebar,
body.search .comments-area {
    display: none !important;
}

/* === Static page (about / kontakty / etc) — Apple style ============== */

.gs-page.gs-post-apple { display: block; }

.gs-page-hero {
    background: var(--gs-apple-bg-tint);
    padding: clamp(72px, 10vw, 128px) 24px clamp(48px, 7vw, 80px);
    text-align: center;
    border-bottom: 1px solid var(--gs-apple-divider);
}
.gs-page-hero-inner {
    max-width: 760px;
    margin: 0 auto;
}
.gs-page-title {
    font-family: var(--gs-font-headline, "Playfair Display", Georgia, serif);
    font-weight: 600;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--gs-apple-text);
    margin: 0 0 24px;
}
.gs-page-lead-hero {
    font-family: var(--gs-font-body);
    font-size: clamp(18px, 1.9vw, 22px);
    line-height: 1.55;
    color: var(--gs-apple-mute);
    margin: 0 auto;
    max-width: 640px;
    letter-spacing: -0.003em;
}

/* Optional cover image (rare on static pages) */
.gs-page-cover {
    max-width: 1080px;
    margin: -32px auto 56px;
    padding: 0 24px;
}
.gs-page-cover img {
    width: 100%;
    height: auto;
    border-radius: var(--gs-apple-radius);
    display: block;
    box-shadow: 0 24px 60px rgba(29, 29, 31, 0.12);
}

/* Body — single narrow column, no sidebar */
.gs-page-body {
    max-width: 1180px;
    margin: clamp(48px, 7vw, 88px) auto 0;
    padding: 0 24px;
}
.gs-page-content {
    max-width: 720px;
    margin: 0 auto;
    color: var(--gs-apple-text);
    font-family: var(--gs-font-body);
    font-size: 19px;
    line-height: 1.7;
    letter-spacing: -0.003em;
}

/* Body typography — same scale as blog post but anchored to .gs-page-content */
.gs-page-content > * + * { margin-top: 1.2em; }
.gs-page-content p { margin: 0 0 1.2em; }
.gs-page-content h2 {
    font-family: var(--gs-font-headline, "Playfair Display", Georgia, serif);
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--gs-apple-text);
    font-weight: 600;
    margin: 2em 0 0.6em;
}
.gs-page-content h3 {
    font-family: var(--gs-font-body);
    font-size: 22px;
    line-height: 1.3;
    color: var(--gs-apple-text);
    font-weight: 700;
    margin: 1.6em 0 0.5em;
    letter-spacing: -0.01em;
}
.gs-page-content a {
    color: var(--gs-apple-accent);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
    transition: opacity 0.2s;
}
.gs-page-content a:hover { opacity: 0.7; }
.gs-page-content ul,
.gs-page-content ol {
    margin: 0 0 1.4em;
    padding-left: 28px;
}
.gs-page-content li { margin-bottom: 0.5em; }
.gs-page-content li::marker { color: var(--gs-apple-accent); }
.gs-page-content strong { font-weight: 700; color: var(--gs-apple-text); }
.gs-page-content blockquote {
    border-left: 3px solid var(--gs-apple-accent);
    padding: 4px 0 4px 24px;
    margin: 1.6em 0;
    font-family: var(--gs-font-headline, "Playfair Display", Georgia, serif);
    font-size: 22px;
    line-height: 1.45;
    color: var(--gs-apple-text);
    font-style: italic;
}

/* Lead paragraph (visual hierarchy) — when content starts with .gs-page-lead */
.gs-page-content .gs-page-lead {
    font-size: 22px;
    line-height: 1.5;
    color: var(--gs-apple-text);
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 1.6em;
    padding-bottom: 1.4em;
    border-bottom: 1px solid var(--gs-apple-divider);
}

/* Hide the legacy GP sidebar/comments on .page templates so our
   centered narrow layout doesn't fight an unused sidebar. */
body.page #right-sidebar,
body.page .comments-area {
    display: none !important;
}

/* Car SEO body */
.gs-car-content-wrap {
    max-width: 1180px;
    margin: clamp(48px, 7vw, 84px) auto 0;
    padding: 0 24px;
}
.gs-car-content {
    max-width: 780px;
    color: var(--gs-apple-text);
    font-family: var(--gs-font-body);
    font-size: 18px;
    line-height: 1.72;
    letter-spacing: -0.003em;
}
.gs-car-content > * + * { margin-top: 1.15em; }
.gs-car-content p { margin: 0 0 1.15em; }
.gs-car-content h2 {
    font-family: var(--gs-font-headline, "Playfair Display", Georgia, serif);
    font-size: clamp(27px, 3vw, 36px);
    line-height: 1.18;
    color: var(--gs-apple-text);
    font-weight: 600;
    margin: 1.9em 0 0.55em;
}
.gs-car-content h3 {
    font-family: var(--gs-font-body);
    font-size: 21px;
    line-height: 1.3;
    color: var(--gs-apple-text);
    font-weight: 700;
    margin: 1.5em 0 0.45em;
}
.gs-car-content ul,
.gs-car-content ol {
    margin: 0 0 1.35em;
    padding-left: 26px;
}
.gs-car-content li { margin-bottom: 0.45em; }
.gs-car-content li::marker { color: var(--gs-apple-accent); }
.gs-car-content a {
    color: var(--gs-apple-accent);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}
.gs-car-content a:hover { opacity: 0.75; }

/* Page-level CTA wrapper — same width treatment as on blog posts */
.gs-page .gs-post-cta-wrap {
    max-width: 1180px;
    margin: clamp(56px, 7vw, 88px) auto clamp(64px, 8vw, 96px);
    padding: 0 24px;
}
.gs-page .gs-post-cta-wrap .gs-msg-cta {
    margin: 0;
}

@media (max-width: 640px) {
    .gs-page-hero { padding: 56px 20px 36px; }
    .gs-page-cover { padding: 0 16px; margin: -16px auto 36px; }
    .gs-page-body { padding: 0 20px; margin-top: 32px; }
    .gs-page-content { font-size: 17px; }
    .gs-page-content blockquote { font-size: 19px; padding-left: 16px; }
    .gs-page .gs-post-cta-wrap { padding: 0 16px; margin-bottom: 56px; }
}
