/* Tema Oluşturucu — bileşen variant modifier sınıfları */

.header--centered .header-container--centered {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
    position: relative;
}

.header--centered .site-logo {
    order: 1;
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}

.header--centered .auth-buttons {
    order: 2;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.header--centered .header-mobile-tools {
    order: 2;
    position: absolute;
    left: 0.5rem;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    margin-inline-start: 0;
    justify-content: flex-end;
    z-index: 2;
    pointer-events: none;
}

.header--centered .header-mobile-tools > * {
    pointer-events: auto;
}

.header--centered .mobile-menu-toggle {
    order: 2;
    position: absolute;
    left: 0.25rem;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}

.header--centered .main-nav {
    order: 3;
    flex: 1 1 100%;
    justify-content: center;
}

@media (max-width: 768px) {
    .header--centered .auth-buttons {
        display: none;
    }

    .header--centered .main-nav {
        display: none;
    }
}

/* Header — Acente Showcase (büyük logo sol) */
.header--brand.site-header {
    padding: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    overflow: visible;
}

.header--brand .header-container--brand {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem 1.25rem;
    min-height: 88px;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
    overflow: visible;
    position: relative;
}

.header--brand .site-logo {
    flex-shrink: 0;
    line-height: 0;
}

.header--brand .header-brand-title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: inherit;
    line-height: 1.2;
}

.header--brand .main-nav {
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    min-width: 0;
}

.header--brand .main-nav > a,
.header--brand .main-nav > .menu-item-dropdown > .menu-link,
.header--brand .main-nav > .menu-item-megamenu > .menu-link,
.header--brand .main-nav .menu-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.7rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.25;
    color: var(--gray-700, #374151);
    text-decoration: none;
    background: transparent;
    transition: background 0.15s ease, color 0.15s ease;
}

.header--brand .main-nav > a:hover,
.header--brand .main-nav > .menu-item-dropdown > .menu-link:hover,
.header--brand .main-nav > .menu-item-megamenu > .menu-link:hover,
.header--brand .main-nav .menu-link:hover,
.header--brand .main-nav .menu-item-dropdown:hover > .menu-link,
.header--brand .main-nav .menu-item-megamenu:hover > .menu-link,
.header--brand .main-nav .menu-item-dropdown:focus-within > .menu-link,
.header--brand .main-nav .menu-item-megamenu:focus-within > .menu-link {
    background: var(--gray-100, #f3f4f6);
    color: var(--primary, #ed4b25);
}

.header--brand .main-nav .menu-link svg {
    width: 14px;
    height: 14px;
    opacity: 0.65;
    flex-shrink: 0;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.header--brand .main-nav .menu-item-dropdown:hover > .menu-link svg:last-child,
.header--brand .main-nav .menu-item-megamenu:hover > .menu-link svg:last-child,
.header--brand .main-nav .menu-item-dropdown:focus-within > .menu-link svg:last-child,
.header--brand .main-nav .menu-item-megamenu:focus-within > .menu-link svg:last-child {
    opacity: 1;
    transform: rotate(180deg);
}

/* Brand — klasik dropdown */
.header--brand .main-nav .menu-item-dropdown {
    position: relative;
}

.header--brand .main-nav .menu-dropdown {
    top: calc(100% + 0.35rem);
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-6px);
    min-width: 200px;
    max-width: min(280px, calc(100vw - 2rem));
    padding: 0.35rem;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    margin-top: 0;
    overflow: visible;
}

.header--brand .main-nav .menu-item-dropdown:hover > .menu-dropdown,
.header--brand .main-nav .menu-item-dropdown:focus-within > .menu-dropdown {
    transform: translateX(-50%) translateY(0);
}

/* Brand — 2. seviye (nested) sağa fly-out; 1. seviye konum kurallarını ezme */
.header--brand .main-nav .menu-dropdown.menu-dropdown--nested {
    top: 0;
    left: calc(100% - 2px);
    right: auto;
    margin-top: 0;
    min-width: 180px;
    max-width: min(280px, calc(100vw - 2rem));
    transform: none;
}

.header--brand .main-nav .menu-dropdown-item.has-submenu:hover > .menu-dropdown--nested,
.header--brand .main-nav .menu-dropdown-item.has-submenu:focus-within > .menu-dropdown--nested {
    transform: none;
}

.header--brand .main-nav .menu-dropdown-link {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.7rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 550;
    color: var(--gray-700, #374151);
    white-space: normal;
    line-height: 1.3;
}

.header--brand .main-nav .menu-dropdown-link:hover {
    background: color-mix(in srgb, var(--primary, #ed4b25) 8%, transparent);
    color: var(--primary, #ed4b25);
}

.header--brand .main-nav .menu-dropdown-link svg {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

/* Brand — megamenu: yatay konum JS; CSS dikey animasyon */
.header--brand .main-nav .menu-item-megamenu {
    position: relative;
}

.header--brand .main-nav .menu-megamenu-panel {
    top: calc(100% + 0.35rem);
    right: auto;
    max-width: min(560px, calc(100vw - 2rem));
    min-width: 220px;
    transform: translateY(-6px);
    padding: 1rem 1.15rem;
    gap: 0.75rem 1.15rem;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    grid-template-columns: repeat(var(--mega-cols, 3), minmax(9rem, max-content));
}

.header--brand .main-nav .menu-item-megamenu:hover .menu-megamenu-panel,
.header--brand .main-nav .menu-item-megamenu:focus-within .menu-megamenu-panel,
.header--brand .main-nav .menu-item-megamenu.is-mega-open .menu-megamenu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.header--brand .main-nav .menu-megamenu-col-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gray-500, #6b7280);
    margin: 0 0 0.45rem;
    padding: 0 0.35rem;
}

.header--brand .main-nav .menu-megamenu-link {
    padding: 0.4rem 0.45rem;
    border-radius: 8px;
    gap: 0.5rem;
}

.header--brand .main-nav .menu-megamenu-link:hover {
    background: color-mix(in srgb, var(--primary, #ed4b25) 8%, transparent);
}

.header--brand .main-nav .menu-megamenu-link-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-800, #1f2937);
}

.header--brand .main-nav .menu-megamenu-link:hover .menu-megamenu-link-title {
    color: var(--primary, #ed4b25);
}

.header--brand .main-nav .menu-megamenu-link-sub {
    font-size: 0.7rem;
    color: var(--gray-500, #6b7280);
    margin-top: 0.1rem;
}

.header--brand .main-nav .menu-megamenu-thumb {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.header--brand .main-nav .menu-megamenu-promo {
    width: var(--mega-promo-w, 176px);
    height: var(--mega-promo-h, 220px);
    border-radius: 12px;
    overflow: hidden;
}

.header--brand .main-nav .menu-megamenu-promo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header--brand .auth-buttons--brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.header--brand .auth-buttons--brand .btn-link {
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray-700, #374151);
}

.header--brand .auth-buttons--brand .btn-link:hover {
    background: var(--gray-100, #f3f4f6);
    color: var(--primary, #ed4b25);
}

.header--brand .auth-buttons--brand .btn-primary {
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: none;
}

.header--brand .auth-buttons--brand .user-menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.75rem;
    min-height: 2.35rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.2;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.header--brand .auth-buttons--brand .user-menu-toggle:hover {
    border-color: color-mix(in srgb, var(--primary, #ed4b25) 45%, transparent);
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
}

.header--brand .btn-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.45rem 0.75rem;
    min-height: 2.35rem;
    border-radius: 999px;
    background: var(--primary, #ed4b25);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    box-sizing: border-box;
    box-shadow: none;
    transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.header--brand .btn-header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--primary, #ed4b25) 35%, transparent);
    filter: brightness(1.05);
    color: #fff !important;
}

@media (max-width: 1100px) {
    .header--brand .main-nav .menu-megamenu-panel {
        max-width: min(480px, calc(100vw - 1.5rem));
        padding: 0.85rem 1rem;
        gap: 0.65rem 1rem;
    }
}

@media (max-width: 992px) {
    .header--brand .header-container--brand {
        grid-template-columns: 1fr auto;
        min-height: 72px;
        padding-top: 0.45rem;
        padding-bottom: 0.45rem;
    }

    .header--brand .main-nav,
    .header--brand .auth-buttons--brand {
        display: none;
    }
}

/* Header — Portal */
.header--portal.site-header {
    --portal-blue: var(--primary, #3a7bd5);
    --portal-blue-soft: rgba(var(--primary-rgb, 58, 123, 213), 0.12);
    --portal-blue-line: rgba(var(--primary-rgb, 58, 123, 213), 0.22);
    --portal-text: #333333;
    --portal-rail-w: 268px;
    padding: 0;
    margin: 0;
    border: 0;
    border-top: 1px solid var(--portal-blue-line);
    border-bottom: 1px solid #eef1f5;
    background: #fff;
    box-shadow: none;
    overflow: visible;
    font-family: var(--font-family-nav, 'Montserrat', 'Segoe UI', Tahoma, sans-serif);
}

.header--portal .portal-shell {
    position: relative;
    width: 100%;
    min-height: 78px;
}

.header--portal .portal-bar,
.header--portal .header-container--portal {
    display: grid;
    grid-template-columns: minmax(150px, 1fr) minmax(0, 2.4fr) minmax(250px, 1fr);
    align-items: stretch;
    column-gap: 1.75rem;
    min-height: 78px;
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0.35rem clamp(1rem, 2.2vw, 2.5rem);
    overflow: visible;
    position: relative;
    box-sizing: border-box;
}

.header--portal .portal-bar__slot {
    display: flex;
    align-items: center;
    align-self: stretch;
    min-width: 0;
    width: 100%;
}

.header--portal .portal-bar__slot--logo {
    grid-column: 1;
    justify-content: flex-start;
}

.header--portal .portal-bar__slot--nav {
    grid-column: 2;
    justify-content: center;
    overflow: visible;
}

.header--portal .portal-bar__slot--rail {
    grid-column: 3;
    justify-content: flex-end;
    align-items: stretch;
    align-self: stretch;
}

.header--portal .site-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}

.header--portal .site-logo img {
    max-width: var(--portal-logo-max-w, 200px) !important;
    max-height: var(--portal-logo-max-h, 56px) !important;
    width: auto;
    height: auto;
    object-fit: contain;
}

.header--portal .header-portal-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--primary, #e31e24);
    text-transform: lowercase;
    line-height: 1;
}

.header--portal .main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.15rem 0.5rem;
    width: 100%;
    min-width: 0;
}

.header--portal .main-nav > a,
.header--portal .main-nav > .menu-item-dropdown > .menu-link,
.header--portal .main-nav > .menu-item-megamenu > .menu-link,
.header--portal .main-nav .menu-link {
    display: inline-flex;
    align-items: center;
    gap: 0.18rem;
    padding: 0.55rem 0.55rem;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: var(--portal-text);
    text-decoration: none;
    background: transparent !important;
    transition: color 0.12s ease;
    white-space: nowrap;
}

.header--portal .main-nav > a:hover,
.header--portal .main-nav > .menu-item-dropdown > .menu-link:hover,
.header--portal .main-nav > .menu-item-megamenu > .menu-link:hover,
.header--portal .main-nav .menu-item-dropdown:hover > .menu-link,
.header--portal .main-nav .menu-item-megamenu:hover > .menu-link,
.header--portal .main-nav .menu-link:hover {
    background: transparent !important;
    color: var(--portal-blue);
}

/* Menü başlık ikonlarını gizle; sadece chevron */
.header--portal .main-nav > a > svg:not(:last-child),
.header--portal .main-nav > a > i:not(:last-child),
.header--portal .main-nav > .menu-item-dropdown > .menu-link > svg:not(:last-child),
.header--portal .main-nav > .menu-item-dropdown > .menu-link > i:not(:last-child),
.header--portal .main-nav > .menu-item-megamenu > .menu-link > svg:not(:last-child),
.header--portal .main-nav > .menu-item-megamenu > .menu-link > i:not(:last-child) {
    display: none !important;
}

.header--portal .main-nav .menu-item-dropdown > .menu-link > svg:last-child,
.header--portal .main-nav .menu-item-dropdown > .menu-link > i:last-child,
.header--portal .main-nav .menu-item-megamenu > .menu-link > svg:last-child,
.header--portal .main-nav .menu-item-megamenu > .menu-link > i:last-child {
    width: 11px !important;
    height: 11px !important;
    opacity: 0.55;
    margin-left: 0.05rem;
    flex-shrink: 0;
}

.header--portal .main-nav .menu-item-dropdown,
.header--portal .main-nav .menu-item-megamenu {
    position: relative;
}

.header--portal .main-nav .menu-dropdown {
    top: calc(100% + 0.4rem);
    left: 0;
    right: auto;
    transform: none;
    min-width: 210px;
    padding: 0.4rem;
    border-radius: 8px;
    border: 1px solid #e5eaf1;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
    background: #fff;
    overflow: visible;
}

.header--portal .main-nav .menu-item-dropdown:hover > .menu-dropdown,
.header--portal .main-nav .menu-item-dropdown:focus-within > .menu-dropdown {
    transform: none;
}

/* Portal — 2. seviye (nested) sağa fly-out; 1. seviye konum kurallarını ezme */
.header--portal .main-nav .menu-dropdown.menu-dropdown--nested {
    top: 0;
    left: calc(100% - 2px);
    right: auto;
    margin-top: 0;
    min-width: 180px;
    transform: none;
}

.header--portal .main-nav .menu-dropdown-item.has-submenu:hover > .menu-dropdown--nested,
.header--portal .main-nav .menu-dropdown-item.has-submenu:focus-within > .menu-dropdown--nested {
    transform: none;
}

.header--portal .main-nav .menu-dropdown-link {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.7rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--portal-text);
}

.header--portal .main-nav .menu-dropdown-link:hover {
    background: var(--portal-blue-soft);
    color: var(--portal-blue);
}

/* Sağ kolon: kırmızı sekme header tepesine yapışık; dil seçici absolute */
.header--portal .portal-rail {
    position: relative;
    top: auto;
    right: auto;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    width: max-content;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
    margin: -0.35rem 0;
    margin-left: auto;
    pointer-events: none;
}

.header--portal .portal-rail__tab,
.header--portal .portal-rail__meta,
.header--portal .portal-rail__help,
.header--portal .portal-rail__lang,
.header--portal .lang-switcher,
.header--portal .lang-switcher__btn,
.header--portal .lang-switcher__menu,
.header--portal .lang-switcher__menu a {
    pointer-events: auto;
}

.header--portal .portal-rail__lang {
    position: absolute;
    top: 0.35rem;
    right: 100%;
    margin-right: 0.45rem;
    z-index: 80;
    display: flex;
    justify-content: flex-end;
    width: auto;
    max-width: none;
    padding: 0;
}

.header--portal .portal-rail__tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    width: 100%;
    min-height: 2.75rem;
    margin: 0;
    padding: 0.7rem 1.2rem;
    background: var(--portal-blue-soft);
    border: 0;
    border-radius: 0 0 22px 22px;
    box-sizing: border-box;
    order: -1;
}

.header--portal .portal-rail__tab-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--portal-blue);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.2;
}

.header--portal .portal-rail__tab-link:hover {
    color: var(--primary-dark, var(--portal-blue));
}

.header--portal .portal-rail__tab-link svg,
.header--portal .portal-rail__tab-link i {
    width: 15px !important;
    height: 15px !important;
    flex-shrink: 0;
    color: var(--portal-blue);
    stroke-width: 1.6;
}

.header--portal .portal-rail__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    width: 100%;
    margin-top: auto;
    padding: 0.45rem 1.2rem 0.55rem;
    box-sizing: border-box;
}

.header--portal .portal-rail__meta-link,
.header--portal .portal-rail__meta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0;
    border: 0;
    background: transparent;
    font: inherit;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--portal-text);
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    line-height: 1.2;
}

.header--portal .portal-rail__meta-link:hover,
.header--portal .portal-rail__meta-btn:hover {
    color: var(--portal-blue);
}

.header--portal .portal-rail__meta-btn svg,
.header--portal .portal-rail__meta-btn i {
    width: 11px !important;
    height: 11px !important;
    opacity: 0.55;
}

.header--portal .portal-rail__help {
    position: relative;
}

.header--portal .portal-rail__help::before {
    content: '';
    position: absolute;
    left: -6px;
    right: -6px;
    top: 100%;
    height: 0.6rem;
    z-index: 1199;
}

.header--portal .portal-rail__help-menu {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    left: auto;
    transform: none;
    min-width: 196px;
    padding: 0.4rem;
    background: #fff;
    border: 1px solid #e5eaf1;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.12s ease, visibility 0.12s ease;
    z-index: 1200;
}

.header--portal .portal-rail__help:hover .portal-rail__help-menu,
.header--portal .portal-rail__help:focus-within .portal-rail__help-menu,
.header--portal .portal-rail__help.is-open .portal-rail__help-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header--portal .portal-rail__help:hover .portal-rail__meta-btn,
.header--portal .portal-rail__help:focus-within .portal-rail__meta-btn,
.header--portal .portal-rail__help.is-open .portal-rail__meta-btn {
    color: var(--portal-blue);
}

.header--portal .portal-rail__help-menu a {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.6rem 0.7rem;
    border-radius: 9px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    white-space: nowrap;
    background: transparent;
}

.header--portal .portal-rail__help-menu a:hover {
    background: rgba(var(--primary-rgb, 58, 123, 213), 0.1);
    color: var(--portal-blue);
}

.header--portal .portal-rail__help-menu svg,
.header--portal .portal-rail__help-menu i {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0;
    color: var(--portal-blue);
}

.header--portal .portal-rail__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--portal-text);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.header--portal .portal-rail__phone:hover {
    color: var(--portal-blue);
}

.header--portal .portal-rail__phone svg,
.header--portal .portal-rail__phone i {
    width: 14px !important;
    height: 14px !important;
    color: var(--portal-blue);
}

@media (max-width: 1280px) {
    .header--portal .portal-bar,
    .header--portal .header-container--portal {
        grid-template-columns: minmax(130px, 0.9fr) minmax(0, 2.6fr) minmax(230px, 1fr);
        column-gap: 1.25rem;
    }

    .header--portal .portal-rail__tab {
        gap: 0.75rem;
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .header--portal .portal-rail__meta {
        gap: 0.75rem;
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }
}

@media (max-width: 1180px) {
    .header--portal .portal-shell {
        min-height: 64px;
    }

    .header--portal .portal-bar,
    .header--portal .header-container--portal {
        display: flex;
        grid-template-columns: none;
        min-height: 64px;
        padding: 0.5rem 1rem;
        justify-content: space-between;
    }

    .header--portal .portal-bar__slot--nav,
    .header--portal .main-nav,
    .header--portal .portal-rail {
        display: none;
    }

    .header--portal .portal-bar__slot--rail {
        display: flex;
        width: auto;
        justify-content: flex-end;
        align-items: center;
    }

    .header--portal .mobile-menu-toggle {
        display: inline-flex;
    }
}

/* Header — kompakt */
.tour-card--minimal .tour-card-route,
.tour-card--minimal .tour-card-badges__left,
.tour-card--minimal .tour-card-dates-btn,
.tour-card--minimal .fav-btn {
    display: none;
}

.tour-card--minimal .tour-card-content {
    padding: 0.75rem;
}

.tour-card--minimal .tour-card-title {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.tour-card--minimal .tour-card-footer {
    margin-top: 0.5rem;
}

.hotel-card--minimal .hotel-card__meta,
.hotel-card--minimal .hotel-card__description,
.hotel-card--minimal .hotel-card__top {
    display: none;
}

.hotel-card--minimal .hotel-card__content {
    padding: 0.75rem;
}

.hotel-card--minimal .hotel-card__title {
    font-size: 0.95rem;
}

/* Header — kompakt */
.header--compact .header-container {
    min-height: 56px;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}

.header--compact .site-logo img {
    max-height: 48px !important;
}

/* ========== Mobil sidebar menü stilleri (belirgin fark) ========== */

/* KOMPAKT: dar panel, koyu marka başlık, sıkı satırlar */
body.theme-mobile-menu-compact .mobile-menu,
.mobile-menu.mobile-menu--compact {
    width: min(72vw, 280px);
    max-width: 280px;
    box-shadow: -8px 0 28px rgba(15, 23, 42, 0.22);
}

body.theme-mobile-menu-compact .mobile-menu-header,
.mobile-menu.mobile-menu--compact .mobile-menu-header {
    padding: 0.7rem 0.9rem;
    background: var(--primary, #203060);
    border-bottom: none;
}

body.theme-mobile-menu-compact .mobile-menu-title,
.mobile-menu.mobile-menu--compact .mobile-menu-title {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
}

body.theme-mobile-menu-compact .mobile-menu-close,
.mobile-menu.mobile-menu--compact .mobile-menu-close {
    color: #fff;
}

body.theme-mobile-menu-compact .mobile-menu-close:hover,
.mobile-menu.mobile-menu--compact .mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

body.theme-mobile-menu-compact .mobile-menu-content,
.mobile-menu.mobile-menu--compact .mobile-menu-content {
    padding: 0.25rem 0;
}

body.theme-mobile-menu-compact .mobile-menu a,
.mobile-menu.mobile-menu--compact .mobile-menu a {
    padding: 0.55rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    gap: 0.45rem;
    border-left-width: 2px;
}

body.theme-mobile-menu-compact .mobile-menu a svg,
.mobile-menu.mobile-menu--compact .mobile-menu a svg {
    width: 16px;
    height: 16px;
}

body.theme-mobile-menu-compact .mobile-menu-submenu a,
.mobile-menu.mobile-menu--compact .mobile-menu-submenu a {
    padding: 0.45rem 0.9rem 0.45rem 1.85rem;
    font-size: 0.75rem;
}

body.theme-mobile-menu-compact .mobile-menu-toggle-arrow,
.mobile-menu.mobile-menu--compact .mobile-menu-toggle-arrow {
    right: 0.75rem;
}

body.theme-mobile-menu-compact .mobile-megamenu-group-label,
.mobile-menu.mobile-menu--compact .mobile-megamenu-group-label {
    padding: 0.4rem 0.9rem 0.15rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary, #203060);
}

/* SADE: soldan açılır + lacivert marka şeridi (klasikten net ayrılır) */
body.theme-mobile-menu-simple .mobile-menu,
.mobile-menu.mobile-menu--simple {
    right: auto !important;
    left: 0;
    width: min(88vw, 320px);
    max-width: 320px;
    border-radius: 0 18px 18px 0;
    box-shadow: 10px 0 36px rgba(15, 23, 42, 0.22);
    transform: translate3d(-100%, 0, 0);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.32s;
}

body.theme-mobile-menu-simple .mobile-menu.active,
.mobile-menu.mobile-menu--simple.active {
    right: auto !important;
    left: 0;
    transform: translate3d(0, 0, 0);
}

body.theme-mobile-menu-simple .mobile-menu-header,
.mobile-menu.mobile-menu--simple .mobile-menu-header {
    padding: 1.15rem 1.2rem;
    background: var(--primary, #203060);
    border-bottom: 3px solid var(--accent, #e8c810);
}

body.theme-mobile-menu-simple .mobile-menu-title,
.mobile-menu.mobile-menu--simple .mobile-menu-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.01em;
}

body.theme-mobile-menu-simple .mobile-menu-close,
.mobile-menu.mobile-menu--simple .mobile-menu-close {
    color: #fff;
}

body.theme-mobile-menu-simple .mobile-menu-close:hover,
.mobile-menu.mobile-menu--simple .mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

body.theme-mobile-menu-simple .mobile-menu-content,
.mobile-menu.mobile-menu--simple .mobile-menu-content {
    padding: 0.5rem 0.75rem 1.25rem;
}

body.theme-mobile-menu-simple .mobile-menu a,
.mobile-menu.mobile-menu--simple .mobile-menu a {
    margin: 0.15rem 0;
    padding: 0.75rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-left: none;
    border-radius: 10px;
    border-bottom: none;
}

body.theme-mobile-menu-simple .mobile-menu a:hover,
body.theme-mobile-menu-simple .mobile-menu a.active,
.mobile-menu.mobile-menu--simple .mobile-menu a:hover,
.mobile-menu.mobile-menu--simple .mobile-menu a.active {
    background: color-mix(in srgb, var(--primary, #203060) 10%, #fff);
    color: var(--primary, #203060);
    border-left-color: transparent;
}

body.theme-mobile-menu-simple .mobile-menu-submenu,
.mobile-menu.mobile-menu--simple .mobile-menu-submenu {
    background: transparent;
    margin: 0 0 0.25rem;
    border-radius: 10px;
}

body.theme-mobile-menu-simple .mobile-menu-submenu a,
.mobile-menu.mobile-menu--simple .mobile-menu-submenu a {
    padding-left: 1.35rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-600, #4b5563);
}

body.theme-mobile-menu-simple .mobile-megamenu-group-label,
.mobile-menu.mobile-menu--simple .mobile-megamenu-group-label {
    padding: 0.75rem 0.9rem 0.2rem;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400, #9ca3af);
}

body.theme-mobile-menu-simple .mobile-menu-link--payment,
.mobile-menu.mobile-menu--simple .mobile-menu-link--payment {
    background: var(--primary, #203060) !important;
    color: #fff !important;
    margin-bottom: 0.5rem;
}

body.theme-mobile-menu-simple .mobile-menu-item-has-children > a,
.mobile-menu.mobile-menu--simple .mobile-menu-item-has-children > a {
    background: var(--gray-50, #f9fafb);
}

/* Header — sade / işlevsel (klasikten daha sıkı, menü + aksiyon odaklı) */
.header--simple.site-header {
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}

.header--simple .header-container {
    min-height: 52px;
    padding: 0.4rem 1rem;
    gap: 0.75rem;
}

.header--simple .site-logo {
    flex-shrink: 0;
}

.header--simple .site-logo img {
    max-height: 40px !important;
    max-width: 140px !important;
}

@media (min-width: 768px) {
    .header--simple .main-nav {
        flex: 1 1 auto;
        justify-content: flex-start;
        gap: 0.35rem 1rem;
        flex-wrap: wrap;
        margin-left: 0.5rem;
    }

    .header--simple .main-nav a,
    .header--simple .main-nav .menu-link {
        font-size: 0.8125rem;
        font-weight: 600;
        padding: 0.35rem 0.15rem;
        white-space: nowrap;
    }
}

.header--simple .auth-buttons {
    gap: 0.4rem;
    flex-shrink: 0;
}

.header--simple .auth-buttons .btn-online-payment,
.header--simple .auth-buttons .btn-login,
.header--simple .auth-buttons .btn-register,
.header--simple .user-menu-toggle {
    padding: 0.4rem 0.7rem;
    font-size: 0.78rem;
    border-radius: 8px;
}

.header--simple .user-menu-toggle span {
    max-width: 9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .header--simple .header-container {
        min-height: 48px;
        padding: 0.35rem 0.75rem;
    }

    .header--simple .site-logo img {
        max-height: 36px !important;
        max-width: 120px !important;
    }
}

/* Header — şeffaf (hero üstü) */
.homepage .header--transparent.site-header {
    background: rgba(255, 255, 255, 0.82) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: none;
}

/* Arama — dikey */
.home-search-widget--stacked .home-search-widget__fields {
    flex-direction: column;
    align-items: stretch;
}

.home-search-widget--stacked .home-search-widget__field--submit {
    width: 100%;
}

.home-search-widget--stacked .home-search-widget__submit-btn-icon {
    width: 100%;
    border-radius: 10px;
    height: 44px;
}

/* Tur kartı — yatay */
.tour-card--horizontal {
    flex-direction: row;
    align-items: stretch;
    min-height: 172px;
}

.tour-card--horizontal .tour-card-image {
    width: 40%;
    min-width: 148px;
    max-width: 210px;
    height: auto;
    flex-shrink: 0;
    align-self: stretch;
}

.tour-card--horizontal .tour-card-image-link,
.tour-card--horizontal .tour-card-image img,
.tour-card--horizontal .tour-card-image-placeholder {
    height: 100%;
    min-height: 172px;
}

.tour-card--horizontal .tour-card-badges {
    display: none;
}

.tour-card--horizontal .tour-card-horizontal-duration {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 2;
}

.tour-card--horizontal .tour-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    min-width: 0;
}

.tour-card--horizontal .tour-card-main {
    min-height: 3.5rem;
}

.tour-card--horizontal .tour-card-title a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tour-card--horizontal .tour-card-route {
    min-height: 0;
    font-size: 0.78rem;
    color: var(--gray-500);
}

.tour-card--horizontal .tour-card-footer {
    padding-top: 10px;
    border-top-color: var(--gray-100);
}

.tour-card--horizontal .tour-card-cta {
    padding: 8px 14px;
}

@media (max-width: 640px) {
    .tour-card--horizontal {
        flex-direction: column;
        min-height: 0;
    }

    .tour-card--horizontal .tour-card-image {
        width: 100%;
        max-width: none;
        height: 160px;
    }

    .tour-card--horizontal .tour-card-image-link,
    .tour-card--horizontal .tour-card-image img,
    .tour-card--horizontal .tour-card-image-placeholder {
        min-height: 160px;
        height: 160px;
    }
}

/* Tur / otel kartı — katalog liste (detaylı yatay) */
.cards-grid .tour-card--listing,
.tours-grid .tour-card--listing,
.cards-grid .hotel-card--listing,
.hotels-grid .hotel-card--listing {
    grid-column: 1 / -1;
    /* overflow:visible + default min-width:auto şişirir; sağ gutter kaybolur ("sağa dayalı") */
    min-width: 0;
    max-width: 100%;
}

/* Otel arşiv sayfasındaki genel .hotel-card hover/transform kurallarını listing için nötralize et */
.hotel-card.hotel-card--listing {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: auto;
    transform: none;
}
.hotel-card.hotel-card--listing:hover {
    transform: none;
}

.tour-card--listing {
    flex-direction: column;
    height: auto;
    /* details dropdown için visible; grid min-content için min-width:0 zorunlu */
    overflow: visible;
    min-width: 0;
    max-width: 100%;
    border-color: #e5e7eb;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.tour-card--listing:hover {
    transform: none;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.1);
}

.tour-card-listing__body {
    display: grid;
    grid-template-columns: minmax(140px, 200px) minmax(0, 1fr) minmax(140px, 168px);
    gap: 16px;
    padding: 14px 14px 12px;
    align-items: stretch;
}

.tour-card-listing__media {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    height: auto;
    min-height: 0;
    align-self: start;
    border-radius: 10px;
    overflow: hidden;
    background: var(--gray-100, #f3f4f6);
}

.tour-card-listing__media-link,
.tour-card-listing__media .tour-card-image-placeholder {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
}

.tour-card-listing__media img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
}

.hotel-card-gallery {
    position: absolute;
    inset: 0;
}
.hotel-card-gallery__track {
    position: absolute;
    inset: 0;
}
.hotel-card-gallery__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}
.hotel-card-gallery__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}
.hotel-card-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 24, 39, .55);
    color: #fff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .15s ease;
}
.tour-card-listing__media:hover .hotel-card-gallery__nav,
.tour-card-listing__media:focus-within .hotel-card-gallery__nav {
    opacity: 1;
}
.hotel-card-gallery__nav--prev { left: 6px; }
.hotel-card-gallery__nav--next { right: 6px; }
.hotel-card-gallery__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 4px;
    pointer-events: none;
}
.hotel-card-gallery__dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,.45);
}
.hotel-card-gallery__dot.is-active {
    background: #fff;
}

.tour-card-listing__promo-badge {
    position: absolute;
    top: 10px;
    right: 8px;
    z-index: 2;
    max-width: calc(100% - 16px);
    padding: 7px 10px 8px;
    background: var(--listing-card-badge-bg, var(--accent, var(--primary, #ed4b25)));
    color: var(--listing-card-badge-text, #fff);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
    border-radius: 6px 6px 6px 2px;
    box-shadow: 0 2px 8px rgba(var(--primary-rgb, 237, 75, 37), 0.28);
}

.tour-card-listing__promo-badge--days {
    background: var(--listing-card-badge-bg, var(--primary, #ed4b25));
    box-shadow: 0 2px 8px rgba(var(--primary-rgb, 237, 75, 37), 0.35);
}

.tour-card-listing__info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tour-card-listing__title {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.35;
}

.tour-card-listing__title a {
    color: #1f2937;
    text-decoration: none;
    font-weight: 700;
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tour-card-listing__title a:hover {
    color: var(--primary, #ed4b25);
}

.tour-card-listing__excerpt {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.45;
    color: #6b7280;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-card-listing__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tour-card-listing__chip {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 4px 10px;
    border-radius: 6px;
    background: var(--listing-card-chip-bg, rgba(var(--primary-rgb, 237, 75, 37), 0.12));
    color: var(--listing-card-chip-text, var(--primary, #ed4b25));
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tour-card-listing__meta-row--amenities {
    align-items: start;
}

.tour-card-listing__meta-row--amenities dd {
    min-width: 0;
}

.tour-card-listing__chips--amenities {
    margin-top: 0;
}

.tour-card-listing__chip--amenity,
.tour-card-listing__chip--more {
    background: var(--listing-card-amenity-chip-bg, #f1f5f9);
    color: var(--listing-card-amenity-chip-text, #334155);
    font-weight: 600;
    max-width: 11rem;
}

.tour-card-listing__chip--more {
    background: var(--listing-card-amenity-chip-bg, #e2e8f0);
    color: var(--listing-card-amenity-chip-text, #64748b);
    font-weight: 700;
}

.tour-card-listing__meta {
    margin: 2px 0 0;
    display: grid;
    gap: 3px;
}

.tour-card-listing__meta-row {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 8px;
    align-items: baseline;
    font-size: 0.78rem;
    line-height: 1.35;
}

.tour-card-listing__meta-row dt {
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #374151;
    font-size: 0.7rem;
}

.tour-card-listing__meta-row dd {
    margin: 0;
    color: #4b5563;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tour-card-listing__meta-row dd.tour-card-listing__departure {
    font-weight: var(--font-weight-bold, 700);
    color: var(--gray-800, #1f2937);
}

.tour-card-listing__meta-row dd a {
    color: inherit;
    text-decoration: none;
}

.tour-card-listing__meta-row dd a:hover {
    color: var(--primary, #ed4b25);
    text-decoration: underline;
}

.tour-card-listing__meta-row--dates {
    align-items: start;
}
.tour-card-listing__meta-row--dates dt {
    white-space: normal;
    line-height: 1.25;
}
.tour-card-listing__meta-row--dates dd {
    white-space: normal;
}

.tour-card-listing__aside {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: start;
}

.tour-card-listing__price-box {
    position: relative;
    background: var(--listing-card-price-bg, var(--primary, #ed4b25)) !important;
    color: #fff;
    border-radius: 10px;
    padding: 14px 12px 12px;
    text-align: center;
    min-height: 92px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    transition: background 0.2s ease, filter 0.15s ease, transform 0.15s ease;
}

.tour-card-listing__price-box:hover {
    background: var(--listing-card-price-hover-bg, var(--listing-card-price-bg, var(--primary, #ed4b25))) !important;
    filter: brightness(var(--listing-card-price-hover-filter, 0.92));
}

.tour-card-listing__discount {
    position: absolute;
    top: -8px;
    right: -6px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent, #ef4444);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.2);
}

.tour-card-listing__price-old {
    font-size: 0.72rem;
    text-decoration: line-through;
    opacity: 0.9;
}

.tour-card-listing__price-current {
    font-size: 1.35rem;
    font-weight: var(--font-weight-price, var(--font-weight-extrabold, 700));
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.tour-card-listing__price-current--muted {
    font-size: 0.95rem;
    font-weight: 700;
}

.tour-card-listing__price-hint {
    font-size: 0.68rem;
    opacity: 0.95;
}

.tour-card-listing__price-box .price-try-hint {
    color: #fff;
    opacity: 0.92;
    margin-top: 2px;
}

.tour-card-listing__price-b2b {
    margin-top: 4px;
    font-size: 0.65rem;
    opacity: 0.95;
}

.tour-card-listing__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 8px;
    background: var(--listing-card-cta-bg, var(--primary-dark, #c53f1f)) !important;
    color: #fff !important;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background 0.2s ease, filter 0.15s ease, transform 0.15s ease;
}

.tour-card-listing__cta:hover {
    background: var(--listing-card-cta-hover-bg, var(--listing-card-cta-bg, var(--primary-dark, #c53f1f))) !important;
    filter: brightness(var(--listing-card-cta-hover-filter, 0.9));
    transform: translateY(-1px);
}

.tour-card-listing__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    background: var(--surface, #f3f4f6);
    border-top: 1px solid #e5e7eb;
    flex-wrap: wrap;
}

.tour-card-listing__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    min-width: 0;
}

.tour-card-listing__action,
.tour-card-listing__details > summary.tour-card-listing__action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #374151;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    list-style: none;
    line-height: 1.2;
}

.tour-card-listing__details > summary.tour-card-listing__action::-webkit-details-marker {
    display: none;
}

.tour-card-listing__action:hover,
.tour-card-listing__details[open] > summary.tour-card-listing__action {
    border-color: #cbd5e1;
    background: #f8fafc;
    color: #111827;
}

.tour-card-listing__action-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: rgba(var(--primary-rgb, 237, 75, 37), 0.12);
    color: var(--primary, #ed4b25);
    font-size: 0.65rem;
    font-weight: 800;
}

.tour-card-listing__details {
    position: relative;
}

.tour-card-listing__details-list {
    position: absolute;
    left: 0;
    bottom: calc(100% + 6px);
    z-index: 5;
    margin: 0;
    padding: 8px 10px;
    min-width: 180px;
    max-width: 260px;
    max-height: 220px;
    overflow: auto;
    list-style: none;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.tour-card-listing__details-list li {
    padding: 4px 2px;
    font-size: 0.78rem;
    color: #374151;
}

.tour-card-listing__footer-end {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.tour-card-listing__duration-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #374151;
    font-size: 0.75rem;
    font-weight: 700;
}

.fav-btn--listing {
    position: static;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #4b5563;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.fav-btn--listing:hover {
    background: #fef2f2;
    color: #dc2626;
    border-color: #fecaca;
}

@media (max-width: 960px) {
    .tour-card-listing__body {
        grid-template-columns: 160px minmax(0, 1fr);
        grid-template-areas:
            "media info"
            "aside aside";
    }

    .tour-card-listing__media { grid-area: media; }
    .tour-card-listing__info { grid-area: info; }
    .tour-card-listing__aside {
        grid-area: aside;
        flex-direction: row;
        align-items: stretch;
    }

    .tour-card-listing__price-box {
        flex: 1;
        min-height: 72px;
    }

    .tour-card-listing__cta {
        flex: 0 0 140px;
        align-self: stretch;
    }
}

@media (max-width: 768px) {
    .tour-card-listing__footer {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 10px;
    }

    .tour-card-listing__actions {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
        align-items: stretch;
        gap: 6px;
        width: 100%;
        min-width: 0;
    }

    .tour-card-listing__details {
        min-width: 0;
        max-width: 100%;
    }

    .tour-card-listing__action,
    .tour-card-listing__details > summary.tour-card-listing__action {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        justify-content: center;
        align-items: center;
        min-height: 40px;
        height: 100%;
        box-sizing: border-box;
        padding: 8px 5px;
        font-size: 0.64rem;
        gap: 3px;
    }

    .tour-card-listing__details > summary.tour-card-listing__action {
        width: 100%;
    }

    .tour-card-listing__action span {
        font-size: 0.6rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        min-width: 0;
    }

    /* Sadece chevron'u gizle (arama/takvim ikonları kalsın) */
    .tour-card-listing__action [data-lucide="chevron-down"],
    .tour-card-listing__details > summary.tour-card-listing__action [data-lucide="chevron-down"] {
        display: none;
    }

    .tour-card-listing__action-count {
        display: inline-flex;
        flex-shrink: 0;
    }

    .tour-card-listing__footer-end {
        margin-left: 0;
        justify-content: space-between;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .tour-card-listing__body {
        grid-template-columns: 1fr;
        grid-template-areas:
            "media"
            "info"
            "aside";
        padding: 12px;
        gap: 12px;
    }

    .tour-card-listing__media {
        aspect-ratio: 16 / 9;
        height: auto;
    }

    /* Fiyat + Detaylar yan yana kalsın (tam genişlik yığın yerine) */
    .tour-card-listing__aside {
        flex-direction: row;
        align-items: stretch;
        gap: 8px;
    }

    .tour-card-listing__price-box {
        flex: 1 1 auto;
        min-width: 0;
        min-height: 68px;
        padding: 10px 10px 10px;
    }

    .tour-card-listing__price-current {
        font-size: 1.2rem;
    }

    .tour-card-listing__cta {
        flex: 0 0 34%;
        width: auto;
        min-width: 7.25rem;
        max-width: 9.5rem;
        align-self: stretch;
        min-height: 68px;
        font-size: 0.75rem;
        padding: 8px 10px;
    }

    .tour-card-listing__meta-row {
        grid-template-columns: 78px minmax(0, 1fr);
    }

    .tour-card-listing__promo-badge {
        font-size: 0.58rem;
        padding: 6px 8px;
        max-width: calc(100% - 12px);
        line-height: 1.2;
    }
}

@media (max-width: 380px) {
    .tour-card-listing__cta {
        flex-basis: 32%;
        min-width: 6.5rem;
        font-size: 0.7rem;
    }

    .tour-card-listing__action,
    .tour-card-listing__details > summary.tour-card-listing__action {
        padding: 8px 6px;
        letter-spacing: 0.01em;
    }
}

/* Tur / otel kartı — rezervasyon (kare görsel + meta ızgara + sağ fiyat) */
.cards-grid .tour-card--booking,
.tours-grid .tour-card--booking,
.cards-grid .hotel-card--booking,
.hotels-grid .hotel-card--booking {
    grid-column: 1 / -1;
    min-width: 0;
    max-width: 100%;
}

.hotel-card.hotel-card--booking {
    display: grid;
    text-decoration: none;
    color: inherit;
    height: auto;
    transform: none;
}
.hotel-card.hotel-card--booking:hover {
    transform: none;
}

.tour-card.tour-card--booking {
    display: grid;
    grid-template-columns: minmax(160px, 200px) minmax(0, 1fr) minmax(180px, 200px);
    gap: 16px;
    align-items: stretch;
    height: auto;
    overflow: visible;
    min-width: 0;
    padding: 14px;
    border: 1px solid #e6e8ee;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    text-decoration: none;
}
.tour-card.tour-card--booking:hover {
    transform: none;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.tour-card-booking__media {
    position: relative;
    align-self: stretch;
    height: 100%;
    min-height: 180px;
    border-radius: 12px;
    overflow: hidden;
    background: #f3f4f6;
}
.tour-card-booking__media-link,
.tour-card-booking__media .tour-card-image-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 180px;
}
.tour-card-booking__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.tour-card-booking__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
    padding: 6px 8px;
    border-radius: 6px;
    background: var(--listing-card-badge-bg, #1e3a5f);
    color: var(--listing-card-badge-text, #fff);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-transform: uppercase;
}

.tour-card-booking__info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 0;
}
.tour-card-booking__title {
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.3;
    font-weight: 800;
    color: #16325c;
}
.tour-card-booking__title a {
    color: inherit;
    text-decoration: none;
}
.tour-card-booking__title a:hover {
    color: var(--listing-card-cta-bg, var(--primary, #e11d2e));
}

.tour-card-booking__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tour-card-booking__chip {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--listing-card-amenity-chip-bg, #eef2f6);
    color: var(--listing-card-amenity-chip-text, #3d4f66);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.2;
}
.tour-card-booking__chip--place {
    background: var(--listing-card-chip-bg, #e11d2e);
    color: var(--listing-card-chip-text, #fff);
}

.tour-card-booking__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin: 0;
}
.tour-card-booking__cell dt {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 2px;
    color: #8b95a7;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.tour-card-booking__ico {
    color: #9aa3b2;
    display: inline-flex;
    width: 14px;
    justify-content: center;
    flex: 0 0 14px;
}
.tour-card-booking__cell dd {
    margin: 0;
    padding-left: 20px;
    color: #16325c;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.3;
}
.tour-card-booking__cell dd a {
    color: inherit;
    text-decoration: none;
}

.tour-card-booking__aside {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 8px;
    padding-left: 16px;
    border-left: 1px solid #eef0f4;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}
.tour-card-booking__price-box {
    width: 100%;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 12px 10px;
    text-align: center;
    background: color-mix(in srgb, var(--listing-card-price-bg, #1e4d8c) 12%, #f4f7fb);
}
.tour-card-booking__price-box:hover .tour-card-booking__price {
    color: var(--listing-card-price-hover-bg, var(--listing-card-price-bg, #1e4d8c));
}
.tour-card-booking__price {
    display: block;
    color: var(--listing-card-price-bg, #1e3a5f);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
}
.tour-card-booking__price--muted {
    font-size: 1rem;
}
.tour-card-booking__price-hint,
.tour-card-booking__b2b,
.tour-card-booking__price-box .price-try-hint {
    display: block;
    margin-top: 4px;
    color: #8b95a7;
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1.3;
}
.tour-card-booking__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
    min-height: 44px;
    height: 44px;
    padding: 0 14px;
    border-radius: 10px;
    background: var(--listing-card-cta-bg, #e11d2e);
    color: #fff !important;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
}
.tour-card-booking__cta > span:first-child {
    text-align: center;
    min-width: 0;
}
.tour-card-booking__cta-arrow {
    position: static;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    margin: 0;
    transform: none;
    pointer-events: none;
}
.tour-card-booking__cta:hover {
    background: var(--listing-card-cta-hover-bg, var(--listing-card-cta-bg, #c41628));
    filter: brightness(var(--listing-card-cta-hover-filter, 1));
}
.tour-card-booking__tools {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
}
.tour-card--booking .fav-btn,
.tour-card-booking__icon-btn,
.tour-card--booking .td-share-toggle.tour-card-booking__icon-btn {
    position: static;
    width: 100%;
    height: 44px;
    min-height: 44px;
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    color: #16325c;
    padding: 0;
    cursor: pointer;
    box-shadow: none;
    top: auto;
    right: auto;
    z-index: auto;
    box-sizing: border-box;
}
.tour-card--booking .fav-btn:hover,
.tour-card-booking__icon-btn:hover,
.tour-card--booking .td-share-toggle.tour-card-booking__icon-btn:hover {
    border-color: #d1d5db;
    background: #f9fafb;
}
.tour-card-booking__duration {
    display: none;
}
.tour-card--booking .td-share {
    display: flex;
    min-width: 0;
    width: 100%;
}
.tour-card--booking .td-share > .td-share-toggle {
    width: 100%;
}

@media (max-width: 900px) {
    .tour-card.tour-card--booking,
    .hotel-card.hotel-card--booking {
        grid-template-columns: minmax(120px, 160px) minmax(0, 1fr);
    }
    .tour-card-booking__aside {
        grid-column: 1 / -1;
        border-left: 0;
        padding-left: 0;
        border-top: 1px solid #eef0f4;
        padding-top: 12px;
        justify-content: stretch;
    }
    .tour-card-booking__media {
        min-height: 140px;
    }
}
@media (max-width: 640px) {
    .tour-card.tour-card--booking,
    .hotel-card.hotel-card--booking {
        grid-template-columns: 1fr;
    }
    .tour-card-booking__media {
        max-width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 10;
    }
    .tour-card-booking__media-link,
    .tour-card-booking__media .tour-card-image-placeholder {
        min-height: 0;
    }
    /* Mobil: Bölge | Çıkış, Kategori | Ulaşım, Süre | Tarih */
    .tour-card-booking__grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px 12px;
    }
}

/* Erntur: kart metinleri ALL CAPS değil — baş harf büyük */
body.tenant-erntur .tour-card-listing__promo-badge,
body.tenant-erntur .tour-card-listing__meta-row dt,
body.tenant-erntur .tour-card-listing__cta,
body.tenant-erntur .tour-card-listing__action,
body.tenant-erntur .tour-card-listing__details > summary.tour-card-listing__action {
    text-transform: none;
    letter-spacing: normal;
}

/* Erntur: fiyat kutusu marka moru (accent) — özel liste rengi yoksa */
body.tenant-erntur .tour-card-listing__price-box {
    background: var(--listing-card-price-bg, var(--accent, #7c3aed)) !important;
}

/* Erntur: kampanya % rozeti — kutudan büyük ve daha koyu */
body.tenant-erntur .tour-card-listing__discount {
    width: 48px;
    height: 48px;
    top: -12px;
    right: -8px;
    font-size: 0.82rem;
    font-weight: 800;
    background: color-mix(in srgb, var(--accent, #7c3aed) 45%, #2e1065);
    box-shadow: 0 2px 8px rgba(46, 16, 101, 0.45);
}

/* igotravel: rezervasyon kartı paleti */
body.tenant-igotravel {
    --listing-card-price-bg: #15335b;
    --listing-card-price-hover-bg: #0f69de;
    --listing-card-price-hover-filter: 1;
    --listing-card-cta-bg: #ed3d52;
    --listing-card-cta-hover-bg: #d4334a;
    --listing-card-cta-hover-filter: 1;
    --listing-card-badge-bg: #15335b;
    --listing-card-badge-text: #ffffff;
    --listing-card-chip-bg: #fce2e5;
    --listing-card-chip-text: #ed3d52;
    --listing-card-amenity-chip-bg: #f5f8fb;
    --listing-card-amenity-chip-text: #5b708e;
}
body.tenant-igotravel .tour-card.tour-card--booking,
body.tenant-igotravel .hotel-card.hotel-card--booking {
    background: #ffffff;
    border-color: #dce6f2;
}
body.tenant-igotravel .tour-card-booking__title,
body.tenant-igotravel .tour-card-booking__cell dd,
body.tenant-igotravel .tour-card-booking__price {
    color: #15335b;
}
body.tenant-igotravel .tour-card-booking__cell dt,
body.tenant-igotravel .tour-card-booking__ico,
body.tenant-igotravel .tour-card-booking__price-hint,
body.tenant-igotravel .tour-card-booking__b2b,
body.tenant-igotravel .tour-card-booking__price-box .price-try-hint {
    color: #5b708e;
}
body.tenant-igotravel .tour-card-booking__price-box {
    background: #ebf2fa !important;
}
body.tenant-igotravel .tour-card-booking__price-box:hover .tour-card-booking__price {
    color: #0f69de;
}
body.tenant-igotravel .tour-card-booking__cta {
    background: #ed3d52;
}
body.tenant-igotravel .tour-card-booking__cta:hover {
    background: #d4334a;
    filter: none;
}
body.tenant-igotravel .tour-card-booking__chip--place {
    background: #fce2e5;
    color: #ed3d52;
}
body.tenant-igotravel .tour-card-booking__chip:not(.tour-card-booking__chip--place) {
    background: #f5f8fb;
    color: #5b708e;
}
body.tenant-igotravel .tour-card-booking__badge {
    background: #15335b;
    color: #ffffff;
}
body.tenant-igotravel .tour-card--booking .fav-btn,
body.tenant-igotravel .tour-card-booking__icon-btn,
body.tenant-igotravel .tour-card--booking .td-share-toggle.tour-card-booking__icon-btn {
    border-color: #dce6f2;
    color: #15335b;
    background: #ffffff;
}
body.tenant-igotravel .tour-card--booking .fav-btn:hover,
body.tenant-igotravel .tour-card-booking__icon-btn:hover,
body.tenant-igotravel .tour-card--booking .td-share-toggle.tour-card-booking__icon-btn:hover {
    border-color: #0f69de;
    color: #0f69de;
    background: #f5f8fb;
}

/* Otel kartı — yatay */
.hotel-card--horizontal {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    text-decoration: none;
    color: inherit;
    min-height: 168px;
}

.hotel-card--horizontal .hotel-card__image {
    width: 38%;
    min-width: 140px;
    max-width: 200px;
    flex-shrink: 0;
    height: auto;
    align-self: stretch;
    aspect-ratio: auto;
}

.hotel-card--horizontal .hotel-card__image img {
    height: 100%;
    min-height: 168px;
}

.hotel-card--horizontal .hotel-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    min-width: 0;
}

.hotel-card--horizontal .hotel-card__main {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 3.25rem;
    min-width: 0;
}

.hotel-card--horizontal .hotel-card__title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hotel-card--horizontal .hotel-card__meta {
    font-size: 0.78rem;
    color: var(--gray-500);
}

.hotel-card--horizontal .hotel-card__footer {
    padding-top: 10px;
    flex-shrink: 0;
}

.hotel-card--horizontal .hotel-card__price-label {
    white-space: nowrap;
}

@media (max-width: 640px) {
    .hotel-card--horizontal {
        flex-direction: column;
        min-height: 0;
    }

    .hotel-card--horizontal .hotel-card__image {
        width: 100%;
        max-width: none;
        aspect-ratio: 16 / 10;
    }

    .hotel-card--horizontal .hotel-card__image img {
        min-height: 0;
        height: 100%;
    }
}

/* Ana sayfa grid kolonları */
@media (min-width: 1024px) {
    .cards-grid--cols-2 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .cards-grid--cols-4 {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .cards-grid--cols-3 {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (min-width: 1280px) {
    .cards-grid--cols-4 .tour-card-title,
    .cards-grid--cols-4 .hotel-card__title {
        font-size: 0.95rem;
    }

    .cards-grid--cols-5 {
        grid-template-columns: repeat(5, 1fr) !important;
    }
}

/* Header — split & dark */
.header--split .header-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
}

.header--split .main-nav {
    justify-content: center;
}

.header--dark.site-header {
    background: #111827 !important;
    color: #f9fafb;
}

.header--dark .main-nav > a,
.header--dark .main-nav .menu-item-dropdown > .menu-link,
.header--dark .main-nav .menu-item-megamenu > .menu-link,
.header--dark .site-logo {
    color: #f9fafb;
}

.header--dark .main-nav > a:hover,
.header--dark .main-nav .menu-item-dropdown > .menu-link:hover,
.header--dark .main-nav .menu-item-megamenu > .menu-link:hover {
    color: var(--primary, #f59e0b);
}

/* Dropdown / megamenu panelleri açık zemin — koyu header metin rengi devralınmasın */
.header--dark .main-nav .menu-dropdown a,
.header--dark .main-nav .menu-dropdown .menu-dropdown-link,
.header--dark .main-nav .menu-megamenu-panel a:not(.mmc-rail-item):not(.mmc-view-all),
.header--dark .main-nav .menu-megamenu-panel .menu-megamenu-link,
.header--dark .menu-dropdown .menu-dropdown-link,
.header--dark .menu-megamenu-panel .menu-megamenu-link {
    color: #374151 !important;
}

.header--dark .main-nav .menu-dropdown a:hover,
.header--dark .main-nav .menu-dropdown .menu-dropdown-link:hover,
.header--dark .main-nav .menu-megamenu-panel a:not(.mmc-rail-item):not(.mmc-view-all):hover,
.header--dark .main-nav .menu-megamenu-panel .menu-megamenu-link:hover,
.header--dark .menu-dropdown .menu-dropdown-link:hover,
.header--dark .menu-megamenu-panel .menu-megamenu-link:hover {
    color: var(--primary, #ed4b25) !important;
}

.header--dark .main-nav .menu-megamenu-panel--catalog a.mmc-rail-item,
.header--dark .menu-megamenu-panel--catalog a.mmc-rail-item {
    color: var(--mmc-rail-fg, #1e293b) !important;
}

.header--dark .main-nav .menu-megamenu-panel--catalog a.mmc-rail-item:hover,
.header--dark .main-nav .menu-megamenu-panel--catalog a.mmc-rail-item:focus-visible,
.header--dark .main-nav .menu-megamenu-panel--catalog a.mmc-rail-item.is-active,
.header--dark .menu-megamenu-panel--catalog a.mmc-rail-item:hover,
.header--dark .menu-megamenu-panel--catalog a.mmc-rail-item:focus-visible,
.header--dark .menu-megamenu-panel--catalog a.mmc-rail-item.is-active {
    color: var(--mmc-rail-active-fg, var(--mmc-rail-bg, var(--primary))) !important;
    background: var(--mmc-rail-active-bg, #fff);
}

.header--dark .main-nav .menu-megamenu-panel--catalog a.mmc-view-all,
.header--dark .menu-megamenu-panel--catalog a.mmc-view-all {
    color: var(--mmc-accent, var(--mmc-rail-bg, var(--primary, #6d28d9))) !important;
}

.header--dark .menu-megamenu-col-title {
    color: var(--gray-500, #6b7280);
}

/* Hero modifiers — sınıf hero-slider-wrapper üzerinde */
.hero-slider-wrapper.hero--boxed {
    max-width: var(--container-max-width, 1280px);
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
}

.hero-slider-wrapper.hero--boxed .hero-slider,
.hero-slider-wrapper.hero--boxed .hero-slide {
    border-radius: 16px;
}

.hero-slider-wrapper.hero--overlay .hero-slide {
    position: relative;
}

/* Overlay kapalı: slider görseli olduğu gibi görünsün */
.hero-slider-wrapper.hero--overlay .hero-slide::after {
    content: none;
    display: none;
}

.hero-slider-wrapper.hero--short .hero-slide,
.hero-slider-wrapper.hero--short .hero-slider {
    min-height: 280px !important;
    max-height: 360px !important;
}

/* Search modifiers */
.home-search-widget--floating {
    margin-top: -3rem;
    position: relative;
    z-index: 5;
}

/* Topbar — iletişim şeridi */
.site-topbar--contact {
    background: var(--primary, #ed4b25);
    color: #fff;
    font-size: 0.75rem;
    line-height: 1.15;
    border-bottom: 1px solid color-mix(in srgb, #000 12%, transparent);
    max-width: 100%;
    overflow-x: clip;
}

.site-topbar__inner {
    max-width: var(--container-max-width, 1280px);
    margin: 0 auto;
    padding: 0.28rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    min-height: 0;
    min-width: 0;
    box-sizing: border-box;
}

.site-topbar__social {
    display: flex;
    align-items: center;
    gap: 0.28rem;
}

.site-topbar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    color: #fff !important;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.site-topbar__icon svg,
.site-topbar__icon .fa-brands,
.site-topbar__icon .social-brand-icon {
    width: auto;
    height: auto;
    font-size: 12px !important;
    line-height: 1;
    color: #fff !important;
    -webkit-text-fill-color: #fff;
    fill: #fff;
    stroke: none;
}

.site-topbar__icon:hover {
    background: rgba(255, 255, 255, 0.26);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-1px);
    color: #fff !important;
}

.site-topbar__contact {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.1rem 0.15rem;
}

.site-topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255, 255, 255, 0.96) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    white-space: nowrap;
    padding: 0.12rem 0.45rem;
    border-radius: 999px;
    transition: background 0.15s ease;
}

.site-topbar__item svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.site-topbar__item + .site-topbar__item {
    position: relative;
}

.site-topbar__item + .site-topbar__item::before {
    content: '';
    position: absolute;
    left: -0.05rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 11px;
    background: rgba(255, 255, 255, 0.28);
}

.site-topbar__item:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.14);
    text-decoration: none;
}

.site-topbar__item--phone {
    font-weight: 700;
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .site-topbar__inner {
        padding: 0.22rem 0.85rem;
        gap: 0.4rem;
    }

    .site-topbar__icon {
        width: 20px;
        height: 20px;
    }

    .site-topbar__item + .site-topbar__item::before {
        display: none;
    }

    .site-topbar__item--email:nth-of-type(n + 2) {
        display: none;
    }

    .site-topbar__item span {
        font-size: 0.6875rem;
    }
}

@media (max-width: 520px) {
    .site-topbar__item--email {
        display: none;
    }
}

/* Search — kapsül (pill) + sekmeler */
.home-search-widget--pill {
    margin-top: 0;
    max-width: min(720px, calc(100% - 2.5rem));
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.home-search-widget--pill .home-search-widget__panel {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.14);
    padding: 0.65rem 0.75rem 0.75rem;
    border: 1px solid rgba(15, 23, 42, 0.07);
    overflow: visible;
}

.home-search-widget--pill .home-search-widget__header-tabs {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.25rem 0.5rem !important;
    margin: 0 0 0.35rem;
    border-bottom: none !important;
}

.home-search-widget--pill .home-search-widget__header-tab-btn {
    border: none !important;
    border-bottom: none !important;
    margin: 0 !important;
    border-radius: 999px !important;
    padding: 0.4rem 0.9rem !important;
    background: transparent;
    color: var(--gray-600, #4b5563);
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.home-search-widget--pill .home-search-widget__header-tab-btn:hover {
    background: var(--gray-100, #f3f4f6);
    color: var(--primary, #ed4b25);
}

.home-search-widget--pill .home-search-widget__header-tab-btn.is-active {
    background: var(--primary, #ed4b25) !important;
    color: #fff !important;
}

.home-search-widget--pill .home-search-widget__form {
    padding: 0 !important;
    margin: 0 !important;
}

.home-search-widget--pill .home-search-widget__fields {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.25rem;
    margin: 0;
    padding: 0.3rem;
    border-radius: 14px;
    background: var(--gray-50, #f9fafb);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.home-search-widget--pill .home-search-widget__field {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.65rem 0.95rem;
    border: none !important;
    border-right: none !important;
    background: transparent;
    margin: 0;
    border-radius: 12px;
    box-shadow: none;
    transition: background 0.15s ease;
}

.home-search-widget--pill .home-search-widget__field + .home-search-widget__field:not(.home-search-widget__field--submit)::before {
    display: none !important;
    content: none !important;
}

.home-search-widget--pill .home-search-widget__field:first-child {
    padding-left: 0.85rem;
}

.home-search-widget--pill .home-search-widget__field:hover,
.home-search-widget--pill .home-search-widget__field:focus-within {
    background: #fff;
    border: none !important;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
}

.home-search-widget--pill .home-search-widget__field:last-child,
.home-search-widget--pill .home-search-widget__field--submit {
    border: none !important;
    border-right: none !important;
    background: transparent !important;
    box-shadow: none !important;
    flex: 0 0 auto;
    padding: 0.25rem 0.25rem 0.25rem 0.35rem;
}

.home-search-widget--pill .home-search-widget__field > label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--gray-600, #4b5563);
    margin: 0 0 0.35rem 0;
    line-height: 1.35;
    overflow: visible;
    text-overflow: clip;
}

.home-search-widget--pill .home-search-widget__field--submit > label {
    display: none;
}

.home-search-widget--pill .home-search-widget__input-wrapper {
    position: relative;
    display: block;
    width: 100%;
    min-height: 1.5rem;
}

.home-search-widget--pill .home-search-widget__input-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary, #ed4b25);
    opacity: 0.9;
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.1rem;
    height: 1.1rem;
}

.home-search-widget--pill .home-search-widget__field input,
.home-search-widget--pill .home-search-widget__field select {
    border: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    height: 1.5rem !important;
    min-height: 1.5rem !important;
    max-height: 1.5rem !important;
    width: 100%;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.3;
    color: var(--gray-800, #1f2937);
    padding: 0 0.35rem 0 1.55rem !important;
    margin: 0;
}

.home-search-widget--pill .home-search-widget__field select {
    padding-right: 1.25rem !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%236b7280' d='M8 10L3 5h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.1rem center !important;
    background-size: 12px !important;
    appearance: none;
    cursor: pointer;
}

.home-search-widget--pill .home-search-widget__field input:focus,
.home-search-widget--pill .home-search-widget__field select:focus {
    box-shadow: none !important;
    border: none !important;
}

.home-search-widget--pill .home-search-widget__field--submit {
    flex: 0 0 auto;
    padding: 0 !important;
    display: flex;
    align-items: center;
    background: transparent !important;
    border: none !important;
}

.home-search-widget--pill .home-search-widget__submit-btn-icon,
.home-search-widget--pill .home-search-widget__submit-btn-icon--labeled,
.home-search-widget--pill button[type="submit"] {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: 12px !important;
    padding: 0.7rem 1.35rem !important;
    min-width: 6.5rem;
    min-height: 2.75rem;
    height: 2.75rem;
    background: var(--accent, var(--primary, #f59e0b)) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.92rem;
    box-shadow: 0 8px 18px color-mix(in srgb, var(--accent, #f59e0b) 38%, transparent);
    cursor: pointer;
    transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.home-search-widget--pill .home-search-widget__submit-btn-icon:hover,
.home-search-widget--pill button[type="submit"]:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px color-mix(in srgb, var(--accent, #f59e0b) 50%, transparent);
}

.home-search-widget--pill .home-search-widget__submit-label {
    display: inline !important;
}

@media (max-width: 900px) {
    .home-search-widget--pill {
        max-width: calc(100% - 1.25rem);
    }

    .home-search-widget--pill .home-search-widget__panel {
        border-radius: 20px;
        padding: 0.85rem;
    }

    .home-search-widget--pill .home-search-widget__header-tabs {
        padding-bottom: 0.75rem !important;
    }

    .home-search-widget--pill .home-search-widget__fields {
        flex-wrap: wrap;
        gap: 0.35rem;
        background: transparent;
        border: none;
        padding: 0;
    }

    .home-search-widget--pill .home-search-widget__field {
        flex: 1 1 100%;
        border: 1px solid rgba(15, 23, 42, 0.1) !important;
        background: var(--gray-50, #f9fafb);
        padding: 0.5rem 0.75rem !important;
        border-radius: 12px;
    }

    .home-search-widget--pill .home-search-widget__field:first-child {
        padding-left: 0.75rem !important;
    }

    .home-search-widget--pill .home-search-widget__field--submit {
        flex: 1 1 100%;
        border: none !important;
        background: transparent !important;
        padding: 0.15rem 0 0 !important;
        box-shadow: none !important;
    }

    .home-search-widget--pill button[type="submit"] {
        width: 100%;
    }
}

/* Hero — Vitrin Slider */
.hero-slider-wrapper--showcase {
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden;
}

.hero-slider-wrapper--showcase::before {
    padding-top: 37.5% !important; /* 1920×720 */
}

.hero-slider-wrapper--showcase .hero-slider,
.hero-slider-wrapper--showcase .hero-slide {
    border-radius: 0 !important;
}

/* Kart köşeleri: vitrin slider da yumuşak/pill/yuvarlak olsun */
body.theme-radius-rounded .hero-slider-wrapper--showcase,
body.theme-radius-soft .hero-slider-wrapper--showcase,
body.theme-radius-pill .hero-slider-wrapper--showcase {
    border-radius: var(--radius-lg, 16px) !important;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.14) !important;
}

body.theme-radius-rounded .hero-slider-wrapper--showcase .hero-slider,
body.theme-radius-rounded .hero-slider-wrapper--showcase .hero-slide,
body.theme-radius-soft .hero-slider-wrapper--showcase .hero-slider,
body.theme-radius-soft .hero-slider-wrapper--showcase .hero-slide,
body.theme-radius-pill .hero-slider-wrapper--showcase .hero-slider,
body.theme-radius-pill .hero-slider-wrapper--showcase .hero-slide {
    border-radius: inherit !important;
}

.hero-showcase-overlay {
    display: none !important;
}

/* Showcase: slider görseli üzerinde gradient overlay yok (görsel net kalsın) */
.hero-slider-wrapper--showcase .hero-slide::after {
    content: none !important;
    display: none !important;
    background: none !important;
}

.hero-showcase-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 2;
    max-width: none;
    margin: 0;
    padding: clamp(1.5rem, 3.5vw, 2.75rem) clamp(1.25rem, 4vw, 2.5rem) clamp(5rem, 10vw, 7rem);
    text-align: left;
    pointer-events: none;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
}

.hero-showcase-copy {
    max-width: min(36rem, 92vw);
    pointer-events: none;
}

.hero-showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: var(--accent, #f59e0b);
    color: #111827;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.hero-showcase-title {
    color: #fff;
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    margin: 0 0 0.55rem;
    max-width: 14ch;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45), 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hero-showcase-desc {
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(0.92rem, 1.55vw, 1.12rem);
    margin: 0 0 1rem;
    max-width: 36ch;
    line-height: 1.5;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.hero-showcase-cta {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.15rem;
    padding: 0.7rem 1.15rem;
    border-radius: 999px;
    background: #fff;
    color: #111827;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.hero-showcase-cta:hover {
    background: #f8fafc;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    color: #111827;
}

.hero-showcase-cta:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.hero-showcase-cta svg {
    flex-shrink: 0;
    transition: transform 0.18s ease;
}

.hero-showcase-cta:hover svg {
    transform: translateX(2px);
}

.hero-showcase-tursab {
    position: absolute;
    top: clamp(0.85rem, 2vw, 1.25rem);
    right: clamp(0.85rem, 2vw, 1.25rem);
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(107, 114, 128, 0.42);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.45rem 0.85rem 0.45rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    color: #e5e7eb;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    max-width: min(46ch, calc(100% - 2rem));
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-showcase-tursab__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    background: #ecfdf5;
    color: #059669;
    flex-shrink: 0;
}

.hero-showcase-tursab__text,
.hero-showcase-tursab span {
    font-weight: 600;
    color: #e5e7eb;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-showcase-pagination {
    position: absolute !important;
    left: clamp(1.25rem, 4vw, 2.5rem) !important;
    right: auto !important;
    bottom: clamp(1rem, 2.5vw, 1.5rem) !important;
    width: auto !important;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.hero-showcase-pagination .swiper-pagination-bullet {
    width: 0.5rem;
    height: 0.5rem;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.55);
    opacity: 1;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-showcase-pagination .swiper-pagination-bullet-active {
    width: 1.35rem;
    border-radius: 999px;
    background: #fff;
}

.hero-slider-wrapper--showcase .hero-slider-button-prev,
.hero-slider-wrapper--showcase .hero-slider-button-next {
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
    color: #111827;
    opacity: 0;
}

.hero-slider-wrapper--showcase:hover .hero-slider-button-prev,
.hero-slider-wrapper--showcase:hover .hero-slider-button-next,
.hero-slider-wrapper--showcase:focus-within .hero-slider-button-prev,
.hero-slider-wrapper--showcase:focus-within .hero-slider-button-next {
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-slider-wrapper--showcase::before {
        padding-top: 72% !important;
    }

    .hero-showcase-content {
        padding: 1.15rem 1rem 1.75rem;
        align-items: flex-end;
    }

    .hero-showcase-title {
        max-width: 100%;
        font-size: clamp(1.5rem, 6.2vw, 2.05rem);
    }

    .hero-showcase-desc {
        max-width: 100%;
        margin-bottom: 0.85rem;
    }

    .hero-showcase-cta {
        padding: 0.62rem 1rem;
        font-size: 0.85rem;
    }

    .hero-showcase-tursab {
        top: 0.65rem;
        right: 0.65rem;
        font-size: 0.65rem;
        padding: 0.35rem 0.6rem 0.35rem 0.4rem;
        max-width: min(72vw, calc(100% - 1.25rem));
    }

    .hero-showcase-tursab__mark {
        width: 1.15rem;
        height: 1.15rem;
    }

    .hero-showcase-pagination {
        left: 50% !important;
        transform: translateX(-50%);
        bottom: 0.75rem !important;
    }

    .hero-slider-wrapper--showcase .hero-slider-button-prev,
    .hero-slider-wrapper--showcase .hero-slider-button-next {
        display: none;
    }
}

/* Acente Vitrin Yüksek — overlay yok (showcase ile aynı) */
.homepage-hero-suite--agency_showcase-tall .hero-slider-wrapper--showcase .hero-slide::after {
    content: none !important;
    display: none !important;
    background: none !important;
}

.homepage-hero-suite--agency_showcase-tall .hero-showcase-content {
    padding-left: clamp(1.5rem, 6vw, 4.25rem);
    padding-right: clamp(1.25rem, 4vw, 2.5rem);
    padding-bottom: clamp(5.75rem, 12vw, 8.5rem);
    padding-top: clamp(2rem, 4vw, 3rem);
}

.homepage-hero-suite--agency_showcase-tall .hero-showcase-copy {
    max-width: min(38rem, 90vw);
}

.homepage-hero-suite--agency_showcase-tall .hero-showcase-title {
    max-width: 12ch;
    font-size: clamp(1.9rem, 4.2vw, 3.25rem);
}

.homepage-hero-suite--agency_showcase-tall .hero-showcase-pagination {
    left: clamp(1.5rem, 6vw, 4.25rem) !important;
    bottom: clamp(1.15rem, 2.8vw, 1.75rem) !important;
}

@media (max-width: 768px) {
    .homepage-hero-suite--agency_showcase-tall .hero-showcase-content {
        padding: 1.25rem 1rem 1.5rem;
    }

    .homepage-hero-suite--agency_showcase-tall .hero-showcase-title {
        max-width: 100%;
    }

    .homepage-hero-suite--agency_showcase-tall .hero-showcase-pagination {
        left: 50% !important;
    }
}

/* Hero suite — Acente Vitrin (tam ekran, kenardan kenara) */
body.homepage:has(.homepage-hero-suite--agency_showcase) .site-main,
body.homepage.theme-hero-suite-agency_showcase .site-main,
body.homepage.theme-hero-suite-agency_showcase_tall .site-main {
    max-width: none !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
}

/* Inset: site-main kutulu akış — slider container genişliğinde */
body.homepage.theme-hero-suite-agency_showcase_inset .site-main,
body.homepage:has(.homepage-hero-suite--agency_showcase-inset) .site-main {
    max-width: var(--container-max-width, 1280px) !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: var(--space-4, 1rem) !important;
    padding-right: var(--space-4, 1rem) !important;
    padding-top: var(--space-4, 1rem) !important;
    box-sizing: border-box !important;
}

body.homepage:has(.homepage-hero-suite--agency_showcase) .content-container,
body.homepage.theme-hero-suite-agency_showcase .content-container,
body.homepage.theme-hero-suite-agency_showcase_tall .content-container {
    max-width: var(--container-max-width, 1280px);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-4, 1rem);
    padding-right: var(--space-4, 1rem);
}

body.homepage.theme-hero-suite-agency_showcase_inset .content-container,
body.homepage:has(.homepage-hero-suite--agency_showcase-inset) .content-container {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.homepage-slider-container.homepage-hero-suite--agency_showcase,
.homepage-hero-suite--agency_showcase {
    position: relative;
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 5.5rem !important;
    padding: 0 0 2.5rem !important;
    left: auto;
    right: auto;
}

.homepage-hero-suite--agency_showcase .hero-slider-wrapper,
.homepage-hero-suite--agency_showcase .hero-slider-wrapper--showcase {
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important;
    aspect-ratio: var(--hero-suite-ar, 1920 / 720);
    min-height: clamp(320px, 34vh, var(--hero-suite-max-h, 720px));
    height: auto;
    overflow: hidden;
}

/* Kart köşeleri → vitrin slider (tam ekranda hafif inset + radius) */
body.theme-radius-rounded .homepage-hero-suite--agency_showcase .hero-slider-wrapper,
body.theme-radius-rounded .homepage-hero-suite--agency_showcase .hero-slider-wrapper--showcase,
body.theme-radius-soft .homepage-hero-suite--agency_showcase .hero-slider-wrapper,
body.theme-radius-soft .homepage-hero-suite--agency_showcase .hero-slider-wrapper--showcase,
body.theme-radius-pill .homepage-hero-suite--agency_showcase .hero-slider-wrapper,
body.theme-radius-pill .homepage-hero-suite--agency_showcase .hero-slider-wrapper--showcase {
    border-radius: var(--radius-lg, 16px) !important;
    margin-left: var(--showcase-inline-inset, clamp(0.65rem, 1.8vw, 1.25rem)) !important;
    margin-right: var(--showcase-inline-inset, clamp(0.65rem, 1.8vw, 1.25rem)) !important;
    width: auto !important;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.14) !important;
}

body.theme-radius-rounded .homepage-hero-suite--agency_showcase .hero-slider,
body.theme-radius-rounded .homepage-hero-suite--agency_showcase .hero-slide,
body.theme-radius-rounded .homepage-hero-suite--agency_showcase .swiper,
body.theme-radius-rounded .homepage-hero-suite--agency_showcase .swiper-slide,
body.theme-radius-soft .homepage-hero-suite--agency_showcase .hero-slider,
body.theme-radius-soft .homepage-hero-suite--agency_showcase .hero-slide,
body.theme-radius-soft .homepage-hero-suite--agency_showcase .swiper,
body.theme-radius-soft .homepage-hero-suite--agency_showcase .swiper-slide,
body.theme-radius-pill .homepage-hero-suite--agency_showcase .hero-slider,
body.theme-radius-pill .homepage-hero-suite--agency_showcase .hero-slide,
body.theme-radius-pill .homepage-hero-suite--agency_showcase .swiper,
body.theme-radius-pill .homepage-hero-suite--agency_showcase .swiper-slide {
    border-radius: inherit !important;
}

body.theme-radius-sharp .homepage-hero-suite--agency_showcase .hero-slider-wrapper,
body.theme-radius-sharp .homepage-hero-suite--agency_showcase .hero-slider-wrapper--showcase {
    border-radius: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    box-shadow: none !important;
}

.homepage-hero-suite--agency_showcase-tall .hero-slider-wrapper {
    min-height: clamp(360px, 38vh, var(--hero-suite-max-h, 800px));
}

.homepage-hero-suite--agency_showcase .hero-slider-wrapper::before {
    content: none !important;
    display: none !important;
    padding-top: 0 !important;
    height: 0 !important;
}

.homepage-hero-suite--agency_showcase .hero-slider,
.homepage-hero-suite--agency_showcase .hero-slide,
.homepage-hero-suite--agency_showcase .swiper,
.homepage-hero-suite--agency_showcase .swiper-slide {
    border-radius: 0 !important;
}

/* Arama bindirmesi için metni yukarıda tut */
.homepage-hero-suite--agency_showcase .hero-showcase-content {
    padding-left: clamp(1.25rem, 5vw, 3.5rem);
    padding-right: clamp(1.25rem, 4vw, 2.5rem);
    padding-bottom: clamp(5.5rem, 11vw, 8rem);
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
    max-width: none;
    width: 100%;
}

.homepage-hero-suite--agency_showcase.homepage-hero-suite--agency_showcase-tall .hero-showcase-content {
    padding-left: clamp(1.5rem, 6vw, 4.25rem);
    padding-right: clamp(1.25rem, 4vw, 2.5rem);
    padding-bottom: clamp(5.75rem, 12vw, 8.5rem);
    padding-top: clamp(2rem, 4vw, 3rem);
}

.homepage-hero-suite--agency_showcase.homepage-hero-suite--agency_showcase-tall .hero-showcase-pagination {
    left: clamp(1.5rem, 6vw, 4.25rem) !important;
}

.homepage-hero-suite--agency_showcase {
    --showcase-inline-inset: 0px;
}

body.theme-radius-rounded .homepage-hero-suite--agency_showcase,
body.theme-radius-soft .homepage-hero-suite--agency_showcase,
body.theme-radius-pill .homepage-hero-suite--agency_showcase {
    --showcase-inline-inset: clamp(0.65rem, 1.8vw, 1.25rem);
}

.homepage-hero-suite--agency_showcase .homepage-hero-suite__search-overlap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(42%);
    z-index: 30;
    pointer-events: none;
    padding: 0 var(--showcase-inline-inset, 0px) 0.5rem;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.homepage-hero-suite--agency_showcase .homepage-hero-suite__search-overlap .home-search-widget,
.homepage-hero-suite--agency_showcase .homepage-hero-suite__search-overlap .home-search-widget--pill {
    pointer-events: auto;
    margin: 0 auto 0.5rem !important;
    /* Masaüstü dengeli (~640px); home/index inline !important ile uyumlu */
    width: min(90%, 720px) !important;
    max-width: 720px !important;
    min-width: 0;
}

.homepage-hero-suite--agency_showcase.homepage-hero-suite--agency_showcase-inset .homepage-hero-suite__search-overlap .home-search-widget,
.homepage-hero-suite--agency_showcase.homepage-hero-suite--agency_showcase-inset .homepage-hero-suite__search-overlap .home-search-widget--pill {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 0 !important;
}

.homepage-hero-suite--agency_showcase .homepage-hero-suite__search-overlap .home-search-widget--pill .home-search-widget__panel {
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.16);
}

/* Arama içeride — boxed container (klasik vitrin tam genişlikte kalır) */
.homepage-slider-container.homepage-hero-suite--agency_showcase-inset,
.homepage-hero-suite--agency_showcase-inset {
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 1.5rem !important;
    padding: 0 !important;
    overflow: visible;
    box-sizing: border-box;
}

.homepage-hero-suite--agency_showcase-inset .hero-slider-wrapper,
.homepage-hero-suite--agency_showcase-inset .hero-slider-wrapper--showcase,
body.theme-radius-rounded .homepage-hero-suite--agency_showcase-inset .hero-slider-wrapper,
body.theme-radius-rounded .homepage-hero-suite--agency_showcase-inset .hero-slider-wrapper--showcase,
body.theme-radius-soft .homepage-hero-suite--agency_showcase-inset .hero-slider-wrapper,
body.theme-radius-soft .homepage-hero-suite--agency_showcase-inset .hero-slider-wrapper--showcase,
body.theme-radius-pill .homepage-hero-suite--agency_showcase-inset .hero-slider-wrapper,
body.theme-radius-pill .homepage-hero-suite--agency_showcase-inset .hero-slider-wrapper--showcase,
body.theme-radius-sharp .homepage-hero-suite--agency_showcase-inset .hero-slider-wrapper,
body.theme-radius-sharp .homepage-hero-suite--agency_showcase-inset .hero-slider-wrapper--showcase {
    overflow: hidden;
    min-height: clamp(280px, 32vh, var(--hero-suite-max-h, 700px));
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: var(--radius-lg, 16px) !important;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.14) !important;
}

body.theme-radius-sharp .homepage-hero-suite--agency_showcase-inset .hero-slider-wrapper,
body.theme-radius-sharp .homepage-hero-suite--agency_showcase-inset .hero-slider-wrapper--showcase {
    border-radius: 8px !important;
}

.homepage-hero-suite--agency_showcase-inset .hero-slider,
.homepage-hero-suite--agency_showcase-inset .hero-slide,
.homepage-hero-suite--agency_showcase-inset .swiper,
.homepage-hero-suite--agency_showcase-inset .swiper-slide {
    border-radius: inherit !important;
}

/* Soft okunabilirlik: sol/üst + alt (yalnızca inset) */
.homepage-hero-suite--agency_showcase-inset .hero-slider-wrapper--showcase .hero-slide::after {
    content: '' !important;
    display: block !important;
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            105deg,
            rgba(15, 23, 42, 0.58) 0%,
            rgba(15, 23, 42, 0.28) 38%,
            rgba(15, 23, 42, 0.08) 62%,
            transparent 82%
        ),
        linear-gradient(to top, rgba(15, 23, 42, 0.42) 0%, rgba(15, 23, 42, 0.12) 38%, transparent 58%);
}

.homepage-hero-suite--agency_showcase-inset .hero-showcase-content {
    align-items: flex-start !important;
    justify-content: flex-start;
    padding: clamp(1.35rem, 3vw, 2.35rem) clamp(1.1rem, 3.5vw, 2.5rem) clamp(1.25rem, 2.5vw, 2rem) !important;
    box-sizing: border-box;
}

.homepage-hero-suite--agency_showcase-inset .hero-showcase-copy {
    max-width: min(30rem, 82vw);
}

.homepage-hero-suite--agency_showcase-inset .hero-showcase-badge {
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
    gap: 0;
}

.homepage-hero-suite--agency_showcase-inset .hero-showcase-badge svg {
    display: none !important;
}

.homepage-hero-suite--agency_showcase-inset .hero-showcase-title {
    max-width: min(22ch, 90vw);
    font-size: clamp(1.55rem, 3.1vw, 2.55rem);
    line-height: 1.12;
    margin-bottom: 0.5rem;
}

.homepage-hero-suite--agency_showcase-inset .hero-showcase-desc {
    max-width: min(40ch, 88vw);
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Referansta hero CTA yok — arama birincil aksiyon */
.homepage-hero-suite--agency_showcase-inset .hero-showcase-cta {
    display: none !important;
}

.homepage-hero-suite--agency_showcase-inset .homepage-hero-suite__search-overlap {
    left: 0;
    right: 0;
    /* Yazı ile alt kenar arasında dengeli orta-alt bant */
    top: clamp(12rem, 52%, 18rem);
    bottom: auto;
    transform: none !important;
    padding: 0 clamp(1.1rem, 3.5vw, 2.5rem);
    z-index: 35;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.homepage-hero-suite--agency_showcase-inset .homepage-hero-suite__search-overlap .home-search-widget,
.homepage-hero-suite--agency_showcase-inset .homepage-hero-suite__search-overlap .home-search-widget--pill {
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Kompakt kapsül — eşit alan ritmi */
.homepage-hero-suite--agency_showcase-inset .homepage-hero-suite__search-overlap .home-search-widget--pill .home-search-widget__panel {
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
    padding: 0.45rem 0.55rem 0.55rem;
}

/* Inset: Bölge yok — şehir/otel alanı genişler */
.homepage-hero-suite--agency_showcase-inset .home-search-widget__field--region,
.homepage-hero-suite--agency_showcase-inset .home-search-widget__field:has(#hotel_region) {
    display: none !important;
}

.homepage-hero-suite--agency_showcase-inset .home-search-widget--pill .home-search-widget__header-tabs {
    display: flex !important;
    justify-content: flex-start;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.35rem 0.4rem !important;
    margin: 0;
}

.homepage-hero-suite--agency_showcase-inset .home-search-widget--pill .home-search-widget__header-tab-btn {
    padding: 0.28rem 0.75rem !important;
    font-size: 0.78rem;
}

.homepage-hero-suite--agency_showcase-inset .home-search-widget--pill .home-search-widget__fields {
    display: flex !important;
    align-items: stretch;
    padding: 0.15rem;
    gap: 0;
    border-radius: 12px;
}

.homepage-hero-suite--agency_showcase-inset .home-search-widget--pill .home-search-widget__field {
    padding: 0.4rem 0.85rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

/* Simetrik sütun oranları */
.homepage-hero-suite--agency_showcase-inset .home-search-widget__tab-content[data-search-tab="hotel"] .home-search-widget__field--destination,
.homepage-hero-suite--agency_showcase-inset .home-search-widget__tab-content[data-search-tab="hotel"] .home-search-widget__field:has(#hotel_destination) {
    flex: 1.85 1 0 !important;
    min-width: 0 !important;
}

.homepage-hero-suite--agency_showcase-inset .home-search-widget__tab-content[data-search-tab="hotel"] .home-search-widget__field--dates {
    flex: 1.2 1 0 !important;
}

.homepage-hero-suite--agency_showcase-inset .home-search-widget__tab-content[data-search-tab="hotel"] .home-search-widget__field--guests {
    flex: 1 1 0 !important;
}

.homepage-hero-suite--agency_showcase-inset .home-search-widget__tab-content[data-search-tab="tour"] .home-search-widget__field:not(.home-search-widget__field--submit) {
    flex: 1 1 0 !important;
}

.homepage-hero-suite--agency_showcase-inset .home-search-widget--pill .home-search-widget__field--submit {
    flex: 0 0 auto !important;
    padding-left: 0.45rem !important;
    padding-right: 0.35rem !important;
    align-items: center !important;
}

.homepage-hero-suite--agency_showcase-inset .home-search-widget--pill .home-search-widget__field + .home-search-widget__field:not(.home-search-widget__field--submit) {
    border-left: 1px solid rgba(15, 23, 42, 0.08);
}

.homepage-hero-suite--agency_showcase-inset .home-search-widget--pill .home-search-widget__field > label {
    font-size: 0.62rem;
    margin-bottom: 0.12rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.72;
}

.homepage-hero-suite--agency_showcase-inset .home-search-widget--pill .home-search-widget__field input,
.homepage-hero-suite--agency_showcase-inset .home-search-widget--pill .home-search-widget__field select,
.homepage-hero-suite--agency_showcase-inset .home-search-widget--pill .home-search-widget__input-wrapper {
    font-size: 0.88rem;
    min-height: 1.35rem;
}

.homepage-hero-suite--agency_showcase-inset .home-search-widget--pill .home-search-widget__input-icon {
    width: 0.95rem;
    height: 0.95rem;
}

.homepage-hero-suite--agency_showcase-inset .home-search-widget--pill .home-search-widget__submit-btn-icon,
.homepage-hero-suite--agency_showcase-inset .home-search-widget--pill .home-search-widget__submit-btn-icon--labeled,
.homepage-hero-suite--agency_showcase-inset .home-search-widget--pill button[type="submit"] {
    padding: 0.55rem 1.15rem !important;
    min-width: 5rem;
    min-height: 2.45rem;
    height: 2.45rem;
    border-radius: 11px !important;
    font-size: 0.86rem;
}

.homepage-hero-suite--agency_showcase-inset .hero-showcase-pagination {
    bottom: clamp(1rem, 2.5vw, 1.75rem) !important;
    left: clamp(1.1rem, 3.5vw, 2.5rem) !important;
}

/* Story şeridi: aynı container ritmi */
body.homepage.theme-hero-suite-agency_showcase_inset .campaign-stories,
body.homepage:has(.homepage-hero-suite--agency_showcase-inset) .campaign-stories,
body.homepage.theme-hero-suite-agency_showcase_inset .campaign-stories--v2,
body.homepage:has(.homepage-hero-suite--agency_showcase-inset) .campaign-stories--v2 {
    margin-top: 0.85rem !important;
    margin-bottom: 1.35rem !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: none !important;
}

body.homepage.theme-hero-suite-agency_showcase_inset .campaign-stories--v2 .campaign-stories__track,
body.homepage:has(.homepage-hero-suite--agency_showcase-inset) .campaign-stories--v2 .campaign-stories__track {
    justify-content: center;
}

/* Tarih paneli: tur (tek ay / gizlenen native) dar kalabilir; otel 2 ay ~640px ister */
body.homepage:has(.homepage-hero-suite--agency_showcase-inset) .flatpickr-calendar.ac-fp-enhanced:not(.ac-fp-enhanced--hotel),
body.homepage.theme-hero-suite-agency_showcase_inset .flatpickr-calendar.ac-fp-enhanced:not(.ac-fp-enhanced--hotel) {
    max-width: min(420px, calc(100vw - 2rem)) !important;
    width: min(420px, calc(100vw - 2rem)) !important;
}
body.homepage:has(.homepage-hero-suite--agency_showcase-inset) .flatpickr-calendar.ac-fp-enhanced--hotel.multiMonth,
body.homepage.theme-hero-suite-agency_showcase_inset .flatpickr-calendar.ac-fp-enhanced--hotel.multiMonth {
    width: auto !important;
    min-width: min(640px, calc(100vw - 2rem)) !important;
    max-width: min(720px, calc(100vw - 2rem)) !important;
}

.homepage-hero-suite-banners--agency_showcase-inset {
    margin-top: 1.25rem !important;
}

body.homepage.theme-hero-suite-agency_showcase_inset .site-main,
body.homepage:has(.homepage-hero-suite--agency_showcase-inset) .site-main {
    max-width: var(--container-max-width, 1280px) !important;
    width: 100% !important;
}

/* Tablet+mobil: arama bindirmesini akışa al (absolute/translate kırılmasın) */
@media (max-width: 992px) {
    .homepage-hero-suite--agency_showcase .homepage-hero-suite__search-overlap {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin-top: -1.5rem;
        padding: 0 0.75rem 0.75rem;
        display: block;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        z-index: 30;
    }

    .homepage-hero-suite--agency_showcase .homepage-hero-suite__search-overlap .home-search-widget,
    .homepage-hero-suite--agency_showcase .homepage-hero-suite__search-overlap .home-search-widget--pill {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .homepage-hero-suite--agency_showcase-inset .hero-slider-wrapper--showcase .hero-slide::after {
        background:
            linear-gradient(
                180deg,
                rgba(15, 23, 42, 0.45) 0%,
                rgba(15, 23, 42, 0.18) 42%,
                transparent 70%
            );
    }

    .homepage-hero-suite--agency_showcase-inset .hero-showcase-content {
        align-items: flex-start !important;
        justify-content: flex-start !important;
        /* Metin bloğunu üst kenardan uzaklaştır */
        padding: 2.85rem 1rem 1.35rem !important;
    }

    .homepage-hero-suite--agency_showcase-inset .hero-showcase-copy {
        margin-top: 0.35rem;
    }

    .homepage-hero-suite--agency_showcase-inset .hero-showcase-title {
        max-width: 100%;
        font-size: clamp(1.5rem, 6vw, 2.1rem);
    }

    .homepage-hero-suite--agency_showcase-inset .hero-showcase-badge {
        font-size: 0.72rem;
    }

    .homepage-hero-suite--agency_showcase-inset .hero-showcase-desc {
        font-size: clamp(0.92rem, 3.2vw, 1.05rem);
    }

    .homepage-hero-suite--agency_showcase-inset .hero-showcase-pagination {
        bottom: 1rem !important;
        left: 1rem !important;
    }

    .homepage-hero-suite-banners--agency_showcase-inset {
        margin-top: 1rem !important;
    }

    .homepage-hero-suite--agency_showcase .home-search-widget--pill .home-search-widget__panel {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .homepage-slider-container.homepage-hero-suite--agency_showcase,
    .homepage-hero-suite--agency_showcase {
        margin-bottom: 1.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .homepage-slider-container.homepage-hero-suite--agency_showcase-inset,
    .homepage-hero-suite--agency_showcase-inset {
        margin-bottom: 1.25rem !important;
        padding-bottom: 0 !important;
    }
}

.homepage-hero-suite-banners--agency_showcase {
    margin-top: 5rem;
    padding: 0;
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    overflow-x: clip;
    box-sizing: border-box;
}

.homepage-hero-suite-banners--agency_showcase .mini-banner-marquee-v-wrapper,
.homepage-hero-suite-banners--agency_showcase .mini-banner-marquee-wrapper {
    margin-top: 0;
    margin-bottom: var(--space-8, 2rem);
    max-width: 100%;
    overflow-x: hidden;
}

/* Sabit dikey marquee: diğer anasayfa bloklarıyla aynı container genişliği */
.homepage-hero-suite-banners--agency_showcase .mini-banner-marquee-v-wrapper--static {
    max-width: var(--container-max-width, 1280px);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-4, 1rem);
    padding-right: var(--space-4, 1rem);
    overflow: visible;
    overflow-x: visible;
}

/* Tablet: arama motoru yan yana sıkışmasın — dikey kart */
@media (max-width: 1100px) {
    .homepage-hero-suite--agency_showcase .home-search-widget--pill .home-search-widget__panel {
        border-radius: 18px;
        padding: 0.85rem;
    }

    .homepage-hero-suite--agency_showcase .home-search-widget--pill .home-search-widget__fields {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        gap: 0.5rem !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        min-height: 0 !important;
    }

    .homepage-hero-suite--agency_showcase .home-search-widget--pill .home-search-widget__field,
    .homepage-hero-suite--agency_showcase-inset .home-search-widget--pill .home-search-widget__field,
    .homepage-hero-suite--agency_showcase-inset .home-search-widget__tab-content[data-search-tab="hotel"] .home-search-widget__field--destination,
    .homepage-hero-suite--agency_showcase-inset .home-search-widget__tab-content[data-search-tab="hotel"] .home-search-widget__field:has(#hotel_destination),
    .homepage-hero-suite--agency_showcase-inset .home-search-widget__tab-content[data-search-tab="hotel"] .home-search-widget__field--dates,
    .homepage-hero-suite--agency_showcase-inset .home-search-widget__tab-content[data-search-tab="hotel"] .home-search-widget__field--guests,
    .homepage-hero-suite--agency_showcase-inset .home-search-widget__tab-content[data-search-tab="tour"] .home-search-widget__field:not(.home-search-widget__field--submit) {
        flex: 0 0 auto !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        border: 1px solid rgba(15, 23, 42, 0.1) !important;
        border-left: 1px solid rgba(15, 23, 42, 0.1) !important;
        background: var(--gray-50, #f8fafc) !important;
        border-radius: 12px !important;
        padding: 0.65rem 0.8rem !important;
    }

    .homepage-hero-suite--agency_showcase .home-search-widget--pill .home-search-widget__field--submit,
    .homepage-hero-suite--agency_showcase-inset .home-search-widget--pill .home-search-widget__field--submit {
        flex: 0 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        border: none !important;
        background: transparent !important;
        padding: 0.1rem 0 0 !important;
        box-shadow: none !important;
    }

    .homepage-hero-suite--agency_showcase .home-search-widget--pill .home-search-widget__field--submit > label {
        display: none !important;
    }

    .homepage-hero-suite--agency_showcase .home-search-widget--pill button[type="submit"],
    .homepage-hero-suite--agency_showcase-inset .home-search-widget--pill button[type="submit"],
    .homepage-hero-suite--agency_showcase-inset .home-search-widget--pill .home-search-widget__submit-btn-icon--labeled {
        width: 100% !important;
        min-height: 48px !important;
        justify-content: center !important;
        border-radius: 12px !important;
    }

    .homepage-hero-suite--agency_showcase .home-search-widget--pill .home-search-widget__submit-label {
        display: inline !important;
    }

    .homepage-hero-suite--agency_showcase .home-search-widget--pill .home-search-widget__field input,
    .homepage-hero-suite--agency_showcase .home-search-widget--pill .home-search-widget__field select {
        min-width: 0 !important;
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 768px) {
    .homepage-slider-container.homepage-hero-suite--agency_showcase,
    .homepage-hero-suite--agency_showcase {
        margin-bottom: 1.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    /* Mobil slider: aspect-ratio esas; min-height çakışmasını kaldır */
    .homepage-hero-suite--agency_showcase .hero-slider-wrapper,
    .homepage-hero-suite--agency_showcase .hero-slider-wrapper--showcase {
        aspect-ratio: var(--hero-suite-mobile-ar, 4 / 3) !important;
        min-height: 0 !important;
        max-height: min(70vh, var(--hero-suite-mobile-max-h, 560px));
        height: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .homepage-hero-suite--agency_showcase .hero-slider,
    .homepage-hero-suite--agency_showcase .hero-slide,
    .homepage-hero-suite--agency_showcase .swiper,
    .homepage-hero-suite--agency_showcase .swiper-slide {
        border-radius: 0 !important;
    }

    .homepage-hero-suite--agency_showcase-tall .hero-slider-wrapper {
        max-height: min(75vh, var(--hero-suite-mobile-max-h, 600px));
    }

    .homepage-hero-suite--agency_showcase .hero-showcase-content {
        padding: 2.35rem 0.85rem 1.25rem;
    }

    .homepage-hero-suite--agency_showcase-inset .hero-showcase-content {
        padding: 2.85rem 0.85rem 1.35rem !important;
    }

    .homepage-hero-suite--agency_showcase .homepage-hero-suite__search-overlap {
        margin-top: -1rem;
        padding: 0 0.75rem 0.85rem;
    }

    /* Pill alanlar mobilde kesin dikey stack */
    .homepage-hero-suite--agency_showcase .home-search-widget--pill .home-search-widget__fields {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        gap: 0.45rem !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
    }

    .homepage-hero-suite--agency_showcase .home-search-widget--pill .home-search-widget__field,
    .homepage-hero-suite--agency_showcase-inset .home-search-widget--pill .home-search-widget__field,
    .homepage-hero-suite--agency_showcase-inset .home-search-widget__tab-content[data-search-tab="hotel"] .home-search-widget__field--destination,
    .homepage-hero-suite--agency_showcase-inset .home-search-widget__tab-content[data-search-tab="hotel"] .home-search-widget__field:has(#hotel_destination),
    .homepage-hero-suite--agency_showcase-inset .home-search-widget__tab-content[data-search-tab="hotel"] .home-search-widget__field--dates,
    .homepage-hero-suite--agency_showcase-inset .home-search-widget__tab-content[data-search-tab="hotel"] .home-search-widget__field--guests,
    .homepage-hero-suite--agency_showcase-inset .home-search-widget__tab-content[data-search-tab="tour"] .home-search-widget__field:not(.home-search-widget__field--submit) {
        flex: 0 0 auto !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        border-left: 1px solid rgba(15, 23, 42, 0.1) !important;
    }

    .homepage-hero-suite--agency_showcase .home-search-widget--pill .home-search-widget__field--submit,
    .homepage-hero-suite--agency_showcase-inset .home-search-widget--pill .home-search-widget__field--submit {
        flex: 0 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        border: none !important;
        background: transparent !important;
    }

    .homepage-hero-suite--agency_showcase .home-search-widget--pill button[type="submit"],
    .homepage-hero-suite--agency_showcase-inset .home-search-widget--pill button[type="submit"],
    .homepage-hero-suite--agency_showcase-inset .home-search-widget--pill .home-search-widget__submit-btn-icon--labeled {
        width: 100% !important;
        min-height: 48px !important;
        justify-content: center !important;
    }

    .homepage-hero-suite--agency_showcase .home-search-widget--pill .home-search-widget__header-tabs {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        max-width: 100%;
    }

    .homepage-hero-suite--agency_showcase .home-search-widget--pill .home-search-widget__header-tabs::-webkit-scrollbar {
        display: none;
    }

    .homepage-hero-suite-banners--agency_showcase {
        margin-top: 1.25rem;
    }

    /* Mobil: dikey mini banner grid kenardan kenara */
    .homepage-hero-suite-banners--agency_showcase .mini-banner-marquee-v-wrapper--static {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .homepage-hero-suite--agency_showcase .homepage-hero-suite__search-overlap {
        padding: 0 0.5rem 0.75rem;
        margin-top: -0.75rem;
    }

    .homepage-hero-suite--agency_showcase .home-search-widget--pill .home-search-widget__panel {
        padding: 0.65rem !important;
        border-radius: 16px !important;
    }
}

.home-search-widget--card .home-search-widget__panel {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    padding: 1rem;
}

.home-search-widget--inline .home-search-widget__fields--row {
    flex-wrap: nowrap;
}

/* Tur / otel destinasyon önerileri — panel taşmasın diye kesilmesin; alt içerığın üstünde kalsın */
.home-search-widget.is-tour-suggestions-open,
.home-search-widget.is-hotel-suggestions-open {
    position: relative;
    z-index: 200;
}

/*
 * Hero kapsayıcı z-index:1 stacking context oluşturuyor; vitrin kartlarındaki
 * z-index:2 katmanları (home-vitrine__tile-copy) belge kökünde listenin üstüne biner.
 * Liste açıkken hero + arama bindirmesini kartların üstüne çıkar, overflow clip’i kapat.
 */
.homepage-slider-container:has(.is-tour-suggestions-open),
.homepage-slider-container:has(.is-hotel-suggestions-open),
.homepage-hero-suite:has(.is-tour-suggestions-open),
.homepage-hero-suite:has(.is-hotel-suggestions-open) {
    z-index: 50;
    overflow: visible;
}

.homepage-slider-container.homepage-hero-suite--agency_showcase:has(.is-tour-suggestions-open),
.homepage-slider-container.homepage-hero-suite--agency_showcase:has(.is-hotel-suggestions-open),
.homepage-hero-suite--agency_showcase:has(.is-tour-suggestions-open),
.homepage-hero-suite--agency_showcase:has(.is-hotel-suggestions-open) {
    z-index: 50;
    overflow: visible !important;
}

.homepage-hero-suite--agency_showcase:has(.is-tour-suggestions-open) .homepage-hero-suite__search-overlap,
.homepage-hero-suite--agency_showcase:has(.is-hotel-suggestions-open) .homepage-hero-suite__search-overlap {
    z-index: 50;
    overflow: visible;
}
.home-search-widget.is-tour-suggestions-open .home-search-widget__panel,
.home-search-widget.is-tour-suggestions-open .home-search-widget__tab-content[data-search-tab="tour"],
.home-search-widget.is-tour-suggestions-open .home-search-widget__form,
.home-search-widget.is-tour-suggestions-open .home-search-widget__fields,
.home-search-widget.is-tour-suggestions-open .home-search-widget__field,
.home-search-widget.is-tour-suggestions-open .home-search-widget__destination-wrap,
.home-search-widget.is-tour-suggestions-open .home-search-widget__input-wrapper,
.home-search-widget--minimal.is-tour-suggestions-open .home-search-widget__form,
.home-search-widget.is-hotel-suggestions-open .home-search-widget__panel,
.home-search-widget.is-hotel-suggestions-open .home-search-widget__tab-content[data-search-tab="hotel"],
.home-search-widget.is-hotel-suggestions-open .home-search-widget__form,
.home-search-widget.is-hotel-suggestions-open .home-search-widget__fields,
.home-search-widget.is-hotel-suggestions-open .home-search-widget__field,
.home-search-widget.is-hotel-suggestions-open .home-search-widget__destination-wrap,
.home-search-widget.is-hotel-suggestions-open .home-search-widget__input-wrapper,
.home-search-widget--portal-solo.is-tour-suggestions-open .home-search-widget__panel,
.home-search-widget--portal-solo.is-hotel-suggestions-open .home-search-widget__panel,
.home-search-widget--card.is-tour-suggestions-open .home-search-widget__panel,
.home-search-widget--card.is-hotel-suggestions-open .home-search-widget__panel,
.home-search-widget--bar.is-tour-suggestions-open .home-search-widget__panel,
.home-search-widget--bar.is-hotel-suggestions-open .home-search-widget__panel,
.home-search-widget--catalog.is-tour-suggestions-open .home-search-widget__panel,
.home-search-widget--catalog.is-hotel-suggestions-open .home-search-widget__panel {
    overflow: visible;
}
.tour-suggestions-dropdown {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    margin-top: 0;
    background: #fff;
    border: 1px solid var(--gray-200, #e5e7eb);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    max-height: 280px;
    overflow-y: auto;
    z-index: 10050;
}
.tour-suggestions-dropdown__item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    text-align: left;
    border: none;
    background: transparent;
    font-size: 14px;
    color: var(--gray-800, #1f2937);
    cursor: pointer;
    transition: background 0.15s;
}
.tour-suggestions-dropdown__item:hover,
.tour-suggestions-dropdown__item:focus {
    background: var(--gray-100, #f3f4f6);
}
.tour-suggestions-dropdown__item + .tour-suggestions-dropdown__item {
    border-top: 1px solid var(--gray-100, #f3f4f6);
}
.hotel-suggestions-dropdown__type {
    flex: 0 0 auto;
    min-width: 3.25rem;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--gray-500, #6b7280);
}
.hotel-suggestions-dropdown__name {
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Banner modifiers */
.mini-banner-carousel-wrapper.mini-banner--strip .mini-banner-carousel,
.mini-banner--strip .mini-banner-carousel {
    max-height: 88px;
}

.mini-banner-carousel-wrapper.mini-banner--strip .mini-banner-card::before,
.mini-banner--strip .mini-banner-card::before {
    padding-top: 22% !important;
}

.mini-banner-grid-wrapper.mini-banner--stack .mini-banner-grid,
.mini-banner--stack .mini-banner-grid {
    grid-template-columns: 1fr !important;
}

.mini-banner-grid-wrapper.mini-banner--duo .mini-banner-grid,
.mini-banner--duo .mini-banner-grid {
    grid-template-columns: repeat(2, 1fr) !important;
}

.mini-banner-grid-wrapper.mini-banner--duo .mini-banner-grid--cols-3,
.mini-banner-grid-wrapper.mini-banner--duo .mini-banner-grid--cols-4,
.mini-banner-grid-wrapper.mini-banner--stack .mini-banner-grid--cols-2,
.mini-banner-grid-wrapper.mini-banner--stack .mini-banner-grid--cols-3,
.mini-banner-grid-wrapper.mini-banner--stack .mini-banner-grid--cols-4 {
    grid-template-columns: inherit;
}

/* Tour overlay & featured & compact */
.tour-card--overlay {
    border: none;
    overflow: hidden;
}

.tour-card-overlay-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.tour-card-overlay-media {
    min-height: 220px;
    background-size: cover;
    background-position: center;
    background-color: var(--gray-200);
}

.tour-card-overlay-gradient {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.75) 100%);
    color: #fff;
}

.tour-card-overlay-title {
    margin: 0.5rem 0 0;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tour-card-overlay-price {
    margin: 0.25rem 0 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

/* Tur / otel / hizmet kartı — poster (afiş) */
.tour-card.tour-card--poster,
.hotel-card.hotel-card--poster,
.service-card.service-card--poster {
    height: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.tour-card-poster-link,
.tour-card-poster-photo {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    text-decoration: none;
    color: inherit;
}

.tour-card-poster-media,
.hotel-card-poster-media,
.service-card-poster-media {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 3 / 4;
    background: var(--gray-200, #e5e7eb);
    overflow: hidden;
}

.tour-card.tour-card--poster,
.hotel-card.hotel-card--poster,
.service-card.service-card--poster {
    --poster-rail: 56px;
    position: relative;
    flex-direction: row;
    align-items: stretch;
}

.tour-card-poster-main {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-inline-end: var(--poster-rail, 56px);
}

.tour-card.tour-card--poster .tour-card-poster-media,
.hotel-card.hotel-card--poster .tour-card-poster-media,
.service-card.service-card--poster .tour-card-poster-media {
    display: block;
    flex: 1 1 auto;
}

.tour-card-poster-photo {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.tour-card-poster-media img,
.hotel-card-poster-media img,
.service-card-poster-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.tour-card--poster:hover .tour-card-poster-media img,
.hotel-card--poster:hover .tour-card-poster-media img,
.hotel-card--poster:hover .hotel-card-poster-media img,
.service-card--poster:hover .tour-card-poster-media img,
.service-card--poster:hover .service-card-poster-media img {
    transform: scale(1.04);
}

.tour-card-poster-media .tour-card-image-placeholder,
.hotel-card-poster-media .hotel-card__image-placeholder,
.service-card-poster-media .service-card__placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-card-poster-badge,
.service-card-poster-chip {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--gray-900, #111827);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.tour-card-poster-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    padding: 2.4rem 0.75rem 0.85rem 0.9rem;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.78) 70%);
    text-align: left;
}

.tour-card-poster-caption-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
}

.tour-card-poster-chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.tour-card--poster .tour-card-poster-chips .badge-duration,
.tour-card--poster .tour-card-poster-chips .tour-card-dates-btn,
.hotel-card--poster .tour-card-poster-chips .badge-duration,
.service-card--poster .tour-card-poster-chips .badge-duration {
    margin: 0;
    min-height: 28px;
    animation: none;
}

.tour-card--poster .tour-card-poster-chips .tour-card-dates-btn {
    border-radius: 999px;
    padding: 5px 14px;
}

.tour-card-poster-rail {
    position: absolute;
    z-index: 3;
    inset-block: 0;
    inset-inline-end: 0;
    flex: none;
    width: var(--poster-rail, 56px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px 6px 12px;
    background: #fff;
    border-left: 1px solid var(--gray-100, #f3f4f6);
    overflow: hidden;
}

.tour-card-poster-rail .fav-btn,
.tour-card-poster-rail .td-share-toggle.fav-btn {
    position: static;
    width: 36px;
    height: 36px;
    box-shadow: none;
}

.tour-card-poster-rail .td-share {
    display: inline-flex;
}

.tour-card-poster-labels {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1 1 0;
    min-height: 0;
    width: 100%;
    overflow: hidden;
    padding-top: 8px;
}

.tour-card-poster-labels::before {
    content: "";
    flex: 0 0 auto;
    width: 14px;
    height: 1px;
    margin-bottom: 2px;
    background: linear-gradient(90deg, transparent, var(--gray-200, #e5e7eb) 20%, var(--gray-200, #e5e7eb) 80%, transparent);
}

.tour-card-poster-label {
    --poster-label: #c2410c;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 26px;
    flex: 0 0 auto;
    padding: 12px 0;
    border: 0;
    border-radius: 999px;
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--poster-label) 10%, #fff) 0%, #fff 100%);
    color: color-mix(in srgb, var(--poster-label) 82%, #111827);
    box-shadow:
        inset 0 0 0 1px color-mix(in srgb, var(--poster-label) 16%, #e5e7eb),
        0 4px 12px rgba(15, 23, 42, 0.05);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    transition: box-shadow 0.25s ease;
}

.tour-card-poster-label::before {
    content: "";
    flex: 0 0 auto;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--poster-label);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--poster-label) 14%, transparent);
}

.tour-card--poster:hover .tour-card-poster-label,
.hotel-card--poster:hover .tour-card-poster-label,
.service-card--poster:hover .tour-card-poster-label {
    box-shadow:
        inset 0 0 0 1px color-mix(in srgb, var(--poster-label) 24%, #e5e7eb),
        0 6px 16px rgba(15, 23, 42, 0.08);
}

.tour-card--poster .tour-card-poster-cta,
.hotel-card--poster .tour-card-poster-cta,
.service-card--poster .tour-card-poster-cta,
.cards-grid .tour-card--poster a.tour-card-cta.tour-card-poster-cta.btn,
.cards-grid .hotel-card--poster a.tour-card-cta.tour-card-poster-cta.btn,
.cards-grid .service-card--poster a.tour-card-cta.tour-card-poster-cta.btn,
.home-cards-carousel .tour-card--poster a.tour-card-cta.tour-card-poster-cta.btn,
.home-cards-carousel .hotel-card--poster a.tour-card-cta.tour-card-poster-cta.btn,
.home-cards-carousel .service-card--poster a.tour-card-cta.tour-card-poster-cta.btn,
.theme-buttons-pill .tour-card--poster .tour-card-poster-cta,
.theme-buttons-pill .hotel-card--poster .tour-card-poster-cta,
.theme-buttons-pill .service-card--poster .tour-card-poster-cta,
.theme-buttons-rounded .tour-card--poster .tour-card-poster-cta,
.theme-buttons-rounded .hotel-card--poster .tour-card-poster-cta,
.theme-buttons-rounded .service-card--poster .tour-card-poster-cta,
.theme-buttons-square .tour-card--poster .tour-card-poster-cta,
.theme-buttons-square .hotel-card--poster .tour-card-poster-cta,
.theme-buttons-square .service-card--poster .tour-card-poster-cta {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 48px;
    padding: 0 1rem;
    border: 0;
    border-radius: 0 !important;
    border-bottom-left-radius: var(--radius-lg, 12px) !important;
    justify-content: center;
    align-items: center;
}

.tour-card--poster .tour-card-poster-cta:hover,
.hotel-card--poster .tour-card-poster-cta:hover,
.service-card--poster .tour-card-poster-cta:hover {
    transform: none;
}

.tour-card-poster-plate,
.hotel-card-poster-plate,
.service-card-poster-plate {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.85rem 0.95rem 1rem;
    background: #fff;
    flex: 0 0 auto;
}

.tour-card--poster .tour-card-poster-plate,
.hotel-card--poster .tour-card-poster-plate,
.service-card--poster .tour-card-poster-plate {
    align-items: stretch;
    padding: 0;
    min-height: 48px;
}

.tour-card-poster-title,
.hotel-card-poster-title,
.service-card-poster-title {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.3;
    text-transform: uppercase;
    color: var(--gray-900, #111827);
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tour-card--poster .tour-card-poster-title,
.hotel-card--poster .tour-card-poster-title,
.service-card--poster .tour-card-poster-title {
    flex: 1 1 auto;
    min-width: 0;
    color: #fff;
    text-align: left;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.tour-card--poster .tour-card-poster-title a,
.hotel-card--poster .tour-card-poster-title a,
.service-card--poster .tour-card-poster-title a,
.hotel-card--poster:hover .tour-card-poster-title,
.hotel-card--poster:hover .tour-card-poster-title a,
.service-card--poster:hover .tour-card-poster-title,
.service-card--poster:hover .tour-card-poster-title a {
    color: inherit;
    text-decoration: none;
}

.tour-card--poster .tour-card-poster-caption-row .tour-card-poster-price,
.hotel-card--poster .tour-card-poster-caption-row .tour-card-poster-price,
.service-card--poster .tour-card-poster-caption-row .tour-card-poster-price {
    flex: 0 0 auto;
    align-items: flex-end;
    text-align: right;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.tour-card-poster-price,
.hotel-card-poster-price {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
}

.tour-card-poster-price-label,
.hotel-card-poster-price-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary);
}

.tour-card--poster .tour-card-poster-price-label,
.hotel-card--poster .tour-card-poster-price-label,
.service-card--poster .tour-card-poster-price-label {
    color: rgba(255, 255, 255, 0.82);
}

.tour-card-poster-price strong,
.hotel-card-poster-price strong {
    font-size: 1rem;
    font-weight: 800;
    color: var(--gray-900, #111827);
}

.tour-card--poster .tour-card-poster-price strong,
.hotel-card--poster .tour-card-poster-price strong,
.service-card--poster .tour-card-poster-price strong {
    color: #fff;
}

.tour-card--poster .tour-card-poster-price strong.is-muted,
.hotel-card--poster .tour-card-poster-price strong.is-muted,
.service-card--poster .tour-card-poster-price strong.is-muted {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
}

.tour-card--poster .tour-card-poster-price .price-try-hint {
    color: rgba(255, 255, 255, 0.78);
}

.hotel-card-poster-price--muted {
    font-size: 0.85rem;
    color: var(--gray-500, #6b7280);
}

.service-card-poster-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
}

@media (prefers-reduced-motion: reduce) {
    .tour-card-poster-media img,
    .hotel-card-poster-media img,
    .service-card-poster-media img,
    .tour-card-poster-label {
        transition: none;
    }
}

@media (max-width: 767px) {
    .tour-card--poster:hover .tour-card-poster-media img,
    .hotel-card--poster:hover .tour-card-poster-media img,
    .hotel-card--poster:hover .hotel-card-poster-media img,
    .service-card--poster:hover .tour-card-poster-media img,
    .service-card--poster:hover .service-card-poster-media img {
        transform: none;
    }

    .tour-card.tour-card--poster,
    .hotel-card.hotel-card--poster,
    .service-card.service-card--poster {
        --poster-rail: 48px;
    }

    .tour-card-poster-rail {
        width: var(--poster-rail, 48px);
        padding: 8px 4px 10px;
        gap: 6px;
    }

    .tour-card-poster-label {
        width: 22px;
        padding: 10px 0;
        font-size: 0.56rem;
        letter-spacing: 0.12em;
    }

    .tour-card-poster-label::before {
        width: 4px;
        height: 4px;
    }

    .tour-card-poster-caption {
        padding-right: 0.55rem;
    }
}

.tour-card--featured {
    border: 2px solid var(--primary);
    box-shadow: 0 8px 24px rgba(var(--primary-rgb, 237, 75, 37), 0.15);
}

.tour-card--featured .tour-card-title a {
    font-size: 1.05rem;
}

.tour-card-featured-white {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 0;
}

.tour-card-featured-meta {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    font-size: 0.8125rem;
    line-height: 1.35;
    color: var(--gray-600);
}

.tour-card-featured-meta__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.tour-card-featured-meta__icon {
    flex-shrink: 0;
    display: inline-flex;
    color: var(--gray-500);
    opacity: 0.88;
}

.tour-card-featured-meta__text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tour-card-featured-campaigns {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tour-card-featured-campaign {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
    background: rgba(var(--primary-rgb, 237, 75, 37), 0.1);
    color: var(--primary, #ed4b25);
}

.tour-card--featured .tour-card-dates-btn--below {
    animation: none;
    width: 100%;
    justify-content: center;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid var(--gray-200, #e5e7eb);
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    font-size: 0.8rem;
    font-weight: 650;
}

.tour-card--featured .tour-card-dates-btn--below:hover {
    border-color: var(--primary, #ed4b25);
    background: #fff7ed;
    transform: none;
}

.tour-card--featured .badge-duration {
    max-width: 100%;
    white-space: nowrap;
}

.tour-card--compact .tour-card-content {
    padding: 0.65rem 0.75rem;
}

.tour-card--compact .tour-card-image {
    height: 160px;
}

.tour-card--compact .tour-card-title a {
    font-size: 0.9rem;
}

/* Hotel overlay & featured & compact */
.hotel-card--overlay {
    border: none;
    overflow: hidden;
}

.hotel-card__image--overlay {
    position: relative;
    min-height: 200px;
}

.hotel-card__image--overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-card__overlay-content {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1rem;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.8));
    color: #fff;
}

.hotel-card__overlay-content .hotel-card__title {
    color: #fff;
    margin: 0 0 0.25rem;
}

.hotel-card__overlay-content .hotel-card__price-value,
.hotel-card__overlay-content .hotel-card__price-curr,
.hotel-card__overlay-content .hotel-card__price-unit {
    color: #fff;
}

.hotel-card__overlay-content .hotel-card__price-value {
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* Anasayfa kayar (carousel) kart şeridi */
.home-cards-carousel {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}
.home-cards-carousel__track {
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
    justify-content: flex-start;
    /* gap + scroll-snap iOS’ta ilk karede aralığı şişirir; margin kullan */
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    padding: 0.2rem 0 0.65rem;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
}
.home-cards-carousel__track::-webkit-scrollbar {
    display: none;
}
.home-cards-carousel__track > * {
    box-sizing: border-box;
    flex: 0 0 clamp(15.5rem, 26vw, 19.5rem);
    width: clamp(15.5rem, 26vw, 19.5rem);
    max-width: 19.5rem;
    min-width: 0;
    height: auto;
    align-self: stretch;
    scroll-snap-align: start;
    scroll-margin-inline: 0;
    margin: 0;
    margin-inline-end: 1rem;
}
.home-cards-carousel__track > *:last-child {
    margin-inline-end: 0;
}
.home-cards-carousel__nav {
    flex: 0 0 auto;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: 1px solid var(--border-color, #e5e7eb);
    background: #fff;
    color: var(--secondary, #0f2744);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.home-cards-carousel__nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.home-cards-carousel__nav:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.tour-card--carousel,
.hotel-card--carousel,
.service-card--carousel {
    height: auto;
    display: flex;
    flex-direction: column;
    background: var(--surface, #fff);
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.tour-card--carousel:hover,
.hotel-card--carousel:hover,
.service-card--carousel:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.tour-card-carousel-link {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    text-decoration: none;
    color: inherit;
}

.tour-card-carousel-media,
.hotel-card-carousel-media,
.service-card-carousel-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    flex: 0 0 auto;
    background: var(--gray-200, #e5e7eb);
    overflow: hidden;
}
.tour-card-carousel-media img,
.hotel-card-carousel-media img,
.service-card-carousel-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tour-card-carousel-badge,
.service-card-carousel-chip {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--gray-900, #111827);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.tour-card-carousel-body,
.hotel-card-carousel-body,
.service-card-carousel-body {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.85rem 0.95rem 1rem;
    background: #fff;
    flex: 1 1 auto;
    min-width: 0;
}

.tour-card-carousel-title,
.hotel-card-carousel-title,
.service-card-carousel-title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--gray-900, #111827);
    display: block;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tour-card-carousel-price,
.hotel-card-carousel-price {
    margin: 0;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.tour-card-carousel-price-label,
.hotel-card-carousel-price-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--primary);
}
.tour-card-carousel-price strong,
.hotel-card-carousel-price strong {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--gray-900, #111827);
    letter-spacing: -0.02em;
}
.hotel-card-carousel-price--muted {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-card-carousel-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
}

@media (max-width: 720px) {
    .home-cards-carousel {
        gap: 0;
        display: block;
        width: calc(100% + var(--space-4, 1rem));
        max-width: none;
        margin-right: calc(-1 * var(--space-4, 1rem));
        overflow: hidden;
    }
    .home-cards-carousel__nav {
        display: none;
    }
    .home-cards-carousel__track {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: calc(100% - 1rem);
        column-gap: 0.5rem;
        align-items: start;
        justify-content: start;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0.2rem 0 0.65rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: none;
        scroll-padding: 0;
        scroll-behavior: auto;
        -webkit-overflow-scrolling: touch;
    }
    .home-cards-carousel__track > * {
        flex: none;
        width: auto;
        max-width: none;
        min-width: 0;
        height: auto;
        align-self: start;
        margin: 0;
        scroll-snap-align: none;
        scroll-margin: 0;
    }
    .home-cards-carousel__track > *:last-child {
        margin: 0;
    }
    .home-cards-carousel__track .tour-card,
    .home-cards-carousel__track .hotel-card,
    .home-cards-carousel__track .service-card,
    .home-cards-carousel__track .tour-card-carousel-link {
        height: auto;
        width: 100%;
        max-width: none;
    }
    .home-cards-carousel__track .tour-card-carousel-body,
    .home-cards-carousel__track .hotel-card-carousel-body,
    .home-cards-carousel__track .service-card-carousel-body {
        flex: 0 0 auto;
    }
    .home-cards-carousel__track .tour-card-carousel-price,
    .home-cards-carousel__track .hotel-card-carousel-price,
    .home-cards-carousel__track .service-card-carousel-cta {
        margin-top: 0.15rem;
    }
}

.hotel-card--featured .hotel-card__duration {
    max-width: 100%;
    white-space: nowrap;
}

.hotel-card--compact .hotel-card__content {
    padding: 0.65rem 0.75rem;
}

.hotel-card--compact .hotel-card__title {
    font-size: 0.9rem;
}

/* Footer variants */
.site-footer--minimal .footer-grid,
.site-footer--minimal .footer-legal {
    display: none !important;
}

.site-footer--minimal .footer-bottom {
    padding: 1.25rem 0;
    border-top: none;
}

.site-footer--centered .footer-grid {
    text-align: center;
}

.site-footer--centered .footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-footer--centered .footer-links {
    align-items: center;
}

.site-footer--centered .footer-bottom-inner {
    justify-content: center;
    text-align: center;
}

/* Footer — Ajans (çok katmanlı) */
.site-footer.site-footer--agency {
    background: var(--fa-bg, var(--gray-900)) !important;
    color: var(--fa-text, #e5e5e5) !important;
    padding: 0;
    margin-top: var(--space-8, 2.5rem);
}

.site-footer--agency .footer-container {
    max-width: var(--container-max-width, 1200px);
}

.site-footer--agency .footer-agency-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem 1.5rem;
    padding: 2.5rem 0 1.5rem;
}

@media (min-width: 768px) {
    .site-footer--agency .footer-agency-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1100px) {
    .site-footer--agency .footer-agency-grid {
        grid-template-columns: minmax(210px, 1.25fr) repeat(auto-fit, minmax(140px, 1fr));
        align-items: start;
    }
    .site-footer--agency .footer-agency-brand {
        grid-column: 1;
    }
    .site-footer--agency .footer-agency-campaigns {
        min-width: 180px;
    }
}

.site-footer--agency .footer-section-title {
    color: var(--fa-title, #fff) !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    margin: 0 0 0.85rem !important;
}

.site-footer--agency .footer-links a,
.site-footer--agency .footer-links li {
    color: var(--fa-link, #d1d1d1) !important;
    font-size: 0.85rem !important;
}

.site-footer--agency .footer-links a:hover {
    color: #fff !important;
    opacity: 1;
}

.site-footer--agency .footer-agency-logo img {
    max-width: var(--fa-logo-w, 200px);
    max-height: var(--fa-logo-h, 60px);
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.site-footer--agency .footer-agency-slogan {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0.35rem 0 0.65rem;
    font-size: 0.82rem;
    color: var(--fa-text, #e5e5e5);
    opacity: 0.92;
}

.site-footer--agency .footer-tursab-doc {
    font-size: 0.75rem !important;
    line-height: 1.45 !important;
    color: var(--fa-link, #d1d1d1) !important;
    opacity: 0.88;
    margin: 0 0 1rem;
    max-width: 22rem;
}

.site-footer--agency .footer-tursab-doc a {
    color: inherit;
    text-decoration: none;
}

.site-footer--agency .footer-tursab-doc a:hover {
    text-decoration: underline;
}

.site-footer--agency .footer-agency-actions {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    max-width: 17rem;
}

.site-footer--agency .footer-agency-action {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: var(--fa-btn);
    border: 1px solid var(--fa-btn-border);
    color: var(--fa-title, #fff) !important;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
    transition: background 0.15s ease, transform 0.15s ease;
}

.site-footer--agency .footer-agency-action:hover {
    background: var(--fa-btn-hover, rgba(255,255,255,0.2));
    color: var(--fa-title, #fff) !important;
}

.site-footer--agency .footer-agency-banners {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.site-footer--agency .footer-agency-banner {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    min-height: 72px;
}

.site-footer--agency .footer-agency-banner img {
    display: block;
    width: 100%;
    height: 88px;
    object-fit: cover;
}

.site-footer--agency .footer-agency-engage {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem 2rem;
    padding: 0.5rem 0 1.25rem;
    border-top: 1px solid var(--fa-border, #404040);
}

.site-footer--agency .footer-agency-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.35rem;
}

.site-footer--agency .footer-agency-socials .social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent !important;
    border: 1px solid var(--fa-btn-border);
    color: var(--fa-title, #fff) !important;
}

.site-footer--agency .footer-agency-socials .social-btn svg,
.site-footer--agency .footer-agency-socials .social-btn .social-brand-icon {
    color: var(--fa-title, #fff) !important;
    fill: currentColor;
    -webkit-text-fill-color: currentColor;
}

.site-footer--agency .footer-agency-socials .social-btn:hover {
    background: var(--fa-btn) !important;
    transform: translateY(-2px);
}

.site-footer--agency .footer-newsletter {
    flex: 1 1 22rem;
    max-width: 44rem;
    position: relative;
}

.site-footer--agency .footer-newsletter__title {
    margin: 0 0 0.65rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--fa-title, #fff);
}

.site-footer--agency .footer-newsletter__row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: stretch;
}

.site-footer--agency .footer-newsletter__row input[type="email"] {
    flex: 1 1 12rem;
    min-height: 44px;
    border: 0;
    border-radius: 10px;
    padding: 0.65rem 1rem;
    background: var(--fa-input);
    color: var(--fa-title, #fff);
    font-size: 0.9rem;
}

.site-footer--agency .footer-newsletter__row input[type="email"]::placeholder {
    color: var(--fa-link, #d1d1d1);
    opacity: 0.8;
}

.site-footer--agency .footer-newsletter__row button {
    min-height: 44px;
    padding: 0 1.35rem;
    border: 0;
    border-radius: 10px;
    background: var(--fa-cta-bg, #fff);
    color: var(--fa-cta-text, #4a1d4f);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    cursor: pointer;
}

.site-footer--agency .footer-newsletter__row button:disabled {
    opacity: 0.65;
    cursor: wait;
}

.site-footer--agency .footer-newsletter__hint {
    margin: 0.55rem 0 0;
    font-size: 0.68rem;
    line-height: 1.45;
    color: var(--fa-link, #d1d1d1);
    opacity: 0.85;
}

.site-footer--agency .footer-newsletter__msg {
    margin: 0.4rem 0 0;
    font-size: 0.8rem;
    min-height: 1.1em;
}

.site-footer--agency .footer-newsletter__msg.is-ok { color: #86efac; }
.site-footer--agency .footer-newsletter__msg.is-err { color: #fecaca; }

.site-footer--agency .footer-newsletter__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.site-footer--agency .footer-agency-disclaimer {
    margin: 0;
    padding: 0 0 1.25rem;
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--fa-link, #d1d1d1);
    opacity: 0.9;
}

.site-footer--agency .footer-agency-legal {
    background: var(--fa-legal);
    padding: 0.7rem 0;
    overflow-x: auto;
}

.site-footer--agency .footer-agency-legal .footer-container {
    max-width: var(--container-max-width, 1200px);
}

.site-footer--agency .footer-agency-legal__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
}

.site-footer--agency .footer-agency-legal__list li {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.site-footer--agency .footer-agency-legal__list li:not(:last-child)::after {
    content: "•";
    display: inline-block;
    margin: 0 0.5rem;
    color: var(--fa-link, #d1d1d1);
    opacity: 0.65;
    font-size: 0.65rem;
    line-height: 1;
    flex: 0 0 auto;
}

.site-footer--agency .footer-agency-legal__list a {
    color: var(--fa-title, #fff) !important;
    text-decoration: none;
    font-size: 0.72rem;
    line-height: 1.3;
    padding: 0.15rem 0;
    white-space: nowrap;
}

.site-footer--agency .footer-agency-legal__list a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 1280px) {
    .site-footer--agency .footer-agency-legal__list {
        flex-wrap: wrap;
        width: 100%;
        max-width: none;
        row-gap: 0.4rem;
        justify-content: center;
    }
}

.site-footer--agency .footer-agency-partners {
    background: color-mix(in srgb, var(--fa-bg, #782b90) 10%, #fff);
    padding: 0.85rem 0;
    border-top: 1px solid color-mix(in srgb, var(--fa-bg, #782b90) 18%, transparent);
}

.site-footer--agency .footer-agency-partners__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
}

.site-footer--agency .footer-agency-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    min-width: 0;
    height: 36px;
    opacity: 0.92;
    cursor: default;
    pointer-events: none;
}

.site-footer--agency .footer-agency-partner img {
    display: block;
    width: auto;
    height: auto;
    max-width: 92%;
    max-height: 28px;
    object-fit: contain;
}

@media (max-width: 1100px) {
    .site-footer--agency .footer-agency-partners__inner {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        justify-content: initial;
        row-gap: 0.55rem;
    }
}

@media (max-width: 520px) {
    .site-footer--agency .footer-agency-partner {
        height: 32px;
    }

    .site-footer--agency .footer-agency-partner img {
        max-height: 24px;
    }
}

.site-footer--agency .footer-bottom {
    padding: 1.1rem 0 1.35rem;
    border-top: 1px solid var(--fa-border, #404040);
    color: var(--fa-link, #d1d1d1);
    font-size: 0.78rem;
}

.site-footer--agency .footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-footer--agency .footer-bottom-left {
    flex: 1;
    min-width: 150px;
    text-align: left;
}

.site-footer--agency .footer-bottom-right {
    flex: 1;
    min-width: 150px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.site-footer--agency .footer-platform-logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-footer--agency .footer-platform-logo img {
    max-height: 22px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.site-footer--agency .footer-payment-methods {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.site-footer--agency .footer-payment-methods img {
    display: block;
    max-height: 28px;
    width: auto;
    height: auto;
}

.site-footer--agency .footer-payment-methods .footer-payment-iyzico {
    max-height: 38px;
    max-width: min(400px, 100%);
    width: auto;
    height: auto;
}

.site-footer--agency .footer-tursab {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-footer--agency .footer-tursab a {
    display: inline-flex;
    align-items: center;
}

.site-footer--agency .footer-tursab img {
    display: block;
    max-height: 38px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.92;
}

.site-footer--agency .footer-cookie-preferences {
    margin-left: 0.75rem;
    color: var(--fa-link, #d1d1d1) !important;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 0.75rem;
}

.site-footer--agency .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 768px) {
    .site-footer--agency .footer-agency-actions {
        max-width: none;
    }
    .site-footer--agency .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    .site-footer--agency .footer-bottom-left,
    .site-footer--agency .footer-bottom-right,
    .site-footer--agency .footer-platform-logo {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* Layout — card radius (CSS değişkenleri + kartlar) */
body.theme-radius-rounded {
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
}

body.theme-radius-sharp {
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 6px;
    --radius-xl: 8px;
}

body.theme-radius-soft {
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
}

body.theme-radius-pill {
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 28px;
    --radius-xl: 32px;
}

.theme-radius-sharp .tour-card,
.theme-radius-sharp .hotel-card,
.theme-radius-sharp .home-search-widget--card .home-search-widget__panel,
.theme-radius-sharp .campaign-card,
.theme-radius-sharp .blog-card,
.theme-radius-sharp .mini-banner-item,
.theme-radius-sharp .hs-cat-card {
    border-radius: var(--radius-md, 4px) !important;
}

.theme-radius-rounded .tour-card,
.theme-radius-rounded .hotel-card,
.theme-radius-rounded .home-search-widget--card .home-search-widget__panel,
.theme-radius-rounded .campaign-card,
.theme-radius-rounded .blog-card,
.theme-radius-rounded .mini-banner-item,
.theme-radius-rounded .hs-cat-card {
    border-radius: var(--radius-md, 12px) !important;
}

.theme-radius-soft .tour-card,
.theme-radius-soft .hotel-card,
.theme-radius-soft .home-search-widget--card .home-search-widget__panel,
.theme-radius-soft .campaign-card,
.theme-radius-soft .blog-card,
.theme-radius-soft .mini-banner-item,
.theme-radius-soft .hs-cat-card {
    border-radius: var(--radius-lg, 20px) !important;
}

.theme-radius-pill .tour-card,
.theme-radius-pill .hotel-card,
.theme-radius-pill .home-search-widget--card .home-search-widget__panel,
.theme-radius-pill .campaign-card,
.theme-radius-pill .blog-card,
.theme-radius-pill .mini-banner-item,
.theme-radius-pill .hs-cat-card {
    border-radius: var(--radius-lg, 28px) !important;
}

/* Layout — buttons */
body.theme-buttons-rounded {
    --btn-radius: 8px;
}

body.theme-buttons-pill {
    --btn-radius: 999px;
}

body.theme-buttons-square {
    --btn-radius: 4px;
}

.theme-buttons-rounded .btn-primary,
.theme-buttons-rounded .btn-secondary,
.theme-buttons-rounded .tour-card-cta,
.theme-buttons-rounded .home-search-widget__submit-btn-icon,
.theme-buttons-rounded .hero-showcase-cta {
    border-radius: var(--btn-radius, 8px) !important;
}

.theme-buttons-pill .btn-primary,
.theme-buttons-pill .btn-secondary,
.theme-buttons-pill .tour-card-cta,
.theme-buttons-pill .home-search-widget__submit-btn-icon,
.theme-buttons-pill .hero-showcase-cta {
    border-radius: 999px !important;
}

.theme-buttons-square .btn-primary,
.theme-buttons-square .btn-secondary,
.theme-buttons-square .tour-card-cta,
.theme-buttons-square .hero-showcase-cta {
    border-radius: 4px !important;
}

/* Layout — section density */
.theme-density-compact .content-container .section,
.theme-density-compact .section {
    margin-bottom: 1.5rem;
}

.theme-density-spacious .content-container .section,
.theme-density-spacious .section {
    margin-bottom: 3.5rem;
}

.theme-density-spacious .cards-grid {
    gap: 2rem;
}

/* Renk — yüzey (CSS değişkeni main.php'de tanımlanır) */
.tour-card,
.hotel-card {
    background-color: var(--surface);
}

/*
 * İçerik link rengi — yalnızca açık zeminli metin alanları.
 * Header, footer, menü, kart başlıkları ve butonlar kendi stillerini korur.
 */
.section-link,
.blog-article__content a,
.blog-article__back,
.hd-prose a,
.custom-page a:not(.btn):not([class*="btn-"]):not([class*="card"]):not([class*="Card"]),
.bank-accounts-page a:not(.btn),
.cp-corporate-body a:not(.btn),
.tdp-description a,
.tdp-preview-block a {
    color: var(--link-color, var(--primary));
}

/* Layout — features */
.features-grid--inline {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 0.5rem;
    grid-template-columns: unset !important;
}

.features-grid--inline > * {
    flex: 0 0 260px;
}

.features-grid--columns {
    grid-template-columns: repeat(2, 1fr) !important;
}

.home-trust {
    margin: -0.35rem 0 clamp(1.35rem, 3vw, 2.25rem);
}
.features-grid--trust {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 1.05rem 0;
    overflow: visible;
    border-top: 1px solid #eef0f3;
    border-bottom: 1px solid #eef0f3;
}
.features-grid--cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.features-grid--cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.features-grid--trust.features-grid--cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.features-grid--trust .feature-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.95rem;
    text-align: left;
    background: transparent;
    box-shadow: none;
    padding: 0.45rem 1.35rem;
    border-radius: 0;
    transition: none;
}
.features-grid--trust .feature-card + .feature-card {
    border-left: 1px solid #e8eaee;
}
.features-grid--trust .feature-card:hover {
    transform: none;
    box-shadow: none;
    background: transparent;
}
.features-grid--trust .feature-card__icon,
.features-grid--trust .feature-card--primary .feature-card__icon,
.features-grid--trust .feature-card--secondary .feature-card__icon,
.features-grid--trust .feature-card--success .feature-card__icon,
.features-grid--trust .feature-card--warning .feature-card__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    margin: 0;
    background: #fff !important;
    color: var(--primary, #e31e24) !important;
    border: 1.5px solid color-mix(in srgb, var(--primary, #e31e24) 22%, #e5e7eb);
    box-shadow: none;
}
.features-grid--trust .feature-card__icon svg,
.features-grid--trust .feature-card__icon i {
    width: 22px;
    height: 22px;
    color: inherit;
    stroke: currentColor;
}
.features-grid--trust .feature-card__title {
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: -0.015em;
    margin: 0 0 0.18rem;
    color: #111827;
}
.features-grid--trust .feature-card__description {
    font-size: 0.84rem;
    line-height: 1.4;
    color: #6b7280;
}
@media (max-width: 991px) {
    .features-grid--cols-4,
    .features-grid--trust.features-grid--cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 768px) {
    .home-trust {
        margin: 0.15rem 0 1.15rem;
    }
    .features-grid--cols-3,
    .features-grid--cols-4,
    .features-grid--trust,
    .features-grid--trust.features-grid--cols-3,
    .features-grid--trust.features-grid--cols-4 {
        grid-template-columns: 1fr;
    }
    .features-grid--trust {
        gap: 0;
        border: 0;
        padding: 0.15rem 0;
    }
    .features-grid--trust .feature-card {
        padding: 0.7rem 0;
    }
    .features-grid--trust .feature-card + .feature-card {
        border-left: 0;
        border-top: 1px solid #eef0f3;
    }
    .features-grid--trust .feature-card__icon,
    .features-grid--trust .feature-card--primary .feature-card__icon,
    .features-grid--trust .feature-card--secondary .feature-card__icon,
    .features-grid--trust .feature-card--success .feature-card__icon,
    .features-grid--trust .feature-card--warning .feature-card__icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    .features-grid--trust .feature-card__title {
        font-size: 0.92rem;
    }
    .features-grid--trust .feature-card__description {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .features-grid--columns {
        grid-template-columns: 1fr !important;
    }

    .home-search-widget--floating {
        margin-top: 0;
    }
}

/* ========== Hero Suite layouts ========== */
.hs-suite {
    max-width: var(--container-max-width, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-4, 1rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hs-suite .hero-slider-wrapper::before {
    padding-top: var(--hero-suite-aspect, 26.04%);
}

@media (max-width: 768px) {
    .hs-suite .hero-slider-wrapper::before {
        padding-top: var(--hero-suite-mobile-aspect, 40%);
    }
}

.hs-suite__empty {
    padding: 1.25rem;
    border: 1px dashed var(--gray-300, #d1d5db);
    border-radius: 12px;
    color: var(--gray-500, #6b7280);
    font-size: 0.875rem;
    background: var(--surface, #f9fafb);
}

/* Category cards */
.hs-cat-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-200, #e5e7eb);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
    transition: transform .2s ease, box-shadow .2s ease;
    min-width: 0;
}

.hs-cat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}

.hs-cat-card__media {
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center;
    background-color: var(--gray-200, #e5e7eb);
}

/* Başlık yoksa grid yüksekliğindeki boş beyaz alan kalmasın — fotoğraf kartı doldursun */
.hs-cat-card--media-only {
    background: transparent;
    height: 100%;
    min-height: 140px;
}

.hs-cat-card--media-only .hs-cat-card__media {
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    min-height: 100%;
    aspect-ratio: auto;
    align-self: stretch;
}

.hs-cat-card__body {
    padding: 0.65rem 0.75rem 0.75rem;
    text-align: center;
    background: #fff;
    flex-shrink: 0;
}

.hs-cat-card__title {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary, #1e293b);
    line-height: 1.3;
}

.hs-cat-card__subtitle {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.72rem;
    color: var(--gray-500, #6b7280);
}

.hs-suite__cats--row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.hs-suite__cats--aside {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    align-content: start;
}

.hs-suite__cats--grid3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.hs-cat-card--tile .hs-cat-card__media { aspect-ratio: 4 / 3; }
.hs-cat-card--grid .hs-cat-card__media { aspect-ratio: 16 / 11; }
.hs-cat-card--row .hs-cat-card__media { aspect-ratio: 16 / 9; }

.hs-cat-card--tile.hs-cat-card--media-only .hs-cat-card__media,
.hs-cat-card--grid.hs-cat-card--media-only .hs-cat-card__media,
.hs-cat-card--row.hs-cat-card--media-only .hs-cat-card__media {
    aspect-ratio: auto;
    flex: 1 1 auto;
    height: 100%;
    min-height: 140px;
}

/* Split: categories left, slider right */
.hs-suite--split .hs-suite__split-main {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.4fr);
    gap: 1rem;
    align-items: stretch;
}

.hs-suite--split .hs-suite__slider--panel {
    min-height: 100%;
}

.hs-suite--split .hs-suite__slider--panel .hero-slider-wrapper {
    height: 100%;
    min-height: 420px;
}

.hs-suite--split .hs-suite__slider--panel .hero-slider-wrapper::before {
    padding-top: 0;
    height: 100%;
    min-height: 420px;
}

.hs-suite--split .hero-slide-title {
    font-size: clamp(1.35rem, 2.1vw, 2.1rem);
    max-width: 14em;
}

.hs-suite--split .hs-suite__search--below {
    margin-top: 0.25rem;
}

/* Mobil: split panel yüksekliği aspect oranına dönsün; gömülü yazı kırpılmasın */
@media (max-width: 768px) {
    .hs-suite--split {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        gap: 0.75rem;
    }

    .hs-suite--split .hs-suite__slider--panel .hero-slider-wrapper {
        height: auto;
        min-height: 0;
        margin-bottom: 0;
    }

    .hs-suite--split .hs-suite__slider--panel .hero-slider-wrapper::before {
        padding-top: var(--hero-suite-mobile-aspect, 54.69%);
        height: 0;
        min-height: 0;
    }

    /* Sol gömülü metin güvenli alanı — cover merkez kırpmasını azalt */
    .hs-suite .hero-slide,
    .hs-suite--split .hero-slide {
        background-position: 18% center;
    }

    .hs-suite__cats--aside {
        gap: 0.5rem;
    }

    .hs-cat-card--media-only {
        min-height: 96px;
    }

    .hs-cat-card--media-only .hs-cat-card__media {
        min-height: 96px;
    }
}

@media (max-width: 480px) {
    .hs-suite .hero-slide,
    .hs-suite--split .hero-slide {
        background-position: 12% center;
    }

    .hs-suite--split .hs-suite__slider--panel .hero-slider-wrapper::before {
        /* Biraz daha dik çerçeve; metin bandı altta kalsın */
        padding-top: min(62%, var(--hero-suite-mobile-aspect, 54.69%) + 8%);
    }
}

/* Promo + grid */
.hs-suite__promo-grid {
    display: grid;
    grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.6fr);
    gap: 1rem;
    align-items: stretch;
}

.hs-suite__promo {
    position: relative;
    min-height: 100%;
}

.hs-suite__promo .hero-showcase-tursab {
    z-index: 20;
}

.hs-suite__promo:hover .tursab-badge {
    background: rgba(107, 114, 128, 0.55);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.hs-suite--promo-grid-search .hs-suite__search--below {
    margin-top: 1rem;
}

.hs-promo-panel {
    display: block;
    position: relative;
    min-height: 100%;
    min-height: 420px;
    border-radius: 14px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.hs-promo-panel__shade {
    display: none;
}

.hs-promo-panel__title {
    position: absolute;
    left: 1.1rem;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 1;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0,0,0,.25);
}

/* Suite içi arama: sayfa padding’i çiftlenmesin */
.hs-suite .home-search-widget {
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}

/* Sekmeler panel içinde — tek kart, bağlantılı hiyerarşi */
.home-search-widget__panel > .home-search-widget__header-tabs-scroll,
.home-search-widget__panel > .home-search-widget__header-tabs {
    margin: 0;
    padding: 0.75rem 1.25rem 0.15rem;
    border-bottom: 1px solid var(--gray-200, #e5e7eb);
    gap: 0.25rem;
}

.home-search-widget__panel > .home-search-widget__header-tabs-scroll .home-search-widget__header-tab-btn,
.home-search-widget__panel > .home-search-widget__header-tabs .home-search-widget__header-tab-btn {
    margin-bottom: -1px;
}

/* Portal: koyu sekmeli kabuk + alttaki beyaz form (yanlarda siyah “kapak” yok) */
.home-search-widget--portal {
    background: var(--secondary, #0f2744);
    border-radius: 16px;
    padding: 0.75rem 0 0;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18);
    color: #fff;
    overflow: hidden;
}

.home-search-widget--portal .home-search-widget__panel {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.home-search-widget--portal .home-search-widget__panel:hover {
    box-shadow: none;
}

.home-search-widget--portal .home-search-widget__header-tabs {
    border-bottom: none;
    padding: 0.25rem 0.9rem 0.85rem;
    margin: 0;
    gap: 0.4rem;
    flex-wrap: nowrap;
    align-items: center;
}

.home-search-widget--portal .home-search-widget__header-tab-btn {
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    background: transparent;
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    margin-bottom: 0;
}

.home-search-widget--portal .home-search-widget__header-tab-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.home-search-widget--portal .home-search-widget__header-tab-btn.is-active {
    background: #fff;
    color: var(--secondary, #0f2744);
    border-color: #fff;
    box-shadow: none;
}

.home-search-widget--portal .home-search-widget__form {
    background: #fff;
    border-radius: 0;
    color: var(--gray-800, #1f2937);
    padding: 0.95rem 1.1rem 1.1rem;
    box-shadow: none;
}

.home-search-widget--portal .home-search-widget__fields {
    background: transparent;
    padding: 0;
    gap: 0.75rem;
    align-items: end;
    display: flex;
    flex-wrap: wrap;
}

.home-search-widget--portal .home-search-widget__field {
    flex: 1 1 160px;
    min-width: 0;
}

.home-search-widget--portal .home-search-widget__field--submit {
    flex: 0 0 auto;
}

.home-search-widget--portal .home-search-widget__tab-content--flight-bus,
.home-search-widget--portal .home-search-widget__form--car-rental {
    background: #fff;
    border-radius: 0;
    color: var(--gray-800, #1f2937);
    padding: 0.95rem 1.1rem 1.1rem;
}

.home-search-widget--portal .home-search-widget__footer {
    border-top-color: rgba(255, 255, 255, 0.2);
    margin: 0 0.9rem;
    padding-bottom: 0.75rem;
}

.home-search-widget--portal .home-search-widget__note {
    color: rgba(255, 255, 255, 0.75);
}

/* Tek ürün / sekme yok: koyu kabuk kaldır — bağımsız seçimde siyah kenar olmasın */
.home-search-widget--portal.home-search-widget--portal-solo {
    background: transparent;
    padding: 0;
    box-shadow: none;
    color: inherit;
    overflow: visible;
}

.home-search-widget--portal-solo .home-search-widget__panel {
    background: #fff;
    border: 1px solid var(--gray-200, #e5e7eb);
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.home-search-widget--portal-solo.is-tour-suggestions-open .home-search-widget__panel,
.home-search-widget--portal-solo.is-hotel-suggestions-open .home-search-widget__panel {
    overflow: visible;
}

.home-search-widget--portal-solo .home-search-widget__panel:hover {
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.1);
}

.home-search-widget--portal-solo .home-search-widget__form,
.home-search-widget--portal-solo .home-search-widget__tab-content--flight-bus,
.home-search-widget--portal-solo .home-search-widget__form--car-rental {
    background: transparent;
    border-radius: 0;
    padding: 1rem 1.1rem 1.1rem;
}

.home-search-widget--portal-solo .home-search-widget__footer {
    margin: 0;
    padding: 0.65rem 1.1rem 0.9rem;
    border-top: 1px solid var(--gray-100, #f3f4f6);
}

.home-search-widget--portal-solo .home-search-widget__note {
    color: var(--gray-500, #6b7280);
}

/* Bar: tek beyaz kart — dış kabuk yok, panel = yüzey */
.home-search-widget--bar {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.home-search-widget--bar .home-search-widget__panel {
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.home-search-widget--bar .home-search-widget__header-tabs {
    border-bottom: none;
    padding: 0.85rem 1.1rem 0.35rem;
    margin: 0;
    gap: 0.35rem;
}

.home-search-widget--bar .home-search-widget__header-tab-btn {
    border: none;
    border-bottom: none;
    margin-bottom: 0;
    border-radius: 999px;
    padding: 0.45rem 1rem;
    background: transparent;
    color: var(--gray-600, #4b5563);
}

.home-search-widget--bar .home-search-widget__header-tab-btn:hover {
    color: var(--secondary, #0f2744);
    background: var(--gray-100, #f3f4f6);
}

.home-search-widget--bar .home-search-widget__header-tab-btn.is-active {
    background: var(--secondary, #0f2744);
    color: #fff;
    border-bottom-color: transparent;
}

.home-search-widget--bar .home-search-widget__form {
    padding: 0.65rem 1.1rem 1.1rem;
}

.home-search-widget--bar .home-search-widget__fields {
    gap: 0.75rem;
    align-items: end;
    display: flex;
    flex-wrap: wrap;
}

.home-search-widget--bar .home-search-widget__field {
    flex: 1 1 160px;
    min-width: 0;
}

.home-search-widget--bar .home-search-widget__field--submit {
    flex: 0 0 auto;
}

.home-search-widget--bar .home-search-widget__field input,
.home-search-widget--bar .home-search-widget__field select,
.home-search-widget--portal .home-search-widget__field input,
.home-search-widget--portal .home-search-widget__field select {
    background: var(--gray-50, #f9fafb);
    border-color: var(--gray-200, #e5e7eb);
}

.home-search-widget--portal .home-search-widget__submit-btn-icon--labeled,
.home-search-widget--bar .home-search-widget__submit-btn-icon--labeled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: auto;
    min-width: 148px;
    height: 44px;
    padding: 0 1.15rem;
    border-radius: 12px;
    background: var(--primary, #ed4b25);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.home-search-widget__submit-label {
    font-size: 0.82rem;
}

/* Katalog: Malitur benzeri yatay kart — tarih, kişi, güçlü CTA */
.home-search-widget--catalog {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.home-search-widget--catalog .home-search-widget__panel {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
    overflow: visible;
}

.home-search-widget--catalog .home-search-widget__header-tabs,
.home-search-widget--catalog .home-search-widget__header-tabs-scroll {
    border-bottom: 1px solid var(--gray-100, #f3f4f6);
    padding: 0.35rem 1.15rem 0;
    margin: 0;
    gap: 0;
}

.home-search-widget--catalog .home-search-widget__header-tab-btn {
    border: none;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    margin-bottom: 0;
    padding: 0.75rem 1rem 0.7rem;
    background: transparent;
    color: var(--gray-500, #6b7280);
    font-weight: 700;
}

.home-search-widget--catalog .home-search-widget__header-tab-btn:hover {
    background: transparent;
    color: var(--secondary, #0f2744);
}

.home-search-widget--catalog .home-search-widget__header-tab-btn.is-active {
    background: transparent;
    color: var(--primary, #ed4b25);
    border-bottom-color: var(--primary, #ed4b25);
}

.home-search-widget--catalog .home-search-widget__form {
    padding: 0.15rem 0.4rem 0.4rem;
    background: transparent;
}

.home-search-widget--catalog .home-search-widget__fields {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0;
}

.home-search-widget--catalog .home-search-widget__field {
    flex: 1 1 140px;
    min-width: 0;
    position: relative;
    padding: 0.7rem 1.05rem;
}

.home-search-widget--catalog .home-search-widget__field + .home-search-widget__field:not(.home-search-widget__field--submit)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18%;
    bottom: 18%;
    width: 1px;
    background: var(--gray-200, #e5e7eb);
}

.home-search-widget--catalog .home-search-widget__field > label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--gray-500, #6b7280);
    margin-bottom: 0.35rem;
}

.home-search-widget--catalog .home-search-widget__input-wrapper {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.home-search-widget--catalog .home-search-widget__input-icon {
    display: none;
}

.home-search-widget--catalog .home-search-widget__field input,
.home-search-widget--catalog .home-search-widget__field select {
    background: transparent;
    border: none;
    box-shadow: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary, #0f2744);
    padding-left: 0;
    padding-right: 0.5rem;
    height: 36px;
}

.home-search-widget--catalog .home-search-widget__field input:focus,
.home-search-widget--catalog .home-search-widget__field select:focus {
    outline: none;
    box-shadow: none;
}

.home-search-widget--catalog .home-search-widget__field--submit {
    flex: 0 0 auto;
    display: flex;
    align-items: stretch;
    padding: 0.45rem 0.45rem 0.45rem 0.25rem;
}

.home-search-widget--catalog .home-search-widget__field--submit > label {
    display: none;
}

.home-search-widget--catalog .home-search-widget__submit-btn-icon--labeled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: auto;
    min-width: 168px;
    min-height: 56px;
    height: auto;
    padding: 0 1.35rem;
    border: none;
    border-radius: 14px;
    background: var(--primary, #ed4b25);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(237, 75, 37, 0.28);
}

.home-search-widget--catalog .home-search-widget__submit-btn-icon--labeled:hover {
    filter: brightness(1.05);
}

.home-search-widget--catalog .hsw-guests {
    position: relative;
}

.home-search-widget--catalog .hsw-guest {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    margin: 0;
    padding: 0.1rem 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--secondary, #0f2744);
    font-weight: 600;
    font-size: 0.95rem;
}

.home-search-widget--catalog .hsw-guest-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    color: var(--gray-700, #374151);
}

.home-search-widget--catalog .hsw-guests-pop {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 40;
    min-width: 240px;
    padding: 0.7rem 0.9rem;
    background: #fff;
    border: 1px solid var(--gray-100, #f3f4f6);
    border-radius: 12px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.16);
}

.home-search-widget--catalog .hsw-guests-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.45rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary, #0f2744);
}

.home-search-widget--catalog .hsw-step {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.home-search-widget--catalog .hsw-step button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--gray-300, #d1d5db);
    background: #fff;
    color: var(--secondary, #0f2744);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
}

.home-search-widget--catalog .hsw-step button:hover {
    border-color: var(--primary, #ed4b25);
    color: var(--primary, #ed4b25);
}

/* Klasik / stacked / card sekmeli — tek kart + pill sekmeler */
.home-search-widget:not(.home-search-widget--portal):not(.home-search-widget--bar):not(.home-search-widget--minimal):not(.home-search-widget--pill):not(.home-search-widget--catalog):not(.home-search-widget--segment):not(.home-search-widget--soft):not(.home-search-widget--sheet) .home-search-widget__panel > .home-search-widget__header-tabs-scroll,
.home-search-widget:not(.home-search-widget--catalog):not(.home-search-widget--segment):not(.home-search-widget--soft):not(.home-search-widget--sheet) .home-search-widget__panel > .home-search-widget__header-tabs {
    border-bottom: none;
    padding: 0.75rem 1.25rem 0.5rem;
    gap: 0.35rem;
}

/* İç scroll satırı: alt çizgi + dikey clip pill’i kesmesin */
.home-search-widget:not(.home-search-widget--portal):not(.home-search-widget--bar):not(.home-search-widget--minimal):not(.home-search-widget--pill):not(.home-search-widget--catalog):not(.home-search-widget--segment):not(.home-search-widget--soft):not(.home-search-widget--sheet) .home-search-widget__header-tabs {
    border-bottom: none;
    padding-top: 0.35rem;
    padding-bottom: 0.4rem;
    align-items: center;
}

.home-search-widget:not(.home-search-widget--portal):not(.home-search-widget--bar):not(.home-search-widget--minimal):not(.home-search-widget--pill):not(.home-search-widget--catalog):not(.home-search-widget--segment):not(.home-search-widget--soft):not(.home-search-widget--sheet) .home-search-widget__header-tab-btn {
    border: none;
    border-bottom: none;
    margin-bottom: 0;
    border-radius: 999px;
    padding: 0.45rem 1rem;
    background: transparent;
    color: var(--gray-600, #4b5563);
    line-height: 1.25;
}

.home-search-widget:not(.home-search-widget--portal):not(.home-search-widget--bar):not(.home-search-widget--minimal):not(.home-search-widget--pill):not(.home-search-widget--catalog):not(.home-search-widget--segment):not(.home-search-widget--soft):not(.home-search-widget--sheet) .home-search-widget__header-tab-btn:hover {
    background: var(--gray-100, #f3f4f6);
    color: var(--secondary, #0f2744);
}

.home-search-widget:not(.home-search-widget--portal):not(.home-search-widget--bar):not(.home-search-widget--minimal):not(.home-search-widget--pill):not(.home-search-widget--catalog):not(.home-search-widget--segment):not(.home-search-widget--soft):not(.home-search-widget--sheet) .home-search-widget__header-tab-btn.is-active {
    background: var(--secondary, #0f2744);
    color: #fff;
    border-bottom-color: transparent;
}

.home-search-widget:not(.home-search-widget--portal):not(.home-search-widget--bar):not(.home-search-widget--minimal):not(.home-search-widget--pill):not(.home-search-widget--catalog):not(.home-search-widget--segment):not(.home-search-widget--soft):not(.home-search-widget--sheet) .home-search-widget__panel > .home-search-widget__header-tabs-scroll + .home-search-widget__form,
.home-search-widget:not(.home-search-widget--portal):not(.home-search-widget--bar):not(.home-search-widget--minimal):not(.home-search-widget--pill):not(.home-search-widget--catalog):not(.home-search-widget--segment):not(.home-search-widget--soft):not(.home-search-widget--sheet) .home-search-widget__panel > .home-search-widget__header-tabs + .home-search-widget__form {
    padding-top: 0.75rem;
}

@media (max-width: 960px) {
    .hs-suite--split .hs-suite__split-main,
    .hs-suite__promo-grid {
        grid-template-columns: 1fr;
    }

    .hs-suite__cats--aside {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hs-suite__cats--row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hs-promo-panel { min-height: 240px; }
}

@media (max-width: 640px) {
    .hs-suite__cats--aside,
    .hs-suite__cats--grid3,
    .hs-suite__cats--row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-search-widget--portal .home-search-widget__submit-btn-icon--labeled,
    .home-search-widget--bar .home-search-widget__submit-btn-icon--labeled,
    .home-search-widget--catalog .home-search-widget__submit-btn-icon--labeled {
        width: 100%;
        justify-content: center;
    }

    .home-search-widget--catalog .home-search-widget__field + .home-search-widget__field:not(.home-search-widget__field--submit)::before {
        display: none;
    }

    .home-search-widget--catalog .home-search-widget__field--submit {
        flex: 1 1 100%;
        padding: 0.35rem 0.7rem 0.7rem;
    }
}

/* ========== Portal Landing hero suite ========== */
body.homepage:has(.homepage-hero-suite--portal_landing) .site-main,
body.homepage.theme-hero-suite-portal_landing .site-main {
    max-width: none !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
}

body.homepage:has(.homepage-hero-suite--portal_landing) .content-container,
body.homepage.theme-hero-suite-portal_landing .content-container {
    max-width: var(--container-max-width, 1280px);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-4, 1rem);
    padding-right: var(--space-4, 1rem);
}

.homepage-slider-container.homepage-hero-suite--portal_landing,
.homepage-hero-suite--portal_landing {
    position: relative;
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 1.25rem !important;
    padding: 0 !important;
    overflow: visible !important;
}

.homepage-hero-suite--portal_landing .hero-slider-wrapper,
.homepage-hero-suite--portal_landing .hero-slider-wrapper--fullbleed,
.homepage-hero-suite--portal_landing .hero-slider-wrapper--showcase {
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important;
    aspect-ratio: var(--hero-suite-ar, 1920 / 560);
    min-height: clamp(252px, 32vh, var(--hero-suite-max-h, 560px));
    height: auto;
    overflow: hidden;
    background: #0b2744;
}

@media (max-width: 992px) {
    .homepage-hero-suite--portal_landing .hero-slider-wrapper,
    .homepage-hero-suite--portal_landing .hero-slider-wrapper--fullbleed,
    .homepage-hero-suite--portal_landing .hero-slider-wrapper--showcase {
        aspect-ratio: unset !important;
        height: var(--hero-suite-mobile-max-h, 630px) !important;
        min-height: var(--hero-suite-mobile-max-h, 630px) !important;
        max-height: var(--hero-suite-mobile-max-h, 630px) !important;
    }
}

@media (max-width: 768px) {
    .homepage-hero-suite--portal_landing .hero-slider-wrapper,
    .homepage-hero-suite--portal_landing .hero-slider-wrapper--fullbleed,
    .homepage-hero-suite--portal_landing .hero-slider-wrapper--showcase {
        aspect-ratio: unset !important;
        height: var(--hero-suite-mobile-max-h, 630px) !important;
        min-height: var(--hero-suite-mobile-max-h, 630px) !important;
        max-height: var(--hero-suite-mobile-max-h, 630px) !important;
    }
}

/* aspect-ratio kullan; klasik ::before padding yüksekliği çift hesaplamasın */
.homepage-hero-suite--portal_landing .hero-slider-wrapper::before,
.homepage-hero-suite--portal_landing .hero-slider-wrapper--fullbleed::before {
    content: none !important;
    display: none !important;
    padding-top: 0 !important;
}

.homepage-hero-suite--portal_landing .hero-slider,
.homepage-hero-suite--portal_landing .hero-slider .swiper-wrapper,
.homepage-hero-suite--portal_landing .hero-slider .swiper-slide,
.homepage-hero-suite--portal_landing .hero-slide {
    height: 100% !important;
    min-height: 100%;
}

.homepage-hero-suite--portal_landing .hero-slider {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    border-radius: 0 !important;
}

.homepage-hero-suite--portal_landing .hero-slide {
    background-color: #0b2744;
    background-size: cover !important;
    background-position: center center !important;
}

/* Arama / story boyutları portal-landing-critical içinde; burada yalnızca destek */
.homepage-hero-suite--portal_landing .home-search-widget__header-tabs-scroll::before,
.homepage-hero-suite--portal_landing .home-search-widget__header-tabs-scroll::after {
    display: none !important;
}

/* Pill’in gri iç bar / mobil kutularını portal cam dilimlerde bastır */
body.theme-hero-suite-portal_landing .homepage-hero-suite--portal_landing .home-search-widget--pill .home-search-widget__fields,
body.theme-hero-suite-portal_landing .homepage-hero-suite--portal_landing .home-search-widget__fields {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

body.theme-hero-suite-portal_landing .homepage-hero-suite--portal_landing .home-search-widget__field:hover,
body.theme-hero-suite-portal_landing .homepage-hero-suite--portal_landing .home-search-widget__field:focus-within {
    border: 1px solid rgba(255, 255, 255, 0.82) !important;
    background: rgba(255, 255, 255, 0.58) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

body.theme-hero-suite-portal_landing .homepage-hero-suite--portal_landing .home-search-widget__field--submit,
body.theme-hero-suite-portal_landing .homepage-hero-suite--portal_landing .home-search-widget__field--submit:hover,
body.theme-hero-suite-portal_landing .homepage-hero-suite--portal_landing .home-search-widget--pill .home-search-widget__field--submit {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    align-items: stretch !important;
}

body.theme-hero-suite-portal_landing .homepage-hero-suite--portal_landing .home-search-widget__field--submit > label {
    display: none !important;
}

body.theme-hero-suite-portal_landing .homepage-hero-suite--portal_landing .home-search-widget__submit-btn-icon,
body.theme-hero-suite-portal_landing .homepage-hero-suite--portal_landing .home-search-widget__submit-btn-icon--labeled {
    height: 100% !important;
    min-height: 100% !important;
    max-height: none !important;
    align-self: stretch !important;
    transform: none !important;
    background: var(--primary, #3b78c2) !important;
}
@media (max-width: 992px) {
    body.theme-hero-suite-portal_landing .homepage-hero-suite--portal_landing .home-search-widget--pill .home-search-widget__field {
        background: rgba(255, 255, 255, 0.48) !important;
        border: 1px solid rgba(255, 255, 255, 0.6) !important;
    }
    body.theme-hero-suite-portal_landing .homepage-hero-suite--portal_landing .home-search-widget--pill .home-search-widget__field--submit {
        background: transparent !important;
        border: 0 !important;
    }
    body.theme-hero-suite-portal_landing .homepage-hero-suite--portal_landing .home-search-widget__submit-btn-icon,
    body.theme-hero-suite-portal_landing .homepage-hero-suite--portal_landing .home-search-widget__submit-btn-icon--labeled {
        height: 100% !important;
        min-height: 100% !important;
        width: 100% !important;
    }
}

.homepage-hero-suite--portal_landing + .campaign-stories,
.homepage-hero-suite--portal_landing ~ .campaign-stories,
.homepage-hero-suite--portal_landing + .campaign-stories--v2,
.homepage-hero-suite--portal_landing ~ .campaign-stories--v2,
body.homepage.theme-hero-suite-portal_landing .campaign-stories,
body.homepage.theme-hero-suite-portal_landing .campaign-stories--v2 {
    margin-top: -0.25rem;
    max-width: none !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0.35rem !important;
    padding-right: 0.35rem !important;
    box-sizing: border-box;
}

/* Portal Landing story — masaüstü kenardan kenara yayılım */
@media (min-width: 1100px) {
    body.homepage.theme-hero-suite-portal_landing .campaign-stories--v2 {
        --story-v2-size: clamp(6.25rem, 7.8vw, 11.25rem) !important;
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    body.homepage.theme-hero-suite-portal_landing .campaign-stories--v2 .campaign-stories__track,
    body.homepage.theme-hero-suite-portal_landing .campaign-stories--v2.is-marquee .campaign-stories__track {
        animation: none !important;
        transform: none !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        justify-content: space-between !important;
        gap: clamp(0.2rem, 0.8vw, 0.75rem) !important;
    }
    body.homepage.theme-hero-suite-portal_landing .campaign-stories--v2 .campaign-stories__item.is-clone {
        display: none !important;
    }
    body.homepage.theme-hero-suite-portal_landing .campaign-stories--v2.is-marquee .campaign-stories__viewport {
        overflow: visible !important;
    }
}

@media (max-width: 992px) {
    .homepage-hero-suite--portal_landing .homepage-hero-suite__search-overlap--portal {
        width: calc(100% - 1.25rem);
        top: 52%;
        bottom: auto;
        transform: translate(-50%, -42%);
    }
    .homepage-hero-suite--portal_landing .hero-slider-wrapper::after {
        height: clamp(28px, 8vw, 48px);
    }
}

@media (max-width: 768px) {
    .homepage-hero-suite--portal_landing {
        margin-bottom: 0.5rem !important;
        padding-bottom: 0 !important;
    }
    .homepage-hero-suite--portal_landing .homepage-hero-suite__search-overlap--portal {
        width: calc(100% - 0.85rem);
        top: 50%;
        bottom: auto;
        transform: translate(-50%, -40%);
        padding-top: 0;
    }
    .homepage-hero-suite--portal_landing .hero-fb-title {
        font-size: clamp(1.35rem, 6vw, 1.85rem) !important;
    }
}

/* Portal landing — orta başlık + alt beyaz kavis */
.homepage-hero-suite--portal_landing .hero-slider-wrapper,
.homepage-hero-suite--portal_landing .hero-slider-wrapper--fullbleed {
    position: relative;
    isolation: isolate;
}

.homepage-hero-suite--portal_landing .hero-fb-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.12) 42%, rgba(0,0,0,0.35) 100%) !important;
}

.homepage-hero-suite--portal_landing .hero-fb-content {
    top: 28% !important;
    bottom: auto !important;
    transform: translateY(-50%);
    padding-bottom: 0 !important;
}

.homepage-hero-suite--portal_landing .hero-fb-title {
    font-family: var(--font-family-heading, 'Montserrat', 'Segoe UI', Tahoma, sans-serif);
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: clamp(1.75rem, 3.8vw, 3rem) !important;
    font-weight: var(--font-weight-heading, 800) !important;
    letter-spacing: -0.02em;
    text-shadow: 0 3px 22px rgba(0, 0, 0, 0.65), 0 1px 3px rgba(0, 0, 0, 0.55) !important;
}

.homepage-hero-suite--portal_landing .hero-slider-wrapper::after {
    content: "";
    position: absolute;
    left: -8%;
    right: -8%;
    bottom: -1px;
    height: clamp(40px, 5.5vw, 68px);
    background: #fff;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: 4;
    pointer-events: none;
}

.homepage-hero-suite--portal_landing .tursab-badge {
    left: auto !important;
    right: clamp(0.85rem, 2.5vw, 1.35rem) !important;
    top: clamp(1rem, 2.8vw, 1.4rem) !important;
    background: rgba(107, 114, 128, 0.42) !important;
    color: #e5e7eb !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    border-radius: 8px !important;
    backdrop-filter: blur(8px);
}
.homepage-hero-suite--portal_landing .tursab-badge span {
    color: #e5e7eb !important;
    font-weight: 600 !important;
}

/* Mobil: sağ üst, üst kenara yapışmasın */
@media (max-width: 768px) {
    .homepage-hero-suite--portal_landing .tursab-badge,
    .homepage-hero-suite--portal_landing .tursab-badge.hero-showcase-tursab {
        left: auto !important;
        right: 0.85rem !important;
        top: 1.1rem !important;
        padding: 0.38rem 0.65rem 0.38rem 0.45rem !important;
        font-size: 0.6875rem !important;
        border-radius: 8px !important;
        max-width: min(70vw, 14rem);
    }
}

.homepage-hero-suite--portal_landing .homepage-hero-suite__search-overlap--portal {
    z-index: 8;
}

.homepage-hero-suite--portal_landing + .campaign-stories,
.homepage-hero-suite--portal_landing ~ .campaign-stories--v2,
body.homepage.theme-hero-suite-portal_landing .campaign-stories--v2 {
    margin-top: -0.25rem;
    padding-top: 0;
    max-width: none !important;
    width: 100% !important;
}

/* ── Search: Segment (primary chip tabs) ── */
.home-search-widget--segment {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}
.home-search-widget--segment .home-search-widget__panel {
    background: var(--surface, var(--color-surface, #fff));
    border: 1px solid rgba(var(--primary-rgb, 237, 75, 37), 0.14);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}
.home-search-widget--segment .home-search-widget__header-tabs-scroll {
    margin: 0 !important;
    margin-bottom: 0 !important;
    padding: 0.75rem 1rem 0 !important;
}
.home-search-widget--segment .home-search-widget__header-tabs {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.25rem;
    margin: 0;
    padding: 0.35rem;
    border: 0;
    border-bottom: 0;
    border-radius: 999px;
    background: rgba(var(--primary-rgb, 237, 75, 37), 0.1);
    overflow-x: auto;
    max-width: 100%;
}
.home-search-widget--segment .home-search-widget__header-tabs-scroll::before,
.home-search-widget--segment .home-search-widget__header-tabs-scroll::after {
    display: none !important;
}
.home-search-widget--segment .home-search-widget__header-tab-btn {
    border: 0 !important;
    border-bottom: 0 !important;
    margin: 0 !important;
    border-radius: 999px;
    padding: 0.45rem 1rem;
    background: transparent;
    color: var(--gray-600, #4b5563);
    font-weight: 600;
}
.home-search-widget--segment .home-search-widget__header-tab-btn:hover {
    color: var(--primary);
    background: rgba(var(--primary-rgb, 237, 75, 37), 0.12);
}
.home-search-widget--segment .home-search-widget__header-tab-btn.is-active {
    background: var(--primary) !important;
    color: #fff !important;
    border-bottom-color: transparent !important;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb, 237, 75, 37), 0.28);
}
.home-search-widget--segment .home-search-widget__header-tab-btn.is-active svg,
.home-search-widget--segment .home-search-widget__header-tab-btn.is-active i {
    color: #fff !important;
}
.home-search-widget--segment .home-search-widget__tab-content {
    margin: 0;
    padding: 0;
}
.home-search-widget--segment .home-search-widget__form {
    padding: 0.7rem 1rem 1rem;
    margin: 0;
    background: transparent;
}
.home-search-widget--segment .home-search-widget__fields {
    gap: 0.75rem;
}
.home-search-widget--segment .home-search-widget__field input,
.home-search-widget--segment .home-search-widget__field select {
    border-color: rgba(var(--primary-rgb, 237, 75, 37), 0.18);
    background: #fff;
}
.home-search-widget--segment .home-search-widget__field input:focus,
.home-search-widget--segment .home-search-widget__field select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 237, 75, 37), 0.16);
}
.home-search-widget--segment .home-search-widget__submit-btn-icon {
    background: var(--primary);
    box-shadow: 0 4px 14px rgba(var(--primary-rgb, 237, 75, 37), 0.28);
}
.home-search-widget--segment .home-search-widget__submit-btn-icon:hover {
    background: var(--primary-dark, var(--primary));
}
.home-search-widget--segment .home-search-widget__transfer-same-hint {
    margin: 0.35rem 0 0;
}
.home-search-widget--segment.is-tour-suggestions-open .home-search-widget__panel,
.home-search-widget--segment.is-hotel-suggestions-open .home-search-widget__panel {
    overflow: visible;
}

/* ── Search: Soft (surface panel + underline tabs; distinct from Segment chips) ── */
.home-search-widget--soft {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}
.home-search-widget--soft .home-search-widget__panel {
    background: var(--surface, var(--color-surface, #f8fafc));
    border: 1px solid rgba(var(--primary-rgb, 237, 75, 37), 0.12);
    border-radius: 20px;
    box-shadow: none;
    overflow: hidden;
}
.home-search-widget--soft .home-search-widget__header-tabs-scroll {
    margin: 0 !important;
    margin-bottom: 0 !important;
    padding: 0.55rem 1rem 0 !important;
}
.home-search-widget--soft .home-search-widget__header-tabs-scroll::before,
.home-search-widget--soft .home-search-widget__header-tabs-scroll::after {
    display: none !important;
}
.home-search-widget--soft .home-search-widget__header-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.15rem;
    margin: 0;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(var(--primary-rgb, 237, 75, 37), 0.12);
    border-radius: 0;
    background: transparent;
    overflow-x: auto;
    max-width: 100%;
}
.home-search-widget--soft .home-search-widget__header-tab-btn {
    border: 0 !important;
    border-bottom: 2px solid transparent !important;
    margin: 0 0 -1px !important;
    border-radius: 10px 10px 0 0;
    padding: 0.55rem 0.95rem;
    background: transparent !important;
    color: var(--gray-600, #4b5563);
    font-weight: 600;
    box-shadow: none !important;
}
.home-search-widget--soft .home-search-widget__header-tab-btn:hover {
    color: var(--primary);
    background: rgba(var(--primary-rgb, 237, 75, 37), 0.06) !important;
}
.home-search-widget--soft .home-search-widget__header-tab-btn.is-active {
    background: transparent !important;
    color: var(--primary) !important;
    border-bottom-color: var(--primary) !important;
    font-weight: 700;
    box-shadow: none !important;
}
.home-search-widget--soft .home-search-widget__header-tab-btn.is-active svg,
.home-search-widget--soft .home-search-widget__header-tab-btn.is-active i {
    color: var(--primary) !important;
}
.home-search-widget--soft .home-search-widget__tab-content {
    margin: 0;
    padding: 0;
}
.home-search-widget--soft .home-search-widget__form {
    padding: 0.85rem 1.05rem 1.05rem;
    margin: 0;
    background: #fff;
    border-radius: 0 0 18px 18px;
}
.home-search-widget--soft .home-search-widget__field label {
    color: var(--primary);
    opacity: 0.8;
}
.home-search-widget--soft .home-search-widget__field input,
.home-search-widget--soft .home-search-widget__field select {
    border: 1.5px solid rgba(var(--primary-rgb, 237, 75, 37), 0.16);
    background: var(--surface, var(--color-surface, #f8fafc));
}
.home-search-widget--soft .home-search-widget__field input:focus,
.home-search-widget--soft .home-search-widget__field select:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 237, 75, 37), 0.14);
}
.home-search-widget--soft .home-search-widget__submit-btn-icon {
    background: var(--primary);
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(var(--primary-rgb, 237, 75, 37), 0.22);
}
.home-search-widget--soft .home-search-widget__submit-btn-icon:hover {
    background: var(--primary-dark, var(--primary));
}
.home-search-widget--soft .home-search-widget__transfer-same-hint {
    margin: 0.35rem 0 0;
}
.home-search-widget--soft.is-tour-suggestions-open .home-search-widget__panel,
.home-search-widget--soft.is-hotel-suggestions-open .home-search-widget__panel {
    overflow: visible;
}

@media (max-width: 720px) {
    .home-search-widget--segment .home-search-widget__header-tabs {
        width: 100%;
    }
    .home-search-widget--soft .home-search-widget__header-tabs {
        width: 100%;
    }
    .home-search-widget--soft .home-search-widget__header-tab-btn {
        border-radius: 8px 8px 0 0;
    }
}

/* Kategori vitrini (category_showcase mosaic) */
.cat-showcase {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem 1rem 3rem;
}
.cat-showcase__crumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.45rem;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    color: var(--color-text-secondary, #6b7280);
}
.cat-showcase__crumb a {
    color: inherit;
    text-decoration: none;
}
.cat-showcase__crumb a:hover {
    color: var(--primary, #ed4b25);
}
.cat-showcase__crumb-sep {
    display: inline-flex;
    opacity: 0.55;
}
.cat-showcase__crumb-current {
    color: var(--color-text, #111827);
    font-weight: 600;
}
.cat-showcase__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.cat-showcase__title {
    margin: 0;
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-text, #111827);
}
.cat-showcase__list-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary, #ed4b25);
    text-decoration: none;
    white-space: nowrap;
}
.cat-showcase__hero {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: stretch;
}
.cat-showcase__hero--solo {
    grid-template-columns: 1fr;
    max-width: 720px;
}
.cat-showcase__hero--solo .cat-showcase__feature {
    min-height: 0;
    aspect-ratio: 16 / 10;
}
.cat-showcase__feature {
    position: relative;
    display: block;
    min-height: 480px;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
}
.cat-showcase__feature,
.cat-showcase__feature:hover,
.cat-showcase__feature:focus-visible {
    color: #fff;
    text-decoration: none;
}
.cat-showcase__feature-media {
    position: absolute;
    inset: 0;
    background: #1e293b center / cover no-repeat;
    transition: transform 0.45s ease;
}
.cat-showcase__feature:hover .cat-showcase__feature-media,
.cat-showcase__feature:focus-visible .cat-showcase__feature-media {
    transform: scale(1.04);
}
.cat-showcase__feature-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 30%, rgba(15, 23, 42, 0.72) 100%);
    transition: background 0.25s ease;
}
.cat-showcase__feature:hover .cat-showcase__feature-shade,
.cat-showcase__feature:focus-visible .cat-showcase__feature-shade {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.12) 28%, rgba(15, 23, 42, 0.8) 100%);
}
.cat-showcase__feature-title {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    z-index: 1;
    font-size: clamp(1.4rem, 2.4vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    transition: color 0.2s ease;
}
.cat-showcase__feature:hover .cat-showcase__feature-title,
.cat-showcase__feature:focus-visible .cat-showcase__feature-title {
    color: rgba(255, 255, 255, 0.78);
}
.cat-showcase__seal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
    width: 7.25rem;
    height: 7.25rem;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent, #5b21b6) 55%, #1e1b4b);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.6rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.28);
}
.cat-showcase__seal strong {
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.15;
}
.cat-showcase__seal small {
    margin-top: 0.2rem;
    font-size: 0.62rem;
    line-height: 1.25;
    opacity: 0.95;
}
.cat-showcase__feature:hover .cat-showcase__seal,
.cat-showcase__feature:focus-visible .cat-showcase__seal {
    color: #fff;
}
.cat-showcase__hero-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
}
.cat-showcase__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.15rem;
}
/* Az kategori: eşit kart, sabit oran (mozaik uzamasın) */
.cat-showcase__grid--compact {
    justify-content: start;
}
.cat-showcase__grid--n1 {
    grid-template-columns: minmax(0, 420px);
    max-width: 420px;
}
.cat-showcase__grid--n2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 880px;
}
.cat-showcase__grid--n3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1100px;
}
.cat-showcase__grid--n4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.cat-showcase__grid--compact .cat-showcase-tile {
    aspect-ratio: 16 / 11;
    height: auto;
    min-height: 0;
}
.cat-showcase-tile {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    border: 0;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.1);
    min-width: 0;
    aspect-ratio: 16 / 11;
    isolation: isolate;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.cat-showcase-tile,
.cat-showcase-tile:hover,
.cat-showcase-tile:focus-visible {
    color: #fff;
    text-decoration: none;
}
.cat-showcase-tile:hover,
.cat-showcase-tile:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
}
.cat-showcase-tile__media {
    position: absolute;
    inset: 0;
    display: block;
    background: #1e293b center / cover no-repeat;
    transition: transform 0.45s ease;
}
.cat-showcase-tile:hover .cat-showcase-tile__media,
.cat-showcase-tile:focus-visible .cat-showcase-tile__media {
    transform: scale(1.06);
}
.cat-showcase-tile__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.04) 32%, rgba(15, 23, 42, 0.78) 100%);
    transition: background 0.25s ease;
}
.cat-showcase-tile:hover .cat-showcase-tile__shade,
.cat-showcase-tile:focus-visible .cat-showcase-tile__shade {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.12) 28%, rgba(15, 23, 42, 0.86) 100%);
}
.cat-showcase-tile__body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 1.05rem 1.1rem 1.15rem;
    gap: 0.28rem;
}
.cat-showcase-tile__name {
    font-size: 1.08rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
    transition: color 0.2s ease;
}
.cat-showcase-tile:hover .cat-showcase-tile__name,
.cat-showcase-tile:focus-visible .cat-showcase-tile__name {
    color: rgba(255, 255, 255, 0.78);
}
.cat-showcase-tile__price {
    display: inline-flex;
    align-items: baseline;
    gap: 0.05rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 800;
    font-size: 0.98rem;
    line-height: 1.2;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}
.cat-showcase-tile__price em {
    font-style: normal;
    font-weight: 600;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.72);
}
.cat-showcase-tile--hero {
    aspect-ratio: auto;
    height: 100%;
    min-height: 220px;
}
body.tenant-erntur .cat-showcase__seal {
    background: color-mix(in srgb, var(--accent, #7c3aed) 42%, #2e1065);
}

@media (max-width: 1100px) {
    .cat-showcase__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .cat-showcase__feature {
        min-height: 400px;
    }
}
@media (max-width: 860px) {
    .cat-showcase__hero {
        grid-template-columns: 1fr;
    }
    .cat-showcase__feature {
        min-height: 280px;
    }
    .cat-showcase-tile--hero {
        aspect-ratio: 16 / 10;
        height: auto;
        min-height: 0;
    }
    .cat-showcase__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .cat-showcase__grid--n3,
    .cat-showcase__grid--n4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: none;
    }
}
@media (max-width: 560px) {
    .cat-showcase__head {
        flex-direction: column;
        align-items: flex-start;
    }
    .cat-showcase__hero-side,
    .cat-showcase__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .cat-showcase__grid--n1 {
        max-width: none;
        grid-template-columns: 1fr;
    }
    .cat-showcase__grid--n2 {
        max-width: none;
    }
    .cat-showcase__seal {
        width: 5.75rem;
        height: 5.75rem;
    }
    .cat-showcase__seal strong {
        font-size: 0.78rem;
    }
}

/* ========== Yuvarlak Hero + Sheet Arama ========== */
.hero-slider-wrapper--rounded {
    border-radius: 24px !important;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.16) !important;
    overflow: hidden;
}

.hero-slider-wrapper--rounded::before {
    padding-top: var(--hero-suite-aspect, 27.08%) !important;
}

.hero-slider-wrapper--rounded .hero-slider,
.hero-slider-wrapper--rounded .hero-slide,
.hero-slider-wrapper--rounded .swiper,
.hero-slider-wrapper--rounded .swiper-slide {
    border-radius: inherit !important;
}

.hero-slider-wrapper--rounded .hero-slide::after {
    content: none !important;
    display: none !important;
}

.hero-slider-wrapper--rounded .hero-showcase-pagination,
.hero-slider-wrapper--rounded .swiper-pagination {
    display: none !important;
}

.hero-slider-wrapper--rounded .hero-slider-button-prev,
.hero-slider-wrapper--rounded .hero-slider-button-next {
    width: 36px;
    height: 36px;
}

.hero-slider-wrapper--rounded .hero-slider-button-prev {
    left: 1rem;
}

.hero-slider-wrapper--rounded .hero-slider-button-next {
    right: 1rem;
}

.hero-slider-wrapper--rounded .hero-slider-button-prev svg,
.hero-slider-wrapper--rounded .hero-slider-button-next svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.25;
}

.hero-rounded-overlay {
    display: none;
}

.hero-slider-wrapper--rounded .hero-showcase-content,
.hero-rounded-content {
    align-items: center;
    padding: clamp(1.25rem, 3vw, 2.25rem) clamp(1.25rem, 3.5vw, 2.75rem) clamp(3.5rem, 8vw, 5.25rem);
}

.hero-slider-wrapper--rounded .hero-showcase-copy,
.hero-rounded-copy {
    max-width: min(40rem, 94%);
}

.hero-slider-wrapper--rounded .hero-showcase-badge,
.hero-rounded-eyebrow {
    background: none !important;
    box-shadow: none !important;
    color: rgba(255, 255, 255, 0.92) !important;
    padding: 0 !important;
    margin-bottom: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 650;
}

.hero-slider-wrapper--rounded .hero-showcase-title,
.hero-rounded-title {
    max-width: 16ch;
    font-size: clamp(1.55rem, 3.4vw, 2.55rem);
}

.hero-slider-wrapper--rounded .hero-showcase-desc,
.hero-rounded-desc {
    max-width: 42ch;
    font-size: clamp(0.95rem, 1.5vw, 1.12rem);
}

.homepage-hero-suite--rounded_search {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem !important;
    padding-bottom: 0 !important;
}

.homepage-hero-suite--rounded_search:has(.is-tour-suggestions-open),
.homepage-hero-suite--rounded_search:has(.is-hotel-suggestions-open) {
    z-index: 50;
    overflow: visible !important;
}

.homepage-hero-suite--rounded_search .homepage-hero-suite__search-overlap {
    position: relative;
    z-index: 6;
    width: min(94%, 920px);
    max-width: 920px;
    margin: -2.65rem auto 0;
    padding: 0 0.25rem 0.25rem;
    box-sizing: border-box;
}

.homepage-hero-suite--rounded_search .home-search-widget,
.homepage-hero-suite--rounded_search .home-search-widget--sheet {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.home-search-widget--sheet {
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* Panel şeffaf: beyaz kart yalnızca form alanında; sekmeler kartın dışında sol üstte */
.home-search-widget--sheet .home-search-widget__panel {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transition: none !important;
}

.home-search-widget--sheet .home-search-widget__panel:hover,
.home-search-widget--sheet .home-search-widget__panel:focus-within {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.home-search-widget--sheet .home-search-widget__header-tabs-scroll {
    display: inline-flex;
    align-self: flex-start;
    position: relative;
    z-index: 3;
    max-width: 100%;
    /* Chip box üst kenarda: yarısı formda, yarısı dışarıda; hafif sağa */
    margin: 0 0 -0.95rem 0.55rem !important;
    padding: 0 !important;
    border: none !important;
    border-bottom: none !important;
    order: -1;
}

.home-search-widget--sheet .home-search-widget__header-tabs-scroll::before,
.home-search-widget--sheet .home-search-widget__header-tabs-scroll::after {
    display: none !important;
}

.home-search-widget--sheet .home-search-widget__header-tabs {
    display: inline-flex;
    align-items: center;
    gap: 0.12rem;
    margin: 0 !important;
    background: #fff;
    border: 1px solid #eceff3 !important;
    border-bottom: 1px solid #eceff3 !important;
    border-radius: 999px !important;
    padding: 0.2rem !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    overflow: visible;
}

.home-search-widget--sheet .home-search-widget__header-tab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.34rem 0.78rem !important;
    border: 0 !important;
    border-bottom: 0 !important;
    margin: 0 !important;
    border-radius: 999px !important;
    background: transparent;
    color: #1e3a5f;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: none;
    line-height: 1.2;
}

.home-search-widget--sheet .home-search-widget__header-tab-btn:hover,
.home-search-widget--sheet .home-search-widget__header-tab-btn:hover:not(.is-active) {
    background: #f8fafc;
    color: #1e3a5f;
}

.home-search-widget--sheet .home-search-widget__header-tab-btn.is-active,
.home-search-widget--sheet .home-search-widget__header-tab-btn.is-active:hover {
    background: var(--primary, #e31e24) !important;
    color: #fff !important;
    border-bottom-color: transparent !important;
}

.home-search-widget--sheet .home-search-widget__header-tab-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: inherit;
    stroke: currentColor;
}

.home-search-widget--sheet .home-search-widget__header-tab-btn.is-active svg {
    color: #fff;
    stroke: currentColor;
}

.home-search-widget--sheet .home-search-widget__form {
    margin: 0 !important;
    padding: 1.05rem 0.75rem 0.7rem !important;
    gap: 0 !important;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.11);
    transition: none !important;
}

.home-search-widget--sheet .home-search-widget__form:hover,
.home-search-widget--sheet .home-search-widget__form:focus-within {
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12) !important;
    border-color: rgba(15, 23, 42, 0.06) !important;
    transform: none !important;
}

.home-search-widget--sheet .home-search-widget__fields {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr) minmax(0, 1fr) auto;
    align-items: center;
    gap: 0 !important;
    background: transparent;
    box-shadow: none;
}

.home-search-widget--sheet .home-search-widget__field {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.12rem !important;
    padding: 0.1rem 0.75rem !important;
    min-width: 0;
    min-height: 2.75rem;
}

.home-search-widget--sheet .home-search-widget__field + .home-search-widget__field:not(.home-search-widget__field--submit)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: #e5e7eb;
}

.home-search-widget--sheet .home-search-widget__field:first-child {
    padding-left: 0.2rem !important;
}

.home-search-widget--sheet .home-search-widget__field > label {
    display: block;
    margin: 0 !important;
    color: #111827;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
}

.home-search-widget--sheet .home-search-widget__input-wrapper {
    position: relative;
    display: block;
    width: 100%;
    min-height: 1.55rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.home-search-widget--sheet .home-search-widget__input-icon {
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%);
    width: 1.05rem;
    height: 1.05rem;
    color: #9ca3af !important;
    pointer-events: none;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-search-widget--sheet .home-search-widget__input-icon svg {
    width: 16px;
    height: 16px;
    display: block;
}

.home-search-widget--sheet .home-search-widget__field input,
.home-search-widget--sheet .home-search-widget__field select {
    width: 100%;
    height: 1.4rem !important;
    min-height: 1.4rem !important;
    max-height: 1.4rem !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0 0.2rem 0 1.4rem !important;
    color: #6b7280;
    font-size: 0.86rem !important;
    font-weight: 500;
    line-height: 1.4rem;
}

.home-search-widget--sheet .home-search-widget__field input::placeholder {
    color: #9ca3af;
}

.home-search-widget--sheet .home-search-widget__field input:focus,
.home-search-widget--sheet .home-search-widget__field select:focus {
    border: 0 !important;
    box-shadow: none !important;
}

.home-search-widget--sheet .home-search-widget__field--submit {
    padding: 0 0 0 0.55rem !important;
    display: flex;
    align-items: center;
    align-self: stretch;
}

.home-search-widget--sheet .home-search-widget__field--submit > label {
    display: none !important;
}

.home-search-widget--sheet .home-search-widget__submit-btn-icon,
.home-search-widget--sheet .home-search-widget__submit-btn-icon--labeled,
.home-search-widget--sheet button[type="submit"] {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-width: 88px;
    width: auto;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    padding: 0 1rem !important;
    border: 0;
    border-radius: 11px;
    background: var(--primary, #e31e24);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 6px 16px color-mix(in srgb, var(--primary, #e31e24) 30%, transparent);
    transform: none !important;
}

.home-search-widget--sheet .home-search-widget__submit-btn-icon:hover,
.home-search-widget--sheet button[type="submit"]:hover {
    filter: brightness(1.05);
    transform: none !important;
}

.home-search-widget--sheet .hsw-guests {
    position: relative;
}

.home-search-widget--sheet .hsw-guest {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
    width: 100%;
    height: 1.55rem;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: #4b5563;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.55rem;
}

.home-search-widget--sheet .hsw-guest-summary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-width: 0;
}

.home-search-widget--sheet .hsw-guest-summary svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--primary, #ed4b25);
}

.home-search-widget--sheet .hsw-guests-pop {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    z-index: 40;
    min-width: 240px;
    padding: 0.75rem 0.95rem;
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
}

.home-search-widget--sheet .hsw-guests-pop--rooms {
    left: auto;
    right: 0;
    min-width: 276px;
    width: min(320px, calc(100vw - 2rem));
    padding: 1rem 1.05rem 0.95rem;
}

.home-search-widget--sheet .hsw-room + .hsw-room {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #eef0f3;
}

.home-search-widget--sheet .hsw-room__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.55rem;
    color: #94a3b8;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-search-widget--sheet .hsw-room__remove {
    width: 22px;
    height: 22px;
    border: 0;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
}

.home-search-widget--sheet .hsw-room__label {
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
    font-size: 0.92rem;
    font-weight: 750;
    color: #1e3a5f;
    text-transform: none;
}

.home-search-widget--sheet .hsw-room__label small {
    color: #94a3b8;
    font-size: 0.7rem;
    font-weight: 650;
}

.home-search-widget--sheet .hsw-child-ages,
.home-search-widget--catalog .hsw-child-ages,
.home-search-widget .hsw-child-ages {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0.55rem 0 0.15rem;
}

.home-search-widget--sheet .hsw-child-ages__item,
.home-search-widget--catalog .hsw-child-ages__item,
.home-search-widget .hsw-child-ages__item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 4.5rem;
    flex: 1 1 4.5rem;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 650;
}

.home-search-widget--sheet .hsw-child-ages__item select,
.home-search-widget--catalog .hsw-child-ages__item select,
.home-search-widget .hsw-child-ages__item select {
    width: 100%;
    min-height: 34px;
    padding: 0.3rem 0.45rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    color: #1e3a5f;
    font-size: 0.85rem;
    font-weight: 650;
}

.home-search-widget .hsw-child-ages__item.is-required select {
    border-color: #f59e0b;
    box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.25);
}

/* Portal / pill: Oda-Kişi popover taşmasın; tarih alanına yer bırak */
.home-search-widget--pill .home-search-widget__field--guests,
.home-search-widget--portal .home-search-widget__field--guests,
.homepage-hero-suite--portal_landing .home-search-widget__field--guests {
    position: relative;
    z-index: 6;
    flex: 0.72 1 7.25rem;
    min-width: 6.75rem;
}
.home-search-widget--pill .home-search-widget__field--dates,
.home-search-widget--portal .home-search-widget__field--dates,
.homepage-hero-suite--portal_landing .home-search-widget__field--dates {
    flex: 1.55 1 13.25rem;
    min-width: 12.5rem;
}
.home-search-widget--pill .home-search-widget__field--dates input.home-search-widget__date-range,
.home-search-widget--pill .home-search-widget__field--dates input.acentigo-fp-input,
.home-search-widget--portal .home-search-widget__field--dates input.home-search-widget__date-range,
.home-search-widget--portal .home-search-widget__field--dates input.acentigo-fp-input {
    font-size: 0.8rem;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.home-search-widget--pill .hsw-guests-pop,
.home-search-widget--portal .hsw-guests-pop,
.homepage-hero-suite--portal_landing .hsw-guests-pop {
    z-index: 80;
}

/* Oda–Kişi room picker: tüm arama layout’larında (pill/portal/bar…) */
.home-search-widget .hsw-guests--sheet,
.home-search-widget .hsw-guests--rooms {
    position: relative;
}
.home-search-widget .hsw-guests--sheet .hsw-guest {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
    width: 100%;
    min-height: 1.55rem;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: #4b5563;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.45;
}
.home-search-widget .hsw-guest-summary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-width: 0;
}
.home-search-widget .hsw-guest-summary svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--primary, #ed4b25);
}

/*
 * Portal / bar / klasik: Oda-Kişi tetikleyicisi diğer alanlarla aynı input kutusuna gelsin.
 * (pill / sheet / catalog borderless kaldığı için dokunulmaz)
 */
.home-search-widget:not(.home-search-widget--pill):not(.home-search-widget--sheet):not(.home-search-widget--catalog) .home-search-widget__field--guests .hsw-guests--sheet .hsw-guest,
.home-search-widget:not(.home-search-widget--pill):not(.home-search-widget--sheet):not(.home-search-widget--catalog) .home-search-widget__field--guests .hsw-guests--rooms .hsw-guest {
    min-height: 44px;
    height: 44px;
    padding: 0 0.875rem;
    border: 1.5px solid var(--gray-300, #d1d5db);
    border-radius: 12px;
    background: #fff;
    color: var(--gray-800, #1f2937);
    font-size: var(--font-size-sm, 0.875rem);
    font-weight: var(--font-weight-medium, 500);
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.home-search-widget:not(.home-search-widget--pill):not(.home-search-widget--sheet):not(.home-search-widget--catalog) .home-search-widget__field--guests .hsw-guest:hover,
.home-search-widget:not(.home-search-widget--pill):not(.home-search-widget--sheet):not(.home-search-widget--catalog) .home-search-widget__field--guests .hsw-guest:focus-visible {
    border-color: var(--primary, #ed4b25);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 237, 75, 37), 0.15);
    outline: none;
}
.home-search-widget:not(.home-search-widget--pill):not(.home-search-widget--sheet):not(.home-search-widget--catalog) .home-search-widget__field--guests .hsw-guest-summary svg,
.home-search-widget:not(.home-search-widget--pill):not(.home-search-widget--sheet):not(.home-search-widget--catalog) .home-search-widget__field--guests .hsw-guest > svg {
    color: var(--gray-400, #9ca3af);
}
.home-search-widget--portal:not(.home-search-widget--pill):not(.home-search-widget--sheet):not(.home-search-widget--catalog) .home-search-widget__field--guests .hsw-guest,
.home-search-widget--bar:not(.home-search-widget--pill):not(.home-search-widget--sheet):not(.home-search-widget--catalog) .home-search-widget__field--guests .hsw-guest {
    background: var(--gray-50, #f9fafb);
    border-color: var(--gray-200, #e5e7eb);
}
.home-search-widget .hsw-guests-pop--rooms {
    position: absolute;
    top: calc(100% + 12px);
    left: auto;
    right: 0;
    z-index: 80;
    min-width: 276px;
    width: min(320px, calc(100vw - 2rem));
    padding: 1rem 1.05rem 0.95rem;
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
}
.home-search-widget .hsw-room + .hsw-room {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #eef0f3;
}
.home-search-widget .hsw-room__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.55rem;
    color: #94a3b8;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.home-search-widget .hsw-room__remove {
    width: 22px;
    height: 22px;
    border: 0;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
}
.home-search-widget .hsw-room__label {
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
    font-size: 0.92rem;
    font-weight: 750;
    color: #1e3a5f;
    text-transform: none;
}
.home-search-widget .hsw-guests--rooms .hsw-guests-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    font-weight: 650;
    color: #111827;
}
.home-search-widget .hsw-guests--rooms .hsw-step {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.home-search-widget .hsw-guests--rooms .hsw-step span {
    min-width: 1.1rem;
    text-align: center;
    font-weight: 800;
    color: #1e3a5f;
}
.home-search-widget .hsw-guests--rooms .hsw-step button {
    width: 28px;
    height: 28px;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    background: #fff;
    color: #111827;
    cursor: pointer;
}
.home-search-widget .hsw-guests--rooms .hsw-step button:disabled {
    opacity: 0.35;
    cursor: default;
}
.home-search-widget .hsw-add-room {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    width: 100%;
    margin-top: 0.65rem;
    padding: 0.7rem 0 0;
    border: 0;
    border-top: 1px solid #eef0f3;
    background: transparent;
    color: var(--primary, #e31e24);
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
}
.home-search-widget .hsw-apply {
    display: block;
    width: 100%;
    margin-top: 0.75rem;
    min-height: 42px;
    border: 0;
    border-radius: 10px;
    background: var(--primary, #e31e24);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 900px) {
    .home-search-widget--pill .home-search-widget__fields,
    .homepage-hero-suite--portal_landing .home-search-widget--pill .home-search-widget__fields {
        flex-wrap: wrap !important;
    }
    .home-search-widget--pill .home-search-widget__field--guests,
    .homepage-hero-suite--portal_landing .home-search-widget__field--guests {
        flex: 1 1 100%;
    }
}

.home-search-widget--sheet .hsw-add-room {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    width: 100%;
    margin: 0.75rem 0 0;
    padding: 0.7rem 0 0;
    border: 0;
    border-top: 1px solid #eef0f3;
    background: transparent;
    color: var(--primary, #e31e24);
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
}

.home-search-widget--sheet .hsw-add-room svg {
    width: 16px;
    height: 16px;
}

.home-search-widget--sheet .hsw-apply {
    display: block;
    width: 100%;
    margin-top: 0.75rem;
    min-height: 42px;
    border: 0;
    border-radius: 10px;
    background: var(--primary, #e31e24);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
}

.home-search-widget--sheet .hsw-guests-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    font-weight: 650;
    color: #111827;
}

.home-search-widget--sheet .hsw-step {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.home-search-widget--sheet .hsw-step span {
    min-width: 1.1rem;
    text-align: center;
    font-weight: 800;
    color: #1e3a5f;
}

.home-search-widget--sheet .hsw-step button {
    width: 28px;
    height: 28px;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    background: #fff;
    color: #111827;
    cursor: pointer;
}
.home-search-widget--sheet .hsw-step button:disabled {
    opacity: 0.35;
    cursor: default;
}

.hero-popular-searches {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.65rem;
    margin-top: 0.85rem;
    padding: 0 0.15rem 0.25rem;
}

.hero-popular-searches__label {
    color: #1e3a5f;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-popular-searches__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-popular-searches__chip {
    display: inline-flex;
    align-items: center;
    padding: 0.32rem 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #f8fafc;
    color: #334155;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.hero-popular-searches__chip:hover {
    background: #fff;
    border-color: #cbd5e1;
    color: #0f172a;
}

@media (max-width: 992px) {
    .home-search-widget--sheet .home-search-widget__fields {
        grid-template-columns: 1fr 1fr;
    }

    .home-search-widget--sheet .home-search-widget__field--submit {
        grid-column: 1 / -1;
        padding: 0.75rem 0 0 !important;
    }

    .home-search-widget--sheet .home-search-widget__submit-btn-icon,
    .home-search-widget--sheet button[type="submit"] {
        width: 100%;
    }

    .home-search-widget--sheet .home-search-widget__field + .home-search-widget__field:not(.home-search-widget__field--submit)::before {
        display: none;
    }

    .homepage-hero-suite--rounded_search .homepage-hero-suite__search-overlap {
        width: 100%;
        max-width: none;
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .homepage-hero-suite--rounded_search {
        overflow: visible;
        margin-bottom: 1.1rem !important;
    }

    .homepage-hero-suite--rounded_search .hero-slider-wrapper,
    .hero-slider-wrapper--rounded {
        border-radius: 16px !important;
        margin-bottom: 0 !important;
    }

    .hero-slider-wrapper--rounded::before {
        padding-top: var(--hero-suite-mobile-aspect, 54.69%) !important;
    }

    .hero-rounded-overlay {
        display: none;
    }

    .hero-slider-wrapper--rounded .hero-showcase-content,
    .hero-rounded-content {
        align-items: flex-end;
        padding: 1rem 1rem 4.6rem;
    }

    .hero-slider-wrapper--rounded .hero-showcase-copy,
    .hero-rounded-copy {
        max-width: 100%;
    }

    .hero-slider-wrapper--rounded .hero-showcase-badge,
    .hero-rounded-eyebrow {
        font-size: 0.64rem;
        letter-spacing: 0.12em;
        margin-bottom: 0.4rem;
    }

    .hero-slider-wrapper--rounded .hero-showcase-title,
    .hero-rounded-title {
        max-width: 18ch;
        font-size: clamp(1.28rem, 6vw, 1.7rem);
        line-height: 1.15;
    }

    .hero-slider-wrapper--rounded .hero-showcase-desc,
    .hero-rounded-desc {
        max-width: 100%;
        font-size: 0.84rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .homepage-hero-suite--rounded_search .homepage-hero-suite__search-overlap {
        width: 100%;
        max-width: none;
        margin-top: -2.6rem;
        padding: 0 0 0.15rem;
    }

    .home-search-widget--sheet .home-search-widget__panel {
        border-radius: 0 !important;
        padding: 0 !important;
        gap: 0;
        box-shadow: none !important;
        background: transparent !important;
        border: none !important;
    }

    .home-search-widget--sheet .home-search-widget__form {
        border-radius: 16px;
        padding: 1.35rem 0.9rem 0.9rem !important;
    }

    .home-search-widget--sheet .home-search-widget__header-tabs-scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 0 -1.05rem 0.55rem !important;
        padding: 0 !important;
        align-self: flex-start;
        position: relative;
        z-index: 3;
    }

    .home-search-widget--sheet .home-search-widget__header-tabs-scroll::-webkit-scrollbar {
        display: none;
    }

    .home-search-widget--sheet .home-search-widget__header-tabs {
        flex-wrap: nowrap;
        width: max-content;
        min-width: 0;
    }

    .home-search-widget--sheet .home-search-widget__header-tab-btn {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 0.4rem 0.85rem !important;
        font-size: 0.82rem;
    }

    .home-search-widget--sheet .home-search-widget__fields {
        grid-template-columns: 1fr;
    }

    .home-search-widget--sheet .home-search-widget__field {
        padding: 0.55rem 0.1rem !important;
        min-height: 48px;
        border-bottom: 1px solid #f1f5f9;
    }

    .home-search-widget--sheet .home-search-widget__field:first-child {
        padding-left: 0.1rem !important;
    }

    .home-search-widget--sheet .home-search-widget__field--submit {
        border-bottom: 0;
        min-height: 0;
        padding: 0.7rem 0 0 !important;
    }

    .home-search-widget--sheet .home-search-widget__field input,
    .home-search-widget--sheet .home-search-widget__field select,
    .home-search-widget--sheet .hsw-guest {
        height: 1.55rem !important;
        min-height: 1.55rem !important;
        max-height: none !important;
        font-size: 0.92rem !important;
        line-height: 1.55rem;
    }

    .home-search-widget--sheet .home-search-widget__submit-btn-icon,
    .home-search-widget--sheet button[type="submit"] {
        width: 100%;
        height: 46px !important;
        min-height: 46px !important;
        max-height: none !important;
        border-radius: 12px;
    }

    .home-search-widget--sheet .hsw-guests-pop,
    .home-search-widget--sheet .hsw-guests-pop--rooms {
        left: 0;
        right: 0;
        min-width: 0;
        width: 100%;
        max-width: 100%;
    }

    .hero-popular-searches {
        flex-wrap: nowrap;
        align-items: center;
        gap: 0.55rem;
        margin-top: 0.85rem;
        padding: 0 0 0.15rem;
        overflow: hidden;
    }

    .hero-popular-searches__label {
        flex: 0 0 auto;
        font-size: 0.64rem;
    }

    .hero-popular-searches__chips {
        flex: 1 1 auto;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 2px;
    }

    .hero-popular-searches__chips::-webkit-scrollbar {
        display: none;
    }

    .hero-popular-searches__chip {
        flex: 0 0 auto;
        padding: 0.36rem 0.75rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-slider-wrapper--rounded {
        border-radius: 14px !important;
    }

    .hero-slider-wrapper--rounded .hero-showcase-content,
    .hero-rounded-content {
        padding: 0.85rem 0.85rem 4.35rem;
    }

    .hero-slider-wrapper--rounded .hero-showcase-title,
    .hero-rounded-title {
        max-width: 100%;
        font-size: 1.22rem;
    }

    .homepage-hero-suite--rounded_search .homepage-hero-suite__search-overlap {
        margin-top: -2.35rem;
    }

    .home-search-widget--sheet .home-search-widget__panel {
        border-radius: 0;
        padding: 0;
    }

    .home-search-widget--sheet .home-search-widget__form {
        border-radius: 14px;
        padding: 1.25rem 0.7rem 0.7rem !important;
    }

    .home-search-widget--sheet .home-search-widget__header-tabs-scroll {
        margin: 0 0 -1rem 0.5rem !important;
    }
}



/* ——— Kategori / Arşiv: Jolly-benzeri full-bleed arama şeridi ——— */
.archive-hero--search-over.archive-hero--integrated,
.archive-hero--search-over {
    --archive-hero-gutter: clamp(0.85rem, 2.5vw, 1.5rem);
    --archive-hero-content: min(1232px, calc(100vw - (var(--archive-hero-gutter) * 2)));
    --archive-hero-brand: var(--color-primary, var(--primary, #0e4d7a));
    --archive-hero-brand-dark: var(--primary-dark, color-mix(in srgb, var(--archive-hero-brand) 72%, #000));
    --archive-hero-brand-deep: color-mix(in srgb, var(--archive-hero-brand-dark) 82%, #031018);
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
    /* Takvim / oda-kişi popup’ları kesilmesin */
    overflow: visible;
    min-height: 0;
    box-shadow: none;
    isolation: isolate;
    padding: 0.85rem var(--archive-hero-gutter);
    box-sizing: border-box;
    background: linear-gradient(90deg, var(--archive-hero-brand-deep) 0%, var(--archive-hero-brand-dark) 48%, var(--archive-hero-brand) 100%);
    z-index: 20;
}
.archive-hero--search-over.no-banner,
.archive-hero--search-over.has-banner {
    background: linear-gradient(90deg, var(--archive-hero-brand-deep) 0%, var(--archive-hero-brand-dark) 48%, var(--archive-hero-brand) 100%);
}
.archive-hero__media {
    display: none;
}
.archive-hero__shade {
    display: none;
}
.archive-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: var(--archive-hero-content);
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    min-height: 0;
}
.archive-hero__copy {
    display: none;
}
.archive-hero__search {
    width: 100%;
    position: relative;
    z-index: 3;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.archive-hero--search-over .archive-hero-search.home-search-widget--pill {
    max-width: none;
    width: 100%;
    margin: 0;
}
.archive-hero--search-over .home-search-widget--pill .home-search-widget__panel {
    border-radius: 10px;
    border: 0;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
    padding: 0.2rem 0.2rem 0.2rem 0.45rem;
    overflow: visible;
}
.archive-hero--search-over .home-search-widget--pill .home-search-widget__fields {
    display: flex !important;
    align-items: stretch;
    gap: 0;
    min-height: 4.1rem;
    overflow: visible;
}
.archive-hero--search-over .home-search-widget--pill .home-search-widget__field--guests {
    flex: 1.05 1 0;
    overflow: visible;
    position: relative;
    z-index: 2;
}
.archive-hero--search-over .home-search-widget--pill .home-search-widget__field {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.55rem 1rem !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.archive-hero--search-over .home-search-widget--pill .home-search-widget__field > label {
    font-size: 0.72rem;
    letter-spacing: 0;
    text-transform: none;
    opacity: 1;
    margin-bottom: 0.2rem;
    color: #334155;
    font-weight: 700;
}
.archive-hero--search-over .home-search-widget--pill .home-search-widget__field--destination {
    flex: 1.65 1 0;
    position: relative;
    overflow: visible;
    z-index: 1;
}
/* Öneri listesi tarih/oda alanlarının (z-index:2) altında kalmasın */
.archive-hero--search-over .home-search-widget--pill.is-hotel-suggestions-open,
.archive-hero--search-over .home-search-widget--pill.is-tour-suggestions-open {
    position: relative;
    z-index: 80;
}
.archive-hero--search-over .home-search-widget--pill.is-hotel-suggestions-open .home-search-widget__field--destination,
.archive-hero--search-over .home-search-widget--pill.is-tour-suggestions-open .home-search-widget__field--destination {
    z-index: 5;
    overflow: visible;
}
.archive-hero--search-over .home-search-widget--pill.is-hotel-suggestions-open .tour-suggestions-dropdown,
.archive-hero--search-over .home-search-widget--pill.is-tour-suggestions-open .tour-suggestions-dropdown {
    z-index: 10060;
}
.archive-hero--search-over .home-search-widget--pill .home-search-widget__field--dates {
    flex: 1.15 1 0;
    position: relative;
    z-index: 2;
    overflow: visible;
}
.archive-hero--search-over .home-search-widget--pill .home-search-widget__field--submit {
    flex: 0 0 auto;
    padding: 0.35rem !important;
    justify-content: center;
    align-self: stretch;
}
.archive-hero--search-over .home-search-widget--pill .home-search-widget__field--submit > label {
    display: none !important;
}
.archive-hero--search-over .home-search-widget--pill .home-search-widget__field + .home-search-widget__field:not(.home-search-widget__field--submit) {
    border-left: 1px solid #e5eaf0;
}
.archive-hero--search-over .home-search-widget--pill .home-search-widget__input-wrapper {
    display: block;
    position: relative;
    min-width: 0;
    width: 100%;
}
.archive-hero--search-over .home-search-widget--pill .home-search-widget__input-icon {
    position: absolute !important;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    opacity: 1;
    pointer-events: none;
}
.archive-hero--search-over .home-search-widget--pill .home-search-widget__field input,
.archive-hero--search-over .home-search-widget--pill .home-search-widget__field select,
.archive-hero--search-over .home-search-widget--pill .home-search-widget__date-range {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 0 0 1.55rem !important;
    min-height: 1.3rem;
    font-size: 0.92rem !important;
    font-weight: 500;
    color: #0f172a;
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
}
.archive-hero--search-over .home-search-widget--pill .home-search-widget__field input::placeholder,
.archive-hero--search-over .home-search-widget--pill .home-search-widget__date-range::placeholder {
    color: #94a3b8;
    font-weight: 500;
}
.archive-hero--search-over .home-search-widget--pill .home-search-widget__submit-btn-icon--labeled,
.archive-hero--search-over .home-search-widget--pill .home-search-widget__submit-btn-icon,
.archive-hero--search-over .home-search-widget--pill button[type="submit"] {
    min-height: 3.35rem;
    height: 3.35rem;
    border-radius: 8px;
    padding-inline: 1.35rem;
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    gap: 0.4rem;
    white-space: nowrap;
    background: var(--color-primary, #ed4b25) !important;
    color: #fff !important;
    border: 0 !important;
}
.archive-hero--search-over .home-search-widget--pill .home-search-widget__header-tabs {
    display: none !important;
}

/* Şerit header’a yapışık; site-main üst boşluğu kalkar */
body.theme-archive-header-search_over_banner .site-main {
    max-width: none;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
}
body.theme-archive-header-search_over_banner .tours-page,
body.theme-archive-header-search_over_banner .hotels-page {
    max-width: var(--container-max-width, 1400px);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-4, 1rem);
    padding-right: var(--space-4, 1rem);
    box-sizing: border-box;
}

/* Şerit sayfa kutusunun dışında — kenar boşluğu yok */
body.theme-archive-header-search_over_banner .tours-page--archive-hero,
body.theme-archive-header-search_over_banner .hotels-page--archive-hero {
    padding-top: 1rem;
}
body.theme-archive-header-search_over_banner .tours-page > .breadcrumb,
body.theme-archive-header-search_over_banner .hotels-page > .breadcrumb {
    margin-bottom: 0.65rem;
}
.archive-page-title {
    margin: 0 0 1.1rem;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-text, #0f172a);
    line-height: 1.2;
}

@media (max-width: 900px) {
    .archive-hero--search-over {
        --archive-hero-gutter: 0.85rem;
        padding: 0.9rem var(--archive-hero-gutter);
    }
}

@media (max-width: 720px) {
    .archive-hero--search-over .home-search-widget--pill .home-search-widget__panel {
        padding: 0.7rem !important;
        border-radius: 12px;
    }
    .archive-hero--search-over .home-search-widget--pill .home-search-widget__fields {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
        min-height: 0 !important;
    }
    .archive-hero--search-over .home-search-widget--pill .home-search-widget__field,
    .archive-hero--search-over .home-search-widget--pill .home-search-widget__field--destination,
    .archive-hero--search-over .home-search-widget--pill .home-search-widget__field--dates,
    .archive-hero--search-over .home-search-widget--pill .home-search-widget__field--guests {
        flex: 0 0 auto !important;
        width: 100% !important;
        border: 1px solid #e8eef5 !important;
        border-left: 1px solid #e8eef5 !important;
        background: #f8fafc !important;
        border-radius: 10px !important;
        padding: 0.65rem 0.75rem !important;
    }
    .archive-hero--search-over .home-search-widget--pill .home-search-widget__field + .home-search-widget__field:not(.home-search-widget__field--submit) {
        border-left: 1px solid #e8eef5 !important;
    }
    .archive-hero--search-over .home-search-widget--pill .home-search-widget__field--submit {
        width: 100% !important;
        border: 0 !important;
        background: transparent !important;
        padding: 0.1rem 0 0 !important;
    }
    .archive-hero--search-over .home-search-widget--pill .home-search-widget__submit-btn-icon--labeled,
    .archive-hero--search-over .home-search-widget--pill .home-search-widget__submit-btn-icon,
    .archive-hero--search-over .home-search-widget--pill button[type="submit"] {
        width: 100% !important;
        min-height: 48px;
        height: 48px;
        justify-content: center;
        border-radius: 10px;
    }
    .archive-page-title {
        margin-bottom: 0.85rem;
        font-size: 1.25rem;
    }
}

/* Mobil Filtrele butonu — Tema Oluşturucu */
@media (max-width: 1024px) {
    body.theme-mobile-filter-full .mobile-filter-btn,
    body.theme-mobile-filter-full .tc-mobile-filter-btn {
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: none;
        min-width: 0;
        min-height: 52px;
        height: calc(52px + env(safe-area-inset-bottom, 0px));
        padding: 0 1.25rem env(safe-area-inset-bottom, 0px);
        border-radius: 0;
        gap: 0.5rem;
        justify-content: center;
        box-shadow: 0 -6px 20px rgba(15, 23, 42, 0.14);
        transform: none;
    }

    body.theme-mobile-filter-full .mobile-filter-btn .mobile-filter-btn-label,
    body.theme-mobile-filter-full .mobile-filter-btn span {
        display: inline;
    }

    body.theme-mobile-filter-full:has(.mobile-filter-btn),
    body.theme-mobile-filter-full:has(.tc-mobile-filter-btn) {
        padding-bottom: calc(52px + env(safe-area-inset-bottom, 0px));
    }

    body.theme-mobile-filter-full .sticky-buttons-container.bottom-right,
    body.theme-mobile-filter-full .sticky-buttons-container.bottom-left {
        bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
    }

    body.theme-mobile-filter-full .scroll-to-top-btn {
        bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
    }
}
