/*!
 * DCM - CMS - Main Stylesheet
 * Version: 1.7.81
 * Last Updated: 2026-06-02
 * 
 * Türkiye Rehberi - Custom Styles
 */

/* ========================================
   GLOBAL BRAND COLORS - Edit here to change site-wide colors
   ======================================== */
:root {
    /* Primary Brand Colors */
    --brand-primary: #113D5A;        /* Dark Blue - Main brand color */
    --brand-accent: #F59113;         /* Orange - Primary accent */
    --brand-secondary: #FACB72;      /* Light Yellow - Secondary accent */
    
    /* Derived Colors (darker/lighter variants) */
    --brand-primary-dark: #0a2939;   /* Darker version of primary */
    --brand-primary-light: #1a5a80;  /* Lighter version of primary */
    --brand-accent-dark: #d47810;    /* Darker version of accent */
    --brand-accent-light: #f7a83d;   /* Lighter version of accent */
    
    /* Gradients using brand colors - single-color variations only */
    /* Button gradients (single-color variations) */
    --gradient-button-primary: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
    --gradient-button-primary-hover: linear-gradient(135deg, var(--brand-primary-dark) 0%, var(--brand-primary) 100%);
    --gradient-button-accent: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-light) 100%);
    --gradient-button-accent-hover: linear-gradient(135deg, var(--brand-accent-dark) 0%, var(--brand-accent) 100%);
    --gradient-button-secondary: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-light) 100%);
    --gradient-button-secondary-hover: linear-gradient(135deg, var(--brand-accent-dark) 0%, var(--brand-accent) 100%);
    
    /* Legacy gradients (kept for backward compatibility, using single-color variations) */
    --gradient-primary: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-light) 100%);
    --gradient-overlay: linear-gradient(90deg, var(--brand-accent), var(--brand-accent-light));
    --gradient-topbar: linear-gradient(90deg, var(--brand-primary-dark) 0%, var(--brand-primary) 100%);
    --gradient-page-header: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
    --gradient-reservation: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
    --gradient-tips: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-light) 100%);
    --gradient-filters: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-light) 100%);
    --gradient-popular: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);

    /* RGB triplets for translucent shadows and overlays (overridden by Theme Options palette) */
    --brand-primary-rgb: 17, 61, 90;
    --brand-accent-rgb: 245, 145, 19;
    --brand-secondary-rgb: 250, 203, 114;
    --button-on-brand: #ffffff;
}

/* ========================================
   Topbar Styles
   ======================================== */

.topbar {
    background: var(--topbar-background, var(--gradient-topbar));
    color: var(--topbar-text-color, white);
    padding: 0.5rem 0;
    font-size: 0.875rem;
    position: relative;
    z-index: 60;
}

.site-main-header {
    position: sticky;
    top: 0;
    z-index: 50;
}

.topbar-link {
    display: flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    color: var(--topbar-text-color, inherit);
}

.topbar-link:hover {
    background-color: var(--topbar-link-hover-bg, rgba(255, 255, 255, 0.1));
    color: var(--topbar-link-hover-text, inherit) !important;
}

.topbar-certification {
    font-weight: 500;
}

.topbar-certification i {
    color: var(--topbar-accent-color, #FACB72); /* Brand secondary color for certification badge */
}

.topbar-social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--topbar-icon-bg, rgba(255, 255, 255, 0.1));
    transition: all 0.3s ease;
}

.topbar-social-icon:hover {
    background-color: var(--topbar-icon-hover-bg, rgba(255, 255, 255, 0.2));
    transform: translateY(-2px);
}

/* Language switcher dropdown (inside topbar / nav) */
.language-switcher-panel {
    color: #111827;
}

.topbar .language-switcher-panel .language-switcher-link {
    color: #374151;
    text-decoration: none;
}

.topbar .language-switcher-panel .language-switcher-link:hover {
    color: #2563eb;
}

.topbar .language-switcher-panel .language-switcher-link--active {
    color: #2563eb;
}

/* Currency switcher dropdown (mirrors language switcher) */
.currency-switcher-panel {
    color: #111827;
}

.topbar .currency-switcher-panel .currency-switcher-link {
    color: #374151;
    text-decoration: none;
}

.topbar .currency-switcher-panel .currency-switcher-link:hover {
    color: #2563eb;
}

.topbar .currency-switcher-panel .currency-switcher-link--active {
    color: #2563eb;
}

/* Language Selector */
.topbar-language-selector {
    position: relative;
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    min-width: 160px;
    z-index: 100;
}

.language-option {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #374151;
    transition: all 0.2s ease;
    cursor: pointer;
}

.language-option:hover {
    background-color: #f3f4f6;
}

.language-option.active {
    background-color: #eff6ff;
    color: var(--brand-accent);
    font-weight: 500;
}

/* Shared flag sizing
   Apply this to SVG, emoji, or image-based flags to keep them visually balanced. */
.language-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    vertical-align: middle;
    line-height: 1;
    overflow: hidden;
    border-radius: 0.25rem;
    width: var(--flag-width, 1.25rem);
    height: var(--flag-height, 0.9375rem);
    font-size: var(--flag-font-size, 1rem);
}

.language-flag img,
.language-flag svg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.language-flag--xs {
    --flag-width: 1rem;
    --flag-height: 0.75rem;
    --flag-font-size: 0.875rem;
}

.language-flag--sm {
    --flag-width: 1.25rem;
    --flag-height: 0.9375rem;
    --flag-font-size: 1rem;
}

.language-flag--md {
    --flag-width: 1.5rem;
    --flag-height: 1.125rem;
    --flag-font-size: 1.125rem;
}

.language-flag--lg {
    --flag-width: 1.75rem;
    --flag-height: 1.3125rem;
    --flag-font-size: 1.375rem;
}

.language-flag--xl {
    --flag-width: 2rem;
    --flag-height: 1.5rem;
    --flag-font-size: 1.5rem;
}

/* Breadcrumb layout: assets/breadcrumb.css (tokens: breadcrumb-dynamic.css.php) */

/* ========================================
   Page Header Styles (Listing Pages)
   ======================================== */

.page-header {
    background: var(--gradient-page-header);
    color: white;
    padding: 4rem 0;
}

/* ========================================
   Reservation Form Styles
   ======================================== */

.reservation-form {
    background: var(--gradient-reservation);
    color: white;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.reservation-widget {
    --rw-text: var(--button-on-brand, #ffffff);
    --rw-text-muted: rgba(255, 255, 255, 0.78);
    --rw-text-subtle: rgba(255, 255, 255, 0.62);
    --rw-surface: rgba(255, 255, 255, 0.12);
    --rw-surface-border: rgba(255, 255, 255, 0.2);
    --rw-input-bg: rgba(255, 255, 255, 0.97);
    --rw-input-text: var(--brand-primary-dark, #0a2939);
    --rw-focus-ring: rgba(var(--brand-accent-rgb, 245, 145, 19), 0.35);
    --rw-highlight: var(--brand-secondary, #facb72);
    background: linear-gradient(
        165deg,
        var(--brand-primary-dark) 0%,
        var(--brand-primary) 50%,
        var(--brand-primary-light) 100%
    );
    color: var(--rw-text);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 25px 50px -12px rgba(var(--brand-primary-rgb, 17, 61, 90), 0.38),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    overflow: visible;
    position: relative;
    isolation: isolate;
}

.reservation-widget::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(95% 70% at 100% 0%, rgba(var(--brand-accent-rgb, 245, 145, 19), 0.2) 0%, transparent 58%);
    pointer-events: none;
    z-index: 0;
}

.reservation-widget > * {
    position: relative;
    z-index: 1;
}

.reservation-widget--embedded {
    background: transparent;
    color: inherit;
    border-radius: 0;
    box-shadow: none;
    border: 0;
    overflow: visible;
    isolation: auto;
}

.reservation-widget--embedded::before {
    display: none;
}

.reservation-widget__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 1rem;
    padding: 1.5rem 1.5rem 1rem;
}

.reservation-widget__header--compact {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
}

.reservation-widget__header-copy {
    min-width: 0;
}

.reservation-widget__header--without-starting {
    grid-template-columns: minmax(0, 1fr);
}

.reservation-widget__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.75;
    margin-bottom: 0.35rem;
}

.reservation-widget__title {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.reservation-widget__starting {
    display: grid;
    justify-items: end;
    align-content: start;
    gap: 0.15rem;
    min-width: 8.5rem;
    text-align: right;
}

.reservation-widget__starting--hidden {
    display: none;
}

.reservation-widget__starting--inline {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    justify-items: start;
    gap: 0.75rem;
    min-width: 0;
    text-align: left;
}

.reservation-widget__starting--inline .reservation-widget__starting-label,
.reservation-widget__starting--inline .reservation-widget__starting-unit {
    margin-bottom: 0;
}

.reservation-widget--embedded .reservation-widget__header {
    padding: 0 0 1rem;
}

.reservation-widget--embedded .reservation-widget__header-copy {
    display: none;
}

.reservation-widget--embedded .reservation-widget__body {
    padding: 0;
}

.reservation-widget--embedded .reservation-widget__note {
    padding-top: 1rem;
}

.reservation-widget--embedded .reservation-widget__cta {
    width: 100%;
}

.reservation-widget--detail-card {
    overflow: hidden;
}

/* Detail sidebar card: mobile flow replaces this below md (Tailwind-free themes e.g. Buldirekt). */
@media (max-width: 767px) {
    body:has(.reservation-mobile-flow) .dcm-reservation-detail-desktop {
        display: none !important;
    }
}

.reservation-widget__detail-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    min-height: 2.75rem;
    padding: 1.5rem 1.5rem 1rem;
    color: var(--rw-text);
    background: transparent;
    border: 0;
    border-radius: 1rem 1rem 0 0;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s ease;
}

.reservation-widget__detail-toggle:hover {
    background: rgba(255, 255, 255, 0.06);
}

.reservation-widget__detail-toggle:focus-visible {
    outline: 2px solid var(--rw-highlight);
    outline-offset: -2px;
}

.reservation-widget__detail-header-copy {
    min-width: 0;
    flex: 1 1 auto;
}

.reservation-widget__title--detail {
    margin: 0;
    font-size: 1.7rem;
}

.reservation-widget__detail-chevron {
    flex: 0 0 auto;
}

.reservation-widget__detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    min-height: 2.75rem;
    padding: 1.5rem 1.5rem 1rem;
    color: var(--rw-text);
    background: transparent;
    border-radius: 1rem 1rem 0 0;
}

.reservation-widget--detail-card-static .reservation-widget__detail-header {
    cursor: default;
}

/* Compact desktop detail card (sidebar) */
.reservation-widget--detail-card-compact .reservation-widget__detail-header--compact {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.875rem 1rem 0.75rem;
    border-bottom: 1px solid var(--rw-surface-border);
}

.reservation-widget--detail-card-compact .reservation-widget__title--detail {
    font-size: 1.125rem;
    line-height: 1.25;
}

.reservation-widget--detail-card-compact .reservation-widget__title--detail .mr-2 {
    margin-right: 0.4rem;
}

.reservation-widget--detail-card-compact .reservation-widget__detail-subline {
    margin: 0.25rem 0 0;
    font-size: 0.75rem;
    line-height: 1.35;
    color: var(--rw-text-muted);
}

.reservation-widget--detail-card-compact .reservation-widget__detail-price-anchor {
    flex: 0 0 auto;
    text-align: right;
    min-width: 0;
}

.reservation-widget--detail-card-compact .reservation-widget__detail-price-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rw-text-muted);
    margin-bottom: 0.15rem;
}

.reservation-widget--detail-card-compact .reservation-widget__detail-price-row {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
}

.reservation-widget--detail-card-compact .reservation-widget__detail-price-value {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--rw-highlight);
}

.reservation-widget--detail-card-compact .reservation-widget__detail-price-unit {
    font-size: 0.75rem;
    color: var(--rw-text-muted);
    white-space: nowrap;
}

.reservation-widget--detail-card-compact .reservation-widget__detail-nights-chip {
    display: inline-flex;
    align-items: center;
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 1.2;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    background: var(--rw-surface);
    border: 1px solid var(--rw-surface-border);
    color: var(--rw-text);
    white-space: nowrap;
}

.reservation-widget--detail-card-compact .reservation-widget__detail-nights-chip.hidden {
    display: none;
}

.reservation-widget--detail-card-compact .reservation-widget__body {
    padding: 0.75rem 1rem 1rem;
}

.reservation-widget--detail-card-compact .reservation-widget__form {
    gap: 0.625rem;
}

.reservation-widget--detail-card-compact .reservation-widget__form-inset {
    border-radius: 0.625rem;
    background: var(--rw-input-bg);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--rw-input-text);
    overflow: visible;
}

.reservation-widget--detail-card-compact .reservation-widget__form-inset-section {
    padding: 0.625rem 0.75rem;
}

.reservation-widget--detail-card-compact .reservation-widget__form-inset-section--guests {
    border-top: 1px solid rgba(var(--brand-primary-rgb, 17, 61, 90), 0.08);
}

.reservation-widget--detail-card-compact .reservation-widget__form-inset-label {
    display: block;
    margin-bottom: 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--rw-input-text);
}

.reservation-widget--detail-card-compact .reservation-widget__form-inset-section--dates .accommodation-reservation-date-picker__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.reservation-widget--detail-card-compact .reservation-widget__form-inset .reservation-widget__fields {
    gap: 0.5rem;
}

.reservation-widget--detail-card-compact .reservation-widget__form-inset .reservation-widget__field {
    gap: 0.35rem;
}

.reservation-widget--detail-card-compact .reservation-widget__form-inset .reservation-widget__label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--rw-input-text);
}

.reservation-widget--detail-card-compact .reservation-widget__form-inset .reservation-widget__input,
.reservation-widget--detail-card-compact .reservation-widget__form-inset .reservation-widget__select,
.reservation-widget--detail-card-compact .reservation-widget__form-inset .accommodation-reservation-date-picker__trigger {
    min-height: 2.75rem;
    padding: 0.5rem 0.65rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.reservation-widget--detail-card-compact .reservation-widget__form-inset .accommodation-reservation-date-picker__trigger-body {
    min-width: 0;
    overflow: hidden;
}

.reservation-widget--detail-card-compact .reservation-widget__form-inset .accommodation-reservation-date-picker__trigger-dates {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 0.875rem;
}

.reservation-widget--detail-card-compact .reservation-widget__form-inset .accommodation-reservation-date-picker__trigger[data-picker-trigger-state="empty"] .accommodation-reservation-date-picker__trigger-dates {
    font-weight: 500;
    color: #64748b;
}

.reservation-widget--detail-card-compact .reservation-widget__form-inset .accommodation-reservation-date-picker__trigger[data-picker-trigger-state="pending-checkout"] {
    min-height: 3rem;
}

.reservation-widget--detail-card-compact .reservation-widget__form-inset .accommodation-reservation-date-picker__trigger-meta {
    font-size: 0.75rem;
}

.reservation-widget--detail-card-compact .reservation-widget__breakdown-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0;
    padding: 0.625rem 0.75rem;
    border-radius: 0.625rem;
    background: var(--rw-surface);
    border: 1px solid var(--rw-surface-border);
}

.reservation-widget--detail-card-compact .reservation-widget__breakdown-bar.hidden {
    display: none;
}

.reservation-widget--detail-card-compact .reservation-widget__breakdown-copy {
    display: grid;
    gap: 0.15rem;
    min-width: 0;
}

.reservation-widget--detail-card-compact .reservation-widget__breakdown-title {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rw-text-muted);
}

.reservation-widget--detail-card-compact .reservation-widget__breakdown-meta {
    font-size: 0.8125rem;
    color: var(--rw-text);
    line-height: 1.3;
}

.reservation-widget--detail-card-compact .reservation-widget__breakdown-extra {
    display: grid;
    gap: 0.15rem;
    margin-top: 0.15rem;
    font-size: 0.75rem;
    color: var(--rw-text-muted);
}

.reservation-widget--detail-card-compact .reservation-widget__breakdown-row {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
}

.reservation-widget--detail-card-compact .reservation-widget__breakdown-row.hidden {
    display: none;
}

.reservation-widget--detail-card-compact .reservation-widget__breakdown-line-label {
    font-weight: 700;
}

.reservation-widget--detail-card-compact .reservation-widget__breakdown-value {
    flex: 0 0 auto;
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1;
    color: var(--rw-highlight);
}

.reservation-widget--detail-card-compact .reservation-widget__status {
    margin-top: 0.5rem;
}

.reservation-widget--detail-card-compact .reservation-widget__cta {
    min-height: 2.875rem;
    margin-top: 0;
}

.reservation-widget--detail-card-compact .reservation-widget__note {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1rem;
    margin-top: 0.625rem;
    padding-top: 0;
    font-size: 0.75rem;
    line-height: 1.35;
    color: var(--rw-text-muted);
    text-align: center;
}

.reservation-widget--detail-card-compact .reservation-widget__note-separator {
    display: none;
}

.reservation-widget[data-reservation-pricing-active="1"] .reservation-widget__detail-price-unit {
    display: none;
}

.reservation-widget__detail-price-strip {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    padding: 0 1.5rem 1rem;
    color: var(--rw-text);
    white-space: nowrap;
    transition: opacity 0.2s ease;
    border-bottom: 1px solid var(--rw-surface-border);
    margin-bottom: 0.15rem;
}

.reservation-widget[data-reservation-pricing-active="1"] .reservation-widget__detail-price-strip {
    opacity: 0.55;
}

.reservation-widget__starting-label--strip {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.reservation-widget__starting-price--strip {
    flex: 0 0 auto;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--rw-highlight);
}

.reservation-widget__starting-unit--strip {
    flex: 0 0 auto;
    white-space: nowrap;
}

.reservation-widget__starting--vehicle,
.reservation-widget__starting--tour,
.reservation-widget__starting--activity,
.reservation-widget__starting--accommodation {
    min-width: 7.75rem;
}

.reservation-widget__starting-label {
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.reservation-widget__starting-price,
.reservation-widget__summary-value {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.reservation-widget__summary-value {
    color: var(--rw-highlight);
}

.reservation-widget__starting-unit {
    font-size: 0.8rem;
    opacity: 0.82;
}

.reservation-widget__body {
    padding: 0 1.5rem 1.5rem;
    overflow: visible;
}

.reservation-widget__section {
    display: grid;
    gap: 0.65rem;
}

.reservation-widget__section + .reservation-widget__section,
.reservation-widget__section + .reservation-widget__summary,
.reservation-widget__form > .reservation-widget__summary {
    margin-top: 0.25rem;
}

.reservation-widget__section-eyebrow {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rw-text-muted);
}

.reservation-widget__form {
    display: grid;
    gap: 1rem;
}

.reservation-widget__fields {
    display: grid;
    gap: 1rem;
    overflow: visible;
}

.reservation-widget__fields--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reservation-widget__fields--dates {
    position: relative;
    z-index: 30;
    overflow: visible;
}

.reservation-widget__field {
    display: grid;
    gap: 0.45rem;
}

.reservation-widget__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--rw-text);
}

.reservation-widget__input,
.reservation-widget__select {
    width: 100%;
    min-height: 2.75rem;
    border: 1px solid var(--rw-surface-border);
    border-radius: 0.9rem;
    background: var(--rw-input-bg);
    color: var(--rw-input-text);
    padding: 0.85rem 1rem;
    box-shadow: 0 1px 2px rgba(var(--brand-primary-rgb, 17, 61, 90), 0.1);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.reservation-widget__input:focus,
.reservation-widget__select:focus {
    outline: none;
    border-color: var(--brand-accent, #f59113);
    box-shadow: 0 0 0 3px var(--rw-focus-ring);
}

.reservation-widget__help {
    margin: 0;
    font-size: 0.75rem;
    color: var(--rw-text-muted);
}

.reservation-widget__summary {
    margin-top: 0.25rem;
    border-radius: 1rem;
    background: var(--rw-surface);
    border: 1px solid var(--rw-surface-border);
    padding: 1rem 1.1rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px -16px rgba(var(--brand-primary-rgb, 17, 61, 90), 0.45);
}

.reservation-widget__summary-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.reservation-widget__summary-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rw-text-muted);
}

.reservation-widget__summary-meta {
    margin-top: 0.45rem;
    font-size: 0.9rem;
    color: var(--rw-text);
}

.reservation-widget__summary-extra {
    display: grid;
    gap: 0.5rem;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--rw-text);
}

.reservation-widget__summary-row--extra {
    font-size: 0.85rem;
}

.reservation-widget__summary-row--extra .reservation-widget__summary-line-label {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.82);
}

.reservation-widget__summary-line-label {
    font-weight: 700;
}

.reservation-widget__status {
    margin-top: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    border-radius: 0.9rem;
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.reservation-widget__status--info {
    background: rgba(59, 130, 246, 0.16);
    color: #eff6ff;
    border: 1px solid rgba(191, 219, 254, 0.28);
}

.reservation-widget__status--success {
    background: rgba(34, 197, 94, 0.16);
    color: #ecfdf5;
    border: 1px solid rgba(167, 243, 208, 0.28);
}

.reservation-widget__status--error {
    background: rgba(239, 68, 68, 0.16);
    color: #fef2f2;
    border: 1px solid rgba(254, 202, 202, 0.3);
}

.reservation-widget__status-icon {
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.reservation-widget__status-text {
    min-width: 0;
}

.reservation-widget__cta {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.75rem;
    border-radius: 0.95rem;
    padding: 0.95rem 1.25rem;
    font-size: 1rem;
    font-weight: 800;
    border: 0;
    color: var(--button-primary-text-color, #ffffff);
    background: var(--gradient-button-accent, var(--gradient-button-secondary));
    box-shadow: 0 18px 30px -18px rgba(var(--brand-accent-rgb, 245, 145, 19), 0.55);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.reservation-widget__cta:hover {
    transform: translateY(-1px);
    background: var(--gradient-button-accent-hover, var(--gradient-button-secondary-hover));
    box-shadow: 0 22px 34px -18px rgba(var(--brand-accent-rgb, 245, 145, 19), 0.62);
}

.reservation-widget__cta:focus-visible {
    outline: 2px solid var(--rw-highlight);
    outline-offset: 2px;
}

.reservation-widget__cta:disabled {
    cursor: not-allowed;
    opacity: 0.72;
    transform: none;
    filter: saturate(0.9);
    box-shadow: none;
}

.reservation-widget__cta--vehicle {
    background: var(--gradient-button-primary);
    box-shadow: 0 18px 30px -18px rgba(var(--brand-primary-rgb, 17, 61, 90), 0.5);
}

.reservation-widget__cta--vehicle:hover {
    background: var(--gradient-button-primary-hover);
    box-shadow: 0 22px 34px -18px rgba(var(--brand-primary-rgb, 17, 61, 90), 0.58);
}

.reservation-widget__cta--tour,
.reservation-widget__cta--activity,
.reservation-widget__cta--accommodation {
    background: var(--gradient-button-accent, var(--gradient-button-secondary));
    box-shadow: 0 18px 30px -18px rgba(var(--brand-accent-rgb, 245, 145, 19), 0.55);
}

.reservation-widget__cta--tour:hover,
.reservation-widget__cta--activity:hover,
.reservation-widget__cta--accommodation:hover {
    background: var(--gradient-button-accent-hover, var(--gradient-button-secondary-hover));
    box-shadow: 0 22px 34px -18px rgba(var(--brand-accent-rgb, 245, 145, 19), 0.62);
}

.reservation-widget__cta--continue {
    box-shadow: 0 18px 30px -18px rgba(var(--brand-accent-rgb, 245, 145, 19), 0.55);
}

.reservation-widget__cta--request {
    background: var(--gradient-button-primary);
    box-shadow: 0 18px 30px -18px rgba(var(--brand-primary-rgb, 17, 61, 90), 0.5);
}

.reservation-widget__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.9;
    text-align: center;
}

.reservation-widget__note-separator {
    opacity: 0.55;
}

.reservation-widget--page {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12);
}

.reservation-widget--page .reservation-widget__header {
    padding-bottom: 1.25rem;
}

.reservation-widget--page .reservation-widget__eyebrow,
.reservation-widget--page .reservation-widget__label,
.reservation-widget--page .reservation-widget__help {
    color: #475569;
}

.reservation-widget--page .reservation-widget__starting-label,
.reservation-widget--page .reservation-widget__summary-label {
    color: #64748b;
}

.reservation-widget--page .reservation-widget__starting-price,
.reservation-widget--page .reservation-widget__summary-value {
    color: #0f172a;
}

.reservation-widget--page .reservation-widget__body {
    padding-top: 0;
}

.reservation-widget--page .reservation-widget__header {
    align-items: center;
}

.reservation-widget--page .reservation-widget__input,
.reservation-widget--page input[type="text"],
.reservation-widget--page input[type="email"],
.reservation-widget--page input[type="tel"],
.reservation-widget--page input[type="date"],
.reservation-widget--page select,
.reservation-widget--page textarea {
    background: #ffffff;
    border-color: #cbd5e1;
    color: #0f172a;
}

.reservation-widget--page .reservation-widget__input:focus,
.reservation-widget--page input[type="text"]:focus,
.reservation-widget--page input[type="email"]:focus,
.reservation-widget--page input[type="tel"]:focus,
.reservation-widget--page input[type="date"]:focus,
.reservation-widget--page select:focus,
.reservation-widget--page textarea:focus {
    border-color: var(--brand-accent, #f59113);
    box-shadow: 0 0 0 3px rgba(var(--brand-accent-rgb, 245, 145, 19), 0.2);
}

.reservation-widget--page-main,
.reservation-widget--page-summary {
    overflow: visible;
}

.reservation-widget--page-summary {
    overflow: hidden;
}

.reservation-widget--page-summary .reservation-widget__body {
    padding-top: 0;
}

.reservation-widget--page-summary .reservation-widget__summary {
    background: linear-gradient(
        165deg,
        var(--brand-primary-dark) 0%,
        var(--brand-primary) 52%,
        var(--brand-primary-light) 100%
    );
    color: var(--button-on-brand, #ffffff);
    border-color: rgba(255, 255, 255, 0.16);
}

.reservation-widget--page-summary .reservation-widget__summary-label,
.reservation-widget--page-summary .reservation-widget__summary-meta,
.reservation-widget--page-summary .reservation-widget__summary-extra {
    color: var(--button-on-brand, #ffffff);
}

.reservation-widget--page-summary .reservation-widget__summary-value {
    color: var(--brand-secondary, #facb72);
}

@media (prefers-reduced-motion: reduce) {
    .reservation-widget__cta,
    .reservation-widget__detail-toggle,
    .reservation-widget__detail-price-strip,
    .reservation-widget__input,
    .reservation-widget__select {
        transition: none;
    }

    .reservation-widget__cta:hover {
        transform: none;
    }
}

.custom-calendar-input {
    position: relative;
    z-index: 40;
    overflow: visible;
}

.custom-calendar {
    position: fixed;
    z-index: 9999 !important;
}

@media (max-width: 640px) {
    .reservation-widget__header {
        padding: 1.25rem 1.25rem 0.95rem;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .reservation-widget__body {
        padding: 0 1.25rem 1.25rem;
    }

    .reservation-widget__fields--grid {
        grid-template-columns: 1fr;
    }

    .reservation-widget__title {
        font-size: 1.25rem;
    }

    .reservation-widget__starting-price,
    .reservation-widget__summary-value {
        font-size: 1.75rem;
    }

    .reservation-widget__starting--inline {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 0.5rem;
        width: 100%;
        white-space: nowrap;
    }

    .reservation-widget__starting--inline .reservation-widget__starting-label {
        flex: 1 1 auto;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .reservation-widget__starting--inline .reservation-widget__starting-price {
        flex: 0 0 auto;
        white-space: nowrap;
        font-size: 1.5rem;
    }

    .reservation-widget__starting--inline .reservation-widget__starting-unit {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .reservation-widget__detail-toggle {
        padding: 1.25rem 1.25rem 0.85rem;
    }

    .reservation-widget__detail-price-strip {
        padding: 0 1.25rem 0.85rem;
        gap: 0.5rem;
    }

    .reservation-widget__title--detail {
        font-size: 1.35rem;
    }

    .reservation-widget__starting-price--strip {
        font-size: 1.65rem;
    }
}

.tips-section {
    background: var(--gradient-tips);
    color: white;
    border-radius: 0.75rem;
    overflow: hidden;
}

.info-section {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.filters-section {
    background: var(--gradient-filters);
    color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.filters-section .sidebar-section-content {
    background: rgba(255, 255, 255, 0.95);
    color: #374151;
    border-radius: 0.5rem;
    margin: 0 1rem 1rem 1rem;
    padding: 1rem;
}

.filters-section .sidebar-section-content h4 {
    color: var(--brand-primary);
}

/* Archive compact filters (desktop sidebar + mobile overlay) */
.filters-section--compact {
    position: relative;
}

/* Desktop archive sidebar: hidden below lg; mobile uses overlay toolbar */
.archive-filters-desktop {
    display: none;
}

@media (min-width: 1024px) {
    .archive-filters-desktop {
        display: block;
    }
}

.filter-facet--compact {
    margin-bottom: 0.875rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid rgba(17, 61, 90, 0.08);
}

.filter-facet--compact:last-of-type {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-facet__heading {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.filter-facet__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.375rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1;
    background: rgba(17, 61, 90, 0.12);
    color: var(--brand-primary);
}

.filter-facet-scroll {
    max-height: 12.5rem;
    overflow-y: auto;
    padding-right: 0.25rem;
}

.filter-facet__search {
    width: 100%;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0.625rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
}

.filter-facet__search:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.35);
}

.filter-chip-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}

.filter-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.125rem;
    padding: 0.375rem 0.625rem;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #4b5563;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.filter-chip:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.filter-chip.is-active {
    border-color: var(--brand-primary);
    background: rgba(17, 61, 90, 0.08);
    color: var(--brand-primary);
}

.filter-chip--hidden {
    display: none;
}

.filter-chip__label {
    line-height: 1.2;
}

.filter-facet__show-more {
    margin-top: 0.5rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--brand-primary);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}

.filter-facet__show-more:hover {
    text-decoration: underline;
}

.filter-active-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-bottom: 0.75rem;
}

.filter-active-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.5rem 0.25rem 0.625rem;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    color: #374151;
    font-size: 0.6875rem;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    text-decoration: none;
}

.filter-active-chip:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.filter-active-chip--clear {
    background: transparent;
}

.listing-filter-toolbar {
    position: sticky;
    top: 0;
    z-index: 40;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(6px);
    pointer-events: auto;
}

.listing-filter-toolbar__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.625rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(17, 61, 90, 0.18);
    background: var(--brand-primary);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.listing-filter-overlay {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: none;
    pointer-events: none;
}

.listing-filter-overlay.is-open {
    display: block;
    pointer-events: auto;
}

.listing-filter-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
}

.listing-filter-overlay__panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.listing-filter-overlay__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    background: var(--brand-primary);
    color: #fff;
}

.listing-filter-overlay__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.listing-filter-overlay__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    cursor: pointer;
}

.listing-filter-overlay__active-chips {
    padding: 0.75rem 1rem 0;
}

.listing-filter-overlay__body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 0.75rem 1rem 1rem;
}

.listing-filter-overlay__footer {
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid #e5e7eb;
    background: #fff;
}

.listing-filter-overlay__apply {
    width: 100%;
    min-height: 2.75rem;
    border: 0;
    border-radius: 0.75rem;
    background: var(--brand-primary);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
}

body.listing-filter-overlay-open {
    overflow: hidden;
}

@media (min-width: 1024px) {
    .listing-filter-toolbar,
    .listing-filter-overlay {
        display: none !important;
    }
}

.popular-section {
    background: var(--gradient-popular);
    color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.popular-section h4 {
    color: white;
}

.popular-section .sidebar-section-content {
    background: rgba(255, 255, 255, 0.95);
    color: #374151;
    border-radius: 0.5rem;
    margin: 0 1rem 1rem 1rem;
    padding: 1rem;
}

.popular-section .sidebar-section-content h5 {
    color: var(--brand-primary);
}

.popular-section .popular-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.popular-section .popular-item:hover {
    background: linear-gradient(135deg, rgba(17, 61, 90, 0.05) 0%, rgba(26, 90, 128, 0.1) 100%);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(17, 61, 90, 0.15);
}

.popular-section .popular-item:hover h5 {
    color: var(--brand-accent);
}

.popular-section .popular-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.popular-section .popular-item img {
    transition: all 0.3s ease;
}

/* ========================================
   Collapsible Sections
   ======================================== */

.sidebar-section-content.collapsed {
    display: none;
}

.language-option .flag-icon {
    font-size: 1.25rem;
    margin-right: 0.75rem;
}

/* Responsive Topbar */
@media (max-width: 640px) {
    .topbar {
        font-size: 0.75rem;
    }
    
    .topbar-left {
        flex: 1;
        min-width: 0;
    }
    
    .topbar-social-icon {
        width: 28px;
        height: 28px;
        font-size: 0.875rem;
    }
    
    .topbar-right {
        gap: 0.5rem;
    }
}

/* ========================================
   Navigation Dropdown Menu Styles
   ======================================== */

/* Desktop Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-link-dropdown {
    cursor: pointer;
    white-space: nowrap;
}

.nav-dropdown:hover .nav-link-dropdown {
    background-color: #f3f4f6;
    color: var(--brand-accent);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    color: var(--brand-accent);
}

/* Dropdown Menu Panel */
.dropdown-menu {
    pointer-events: none;
    /* Add a small delay before hiding */
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: all;
}

/* Create a bridge between button and dropdown to prevent gap */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 8px;
    background: transparent;
    z-index: 10;
}

/* Keep dropdown visible when hovering over the bridge */
.nav-dropdown:hover::after {
    pointer-events: all;
}

/* Dropdown Items */
.dropdown-item {
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    border-left-color: var(--brand-accent);
    padding-left: 1.25rem;
}

.dropdown-item:first-child {
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
}

.dropdown-item:last-child {
    border-bottom-left-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
}

/* Dropdown Animation Enhancement */
@keyframes dropdownSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.nav-dropdown:hover .dropdown-menu {
    animation: dropdownSlideDown 0.3s ease-out;
}

/* Regular Navigation Links */
.nav-link {
    white-space: nowrap;
}

/* User icon styling in navigation */
.nav-link-dropdown .fa-user-circle {
    font-size: 1.125rem;
}

/* Mobile Navigation Dropdown */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.mobile-submenu.show {
    max-height: 500px;
    display: block;
}

.mobile-dropdown-arrow {
    transition: transform 0.3s ease;
}

.mobile-dropdown-arrow.rotated {
    transform: rotate(180deg);
}

/* Backdrop blur effect for dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    backdrop-filter: blur(10px);
    border-radius: inherit;
    z-index: -1;
}

/* Primary navigation hover modes (non-default theme shells) */
.nav-link.active,
.nav-link-dropdown.active {
    position: relative;
}

body:not(.theme-default) .nav-link,
body:not(.theme-default) .nav-link-dropdown {
    position: relative;
}

body:not(.theme-default) .nav-link::after,
body:not(.theme-default) .nav-link-dropdown::after {
    content: '';
    position: absolute;
    bottom: -2px;
    height: 2px;
    background: var(--brand-accent);
    border-radius: 2px;
    pointer-events: none;
}

body:not(.theme-default).primary-nav-hover-center-grow .nav-link::after,
body:not(.theme-default).primary-nav-hover-center-grow .nav-link-dropdown::after {
    left: 50%;
    right: auto;
    width: 0;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

body:not(.theme-default).primary-nav-hover-center-grow .nav-link:hover::after,
body:not(.theme-default).primary-nav-hover-center-grow .nav-link.active::after,
body:not(.theme-default).primary-nav-hover-center-grow .nav-link-dropdown:hover::after,
body:not(.theme-default).primary-nav-hover-center-grow .nav-link-dropdown.active::after,
body:not(.theme-default).primary-nav-hover-center-grow .nav-dropdown:hover .nav-link-dropdown::after {
    width: 100%;
}

body:not(.theme-default).primary-nav-hover-inset-scale .nav-link::after,
body:not(.theme-default).primary-nav-hover-inset-scale .nav-link-dropdown::after {
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

body:not(.theme-default).primary-nav-hover-inset-scale .nav-link:hover::after,
body:not(.theme-default).primary-nav-hover-inset-scale .nav-link.active::after,
body:not(.theme-default).primary-nav-hover-inset-scale .nav-link-dropdown:hover::after,
body:not(.theme-default).primary-nav-hover-inset-scale .nav-link-dropdown.active::after,
body:not(.theme-default).primary-nav-hover-inset-scale .nav-dropdown:hover .nav-link-dropdown::after {
    transform: scaleX(1);
}

body:not(.theme-default).primary-nav-hover-left-sweep .nav-link::after,
body:not(.theme-default).primary-nav-hover-left-sweep .nav-link-dropdown::after {
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
}

body:not(.theme-default).primary-nav-hover-left-sweep .nav-link:hover::after,
body:not(.theme-default).primary-nav-hover-left-sweep .nav-link.active::after,
body:not(.theme-default).primary-nav-hover-left-sweep .nav-link-dropdown:hover::after,
body:not(.theme-default).primary-nav-hover-left-sweep .nav-link-dropdown.active::after,
body:not(.theme-default).primary-nav-hover-left-sweep .nav-dropdown:hover .nav-link-dropdown::after {
    transform: scaleX(1);
}

body:not(.theme-default).primary-nav-hover-none .nav-link::after,
body:not(.theme-default).primary-nav-hover-none .nav-link-dropdown::after {
    content: none;
}

/* ========================================
   Hero Section - Swiper Slider
   ======================================== */

.hero-section {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
}

/* Ensure search-integrated type has proper stacking */
.hero-search-integrated .hero-background-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-search-integrated .hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.hero-search-integrated .hero-content > * {
    pointer-events: auto;
}

.hero-background-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Text Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-up-delay {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.animate-fade-in-up-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Hero Navigation Arrows */
.hero-button-prev,
.hero-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.hero-button-prev {
    left: 30px;
}

.hero-button-next {
    right: 30px;
}

.hero-button-prev:hover,
.hero-button-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.hero-button-prev i,
.hero-button-next i {
    color: white;
    font-size: 20px;
}

/* Hero Pagination */
.hero-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
}

.hero-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1 !important;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.hero-pagination .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.15);
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--brand-accent) !important;
    width: 40px !important;
    height: 14px !important;
    border-radius: 7px !important;
    border: 2px solid var(--brand-accent) !important;
    opacity: 1 !important;
}

/* Pagination Fraction Style */
.hero-pagination .swiper-pagination-fraction {
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Pagination Progressbar Style */
.hero-pagination .swiper-pagination-progressbar {
    background: rgba(255, 255, 255, 0.3);
    height: 4px !important;
    width: 200px !important;
    border-radius: 2px;
}

.hero-pagination .swiper-pagination-progressbar-fill {
    background: var(--brand-accent) !important;
    border-radius: 2px;
}

/* Slider Effect Enhancements */
.hero-background-swiper.swiper-cube .swiper-cube-shadow {
    opacity: 0.5 !important;
}

.hero-background-swiper.swiper-coverflow {
    padding-top: 50px;
    padding-bottom: 50px;
}

.hero-background-swiper.swiper-flip .swiper-slide-shadow-left,
.hero-background-swiper.swiper-flip .swiper-slide-shadow-right {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)) !important;
}

/* Improved Content Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomOut {
    from {
        opacity: 0;
        transform: scale(1.2);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Classes for Dynamic Content */
.hero-slide.active .hero-title {
    animation: fadeInUp 0.8s ease-out;
}

.hero-slide.active .hero-description {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-slide.active .hero-buttons {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Alternative Animation Types */
.hero-slide.active[data-animation="fade-down"] .hero-title {
    animation: fadeInDown 0.8s ease-out;
}

.hero-slide.active[data-animation="fade-left"] .hero-title {
    animation: fadeInLeft 0.8s ease-out;
}

.hero-slide.active[data-animation="fade-right"] .hero-title {
    animation: fadeInRight 0.8s ease-out;
}

.hero-slide.active[data-animation="zoom-in"] .hero-title {
    animation: zoomIn 0.8s ease-out;
}

.hero-slide.active[data-animation="zoom-out"] .hero-title {
    animation: zoomOut 0.8s ease-out;
}

/* Lazy Loading Placeholder */
.hero-bg-image.swiper-lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.hero-bg-image.swiper-lazy-loaded {
    opacity: 1;
}

/* Parallax Effect Support */
.hero-background-swiper[data-parallax="true"] .hero-bg-image {
    transform-origin: center;
    will-change: transform;
}

/* Grab Cursor */
.hero-background-swiper.swiper-grab-cursor {
    cursor: grab;
}

.hero-background-swiper.swiper-grab-cursor:active {
    cursor: grabbing;
}

/* Accessibility Improvements */
.hero-button-prev:focus,
.hero-button-next:focus {
    outline: none;
}

.hero-pagination .swiper-pagination-bullet:focus {
    outline: none;
}

/* Loading State */
.hero-background-swiper.swiper-loading .hero-slide {
    opacity: 0.3;
}

.hero-background-swiper.swiper-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 30;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Responsive Hero Section */
@media (max-width: 768px) {
    .hero-section {
        height: 550px;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-description {
        font-size: 1.25rem !important;
    }
    
    .hero-button-prev,
    .hero-button-next {
        width: 45px;
        height: 45px;
    }
    
    .hero-button-prev {
        left: 15px;
    }
    
    .hero-button-next {
        right: 15px;
    }
    
    .hero-pagination {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 500px;
    }
    
    .hero-title {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-description {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-buttons a {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.875rem !important;
    }
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* Custom Gradient Backgrounds */
.gradient-blue-purple {
    background: var(--gradient-primary);
}

.gradient-orange-red {
    background: var(--gradient-accent);
}

.gradient-green-blue {
    background: linear-gradient(135deg, var(--brand-primary-light) 0%, var(--brand-secondary) 100%);
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px); /* Increased hover lift for bigger cards */
    box-shadow: 0 25px 50px rgba(0,0,0,0.15); /* Enhanced shadow for bigger cards */
}

body.theme-default {
    --theme-card-border: #dde3ec;
    --theme-card-border-hover: #cfd8e6;
    --theme-card-radius: 18px;
    --theme-card-min-height: 22rem;
    --theme-flat-shadow: none;
}

body.theme-default .card-hover:hover {
    transform: translateY(-1px);
    box-shadow: none;
}

body.theme-default .bg-white.rounded-xl.shadow-lg.overflow-hidden {
    display: flex;
    flex-direction: column;
    min-height: var(--theme-card-min-height);
    border: 1px solid var(--theme-card-border);
    border-radius: var(--theme-card-radius);
    box-shadow: none;
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

body.theme-default .bg-white.rounded-xl.shadow-lg.overflow-hidden:hover {
    border-color: var(--theme-card-border-hover);
    box-shadow: none;
    transform: translateY(-1px);
}

body.theme-default .bg-white.rounded-xl.shadow-lg.overflow-hidden > .md\:flex {
    flex: 1 1 auto;
    align-items: stretch;
    min-height: var(--theme-card-min-height);
}

body.theme-default .bg-white.rounded-xl.shadow-lg.overflow-hidden > .md\:flex > .md\:w-1\/3 {
    flex: 0 0 34%;
}

body.theme-default .bg-white.rounded-xl.shadow-lg.overflow-hidden > .md\:flex > .md\:w-2\/3 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

body.theme-default .bg-white.rounded-xl.shadow-lg.overflow-hidden > .md\:flex > .md\:w-2\/3 > .flex:last-child {
    margin-top: auto;
}

body.theme-default .bg-white.rounded-xl.shadow-lg.overflow-hidden > .md\:flex > .md\:h-64,
body.theme-default .bg-white.rounded-xl.shadow-lg.overflow-hidden .md\:h-64 {
    height: auto;
    min-height: var(--theme-card-min-height);
}

body.theme-default .bg-white.rounded-xl.shadow-lg.overflow-hidden img.w-full.h-64.md\:h-full,
body.theme-default .bg-white.rounded-xl.shadow-lg.overflow-hidden img.w-full.h-64 {
    height: 100%;
    min-height: var(--theme-card-min-height);
    object-fit: cover;
}

body.theme-default a.bg-gradient-to-r,
body.theme-default button.bg-gradient-to-r,
body.theme-default .btn-primary-gradient,
body.theme-default .btn-gradient-purple {
    background-image: none !important;
    background-color: var(--brand-primary) !important;
    color: #ffffff !important;
    box-shadow: none !important;
    border-radius: 12px !important;
}

body.theme-default a.bg-gradient-to-r:hover,
body.theme-default button.bg-gradient-to-r:hover,
body.theme-default .btn-primary-gradient:hover,
body.theme-default .btn-gradient-purple:hover {
    background-color: var(--brand-primary-dark) !important;
    box-shadow: none !important;
    transform: translateY(-1px);
}

body.theme-default .btn,
body.theme-default a.bg-blue-600.text-white,
body.theme-default button.bg-blue-600.text-white,
body.theme-default .btn.bg-blue-600.text-white {
    border-radius: 12px;
    box-shadow: none;
}

body.theme-default .price-badge,
body.theme-default .location-badge,
body.theme-default .overlay-badge {
    box-shadow: none;
}

body.theme-default .bg-white.rounded-xl.shadow-lg,
body.theme-default .bg-white.rounded-lg.shadow-lg,
body.theme-default .bg-white.rounded-lg.shadow-md,
body.theme-default .shadow,
body.theme-default .shadow-sm,
body.theme-default .shadow-md,
body.theme-default .shadow-lg,
body.theme-default .shadow-xl {
    box-shadow: none !important;
}

body.theme-default .price-badge:hover,
body.theme-default .location-badge:hover,
body.theme-default .overlay-badge:hover {
    box-shadow: none;
    transform: translateY(-1px);
}

/* ========================================
   GLOBAL BUTTON STYLES
   ======================================== */

/* Base Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    line-height: 1.5;
}

/* Button Sizes */
.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-md {
    padding: 12px 24px;
    font-size: 1rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* ========================================
   PRIMARY BUTTONS
   Used in: Hero sections, Main CTAs, Homepage actions
   ======================================== */
.btn-primary {
    background: var(--button-primary-bg, var(--brand-primary));
    border: 2px solid var(--button-primary-border-color, transparent);
    color: var(--button-primary-text-color, var(--button-on-brand, white));
}

.btn-primary:hover {
    background: var(--button-primary-hover-bg, var(--brand-primary-dark));
    border-color: var(--button-primary-hover-border-color, var(--button-primary-border-color, transparent));
    color: var(--button-primary-hover-text-color, var(--button-primary-text-color, var(--button-on-brand, white)));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
}

/* Primary Gradient - Used in: Hero buttons, Main call-to-actions */
.btn-primary-gradient {
    background: var(--button-primary-bg, var(--gradient-button-primary));
    border: 2px solid var(--button-primary-border-color, transparent);
    color: var(--button-primary-text-color, var(--button-on-brand, white));
}

.btn-primary-gradient:hover {
    background: var(--button-primary-hover-bg, var(--gradient-button-primary-hover));
    border-color: var(--button-primary-hover-border-color, var(--button-primary-border-color, transparent));
    color: var(--button-primary-hover-text-color, var(--button-primary-text-color, var(--button-on-brand, white)));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Soft CTA variant */
.btn-soft {
    background: var(--button-soft-bg, rgba(17, 61, 90, 0.08));
    border: 2px solid var(--button-soft-border-color, rgba(17, 61, 90, 0.1));
    color: var(--button-soft-text-color, var(--brand-primary));
}

.btn-soft:hover {
    background: var(--button-soft-hover-bg, rgba(17, 61, 90, 0.14));
    border-color: var(--button-soft-hover-border-color, rgba(17, 61, 90, 0.16));
    color: var(--button-soft-hover-text-color, var(--brand-primary-dark));
    transform: translateY(-2px);
}

/* ========================================
   SECONDARY BUTTONS
   Used in: Alternative actions, Secondary CTAs
   ======================================== */
.btn-secondary {
    background: var(--button-secondary-bg, transparent);
    border: 2px solid var(--button-secondary-border-color, var(--button-secondary-bg, var(--brand-accent)));
    color: var(--button-secondary-text-color, var(--button-secondary-bg, var(--brand-accent)));
}

.btn-secondary:hover {
    background: var(--button-secondary-hover-bg, var(--button-secondary-bg, var(--brand-accent)));
    border-color: var(--button-secondary-hover-border-color, var(--button-secondary-border-color, var(--button-secondary-bg, var(--brand-accent))));
    color: var(--button-secondary-hover-text-color, var(--button-on-brand, white));
    transform: translateY(-2px);
}

/* ========================================
   ACCENT/ORANGE BUTTONS
   Used in: Feature highlights, Special actions
   ======================================== */
.btn-accent {
    background: var(--button-secondary-bg, var(--brand-accent));
    border: 2px solid var(--button-secondary-border-color, transparent);
    color: var(--button-secondary-text-color, var(--button-on-brand, white));
}

.btn-accent:hover {
    background: var(--button-secondary-hover-bg, var(--brand-accent-dark));
    border-color: var(--button-secondary-hover-border-color, var(--button-secondary-border-color, transparent));
    color: var(--button-secondary-hover-text-color, var(--button-on-brand, white));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
}

/* ========================================
   BLUE BUTTONS
   Used in: Filter buttons, Search buttons, Info actions
   ======================================== */
.btn-blue {
    background: var(--button-primary-bg, var(--brand-primary));
    border: 2px solid var(--button-primary-border-color, transparent);
    color: var(--button-primary-text-color, var(--button-on-brand, white));
}

.btn-blue:hover {
    background: var(--button-primary-hover-bg, var(--brand-primary-dark));
    border-color: var(--button-primary-hover-border-color, var(--button-primary-border-color, transparent));
    color: var(--button-primary-hover-text-color, var(--button-primary-text-color, var(--button-on-brand, white)));
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* ========================================
   SUCCESS/GREEN BUTTONS
   Used in: Submit buttons, Confirm actions, Save buttons
   ======================================== */
.btn-success {
    background: var(--button-tertiary-bg, var(--gradient-button-accent));
    border: 2px solid var(--button-tertiary-border-color, transparent);
    color: var(--button-tertiary-text-color, var(--button-on-brand, white));
}

.btn-success:hover {
    background: var(--button-tertiary-hover-bg, var(--gradient-button-accent-hover));
    border-color: var(--button-tertiary-hover-border-color, var(--button-tertiary-border-color, transparent));
    color: var(--button-tertiary-hover-text-color, var(--button-on-brand, white));
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* ========================================
   WARNING/YELLOW BUTTONS
   Used in: Caution actions, Newsletter subscription
   ======================================== */
.btn-warning {
    background: var(--button-tertiary-bg, var(--gradient-button-secondary, var(--gradient-button-accent)));
    border: 2px solid var(--button-tertiary-border-color, transparent);
    color: var(--button-tertiary-text-color, var(--button-on-brand, white));
}

.btn-warning:hover {
    background: var(--button-tertiary-hover-bg, var(--gradient-button-secondary-hover, var(--gradient-button-accent-hover)));
    border-color: var(--button-tertiary-hover-border-color, var(--button-tertiary-border-color, transparent));
    color: var(--button-tertiary-hover-text-color, var(--button-on-brand, white));
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Yellow variant - Used in: Newsletter, Special offers */
.btn-yellow {
    background: var(--button-tertiary-bg, var(--gradient-button-secondary, var(--gradient-button-accent)));
    border: 2px solid var(--button-tertiary-border-color, transparent);
    color: var(--button-tertiary-text-color, var(--button-on-brand, white));
}

.btn-yellow:hover {
    background: var(--button-tertiary-hover-bg, var(--gradient-button-secondary-hover, var(--gradient-button-accent-hover)));
    border-color: var(--button-tertiary-hover-border-color, var(--button-tertiary-border-color, transparent));
    color: var(--button-tertiary-hover-text-color, var(--button-on-brand, white));
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* ========================================
   DANGER/RED BUTTONS
   Used in: Delete actions, Cancel operations, Error actions
   Note: Using brand primary dark for danger actions to maintain visual distinction
   ======================================== */
.btn-danger {
    background: var(--button-primary-hover-bg, var(--brand-primary-dark));
    border: 2px solid var(--button-primary-hover-border-color, transparent);
    color: var(--button-primary-hover-text-color, var(--button-on-brand, white));
}

.btn-danger:hover {
    background: var(--button-primary-bg, var(--brand-primary));
    border-color: var(--button-primary-border-color, transparent);
    color: var(--button-primary-text-color, var(--button-on-brand, white));
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* ========================================
   GRAY/CLEAR BUTTONS
   Used in: Clear filters, Cancel actions, Neutral actions
   ======================================== */
.btn-gray {
    background: var(--button-neutral-bg, #e5e7eb);
    color: #374151;
    opacity: 0.7;
}

.btn-gray:hover {
    background: var(--button-neutral-hover-bg, #d1d5db);
    opacity: 1;
    transform: translateY(-2px);
}

/* Light Gray - Used in: Clear filters, Reset forms */
.btn-clear {
    background: #e5e7eb;
    color: #374151;
}

.btn-clear:hover {
    background: #d1d5db;
    transform: translateY(-2px);
}

/* ========================================
   OUTLINE BUTTONS
   Used in: Secondary actions, Alternative styles
   ======================================== */
.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--button-primary-border-color, var(--button-primary-bg, var(--brand-primary)));
    color: var(--button-primary-text-color, var(--button-primary-bg, var(--brand-primary)));
}

.btn-outline-primary:hover {
    background: var(--button-primary-hover-bg, var(--button-primary-bg, var(--brand-primary)));
    border-color: var(--button-primary-hover-border-color, var(--button-primary-border-color, var(--button-primary-bg, var(--brand-primary))));
    color: var(--button-primary-hover-text-color, var(--button-on-brand, white));
}

.btn-outline-accent {
    background: transparent;
    border: 2px solid var(--button-secondary-border-color, var(--button-secondary-bg, var(--brand-accent)));
    color: var(--button-secondary-text-color, var(--button-secondary-bg, var(--brand-accent)));
}

.btn-outline-accent:hover {
    background: var(--button-secondary-hover-bg, var(--button-secondary-bg, var(--brand-accent)));
    border-color: var(--button-secondary-hover-border-color, var(--button-secondary-border-color, var(--button-secondary-bg, var(--brand-accent))));
    color: var(--button-secondary-hover-text-color, var(--button-on-brand, white));
}

.btn-outline-blue {
    background: transparent;
    border: 2px solid var(--button-primary-border-color, var(--button-primary-bg, var(--brand-primary)));
    color: var(--button-primary-text-color, var(--button-primary-bg, var(--brand-primary)));
}

.btn-outline-blue:hover {
    background: var(--button-primary-hover-bg, var(--button-primary-bg, var(--brand-primary)));
    border-color: var(--button-primary-hover-border-color, var(--button-primary-border-color, var(--button-primary-bg, var(--brand-primary))));
    color: var(--button-primary-hover-text-color, var(--button-on-brand, white));
}

/* Utility-based CTA buttons that should follow the brand preset */
a.bg-blue-600,
button.bg-blue-600,
.btn.bg-blue-600 {
    background: var(--button-primary-bg, var(--brand-primary));
    border-color: var(--button-primary-border-color, transparent);
    color: var(--button-primary-text-color, var(--button-on-brand, #ffffff));
}

a.hover\:bg-blue-700:hover,
button.hover\:bg-blue-700:hover,
.btn.hover\:bg-blue-700:hover {
    background: var(--button-primary-hover-bg, var(--brand-primary-dark));
    border-color: var(--button-primary-hover-border-color, var(--button-primary-border-color, transparent));
    color: var(--button-primary-hover-text-color, var(--button-primary-text-color, var(--button-on-brand, #ffffff)));
}

a.bg-yellow-400,
button.bg-yellow-400,
.btn.bg-yellow-400 {
    background-color: var(--button-tertiary-bg, var(--brand-secondary));
    color: #1f2937;
}

a.hover\:bg-yellow-500:hover,
button.hover\:bg-yellow-500:hover,
.btn.hover\:bg-yellow-500:hover {
    background-color: var(--button-tertiary-hover-bg, var(--brand-accent-light));
}

a.bg-gray-500,
button.bg-gray-500,
.btn.bg-gray-500 {
    background-color: var(--button-neutral-bg, #e5e7eb);
    color: #374151;
}

a.hover\:bg-gray-600:hover,
button.hover\:bg-gray-600:hover,
.btn.hover\:bg-gray-600:hover {
    background-color: var(--button-neutral-hover-bg, #d1d5db);
}

a.bg-white.text-gray-800,
button.bg-white.text-gray-800,
.btn.bg-white.text-gray-800 {
    background-color: #ffffff;
    color: #1f2937;
}

a.hover\:bg-gray-100:hover,
button.hover\:bg-gray-100:hover,
.btn.hover\:bg-gray-100:hover {
    background-color: #f3f4f6;
}

a.bg-gradient-to-r.from-blue-600.to-purple-600,
button.bg-gradient-to-r.from-blue-600.to-purple-600,
.btn.bg-gradient-to-r.from-blue-600.to-purple-600 {
    background-image: var(--gradient-button-primary);
    color: var(--button-on-brand, #ffffff);
}

a.hover\:from-blue-700:hover,
button.hover\:from-blue-700:hover,
.btn.hover\:from-blue-700:hover,
a.hover\:to-purple-700:hover,
button.hover\:to-purple-700:hover,
.btn.hover\:to-purple-700:hover {
    background-image: var(--gradient-button-primary-hover);
}

a.bg-blue-600.text-white,
button.bg-blue-600.text-white,
.btn.bg-blue-600.text-white {
    background-color: var(--button-primary-bg, var(--brand-primary));
    color: var(--button-on-brand, #ffffff);
}

a.bg-blue-600.text-white:hover,
button.bg-blue-600.text-white:hover,
.btn.bg-blue-600.text-white:hover {
    background-color: var(--button-primary-hover-bg, var(--brand-primary-dark));
}

/* ========================================
   ICON BUTTONS
   Used in: Copy buttons, Quick actions
   ======================================== */
.btn-icon {
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon i {
    margin: 0;
}

/* ========================================
   FULL WIDTH BUTTONS
   Used in: Forms, Mobile layouts
   ======================================== */
.btn-full {
    width: 100%;
    display: flex;
}

/* ========================================
   DISABLED BUTTONS
   ======================================== */
.btn:disabled,
.btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* ========================================
   BUTTON GROUPS
   Used in: Multiple action buttons together
   ======================================== */
.btn-group {
    display: inline-flex;
    gap: 0.5rem;
}

.btn-group .btn {
    margin: 0;
}

/* ========================================
   GRADIENT CONTACT BUTTON
   Used in: Contact form, Special CTAs
   ======================================== */
.btn-gradient-purple {
    background: var(--gradient-button-primary);
    color: white;
}

.btn-gradient-purple:hover {
    background: var(--gradient-button-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Search Bar Styles */
.search-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 20px;
    margin-top: 30px;
}

.search-input {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
}

.search-input:focus {
    outline: none;
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 3px rgba(245, 145, 19, 0.1);
}

/* Category Icons */
.category-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.category-icon:hover {
    transform: scale(1.1);
}

/* Rating Stars */
.rating-stars {
    color: #fbbf24;
    font-size: 14px;
}

.rating-stars .empty {
    color: #d1d5db;
}

/* ========================================
   LISTING TITLE LINK STYLES
   Used in: Accommodation, Beach, Restaurant, Activity listing links
   ======================================== */

.accommodation-title-link,
.beach-title-link,
.restaurant-title-link,
.activity-title-link {
    transition: color 0.3s ease;
    display: inline-block;
}

.accommodation-title-link:hover,
.beach-title-link:hover,
.restaurant-title-link:hover,
.activity-title-link:hover {
    color: var(--brand-accent);
}

.accommodation-title-link h4,
.accommodation-title-link h5,
.beach-title-link h4,
.beach-title-link h5,
.restaurant-title-link h4,
.restaurant-title-link h5,
.activity-title-link h4,
.activity-title-link h5 {
    transition: color 0.3s ease;
}

/* ========================================
   LISTING CARD HOVER EFFECTS
   Used in: Archive listing cards for all content types
   ======================================== */

.homepage-card,
.accommodation-card,
.beach-card,
.restaurant-card,
.activity-card,
.tour-card,
.vehicle-card,
.yacht-card {
    transform: translate3d(0, 0, 0);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    min-height: 280px; /* Consistent minimum height for larger cards */
}

.homepage-card:hover,
.accommodation-card:hover,
.beach-card:hover,
.restaurant-card:hover,
.activity-card:hover,
.tour-card:hover,
.vehicle-card:hover,
.yacht-card:hover {
    background: linear-gradient(135deg, rgba(17, 61, 90, 0.05) 0%, rgba(26, 90, 128, 0.1) 100%);
    transform: translate3d(0, -4px, 0);
    box-shadow: 0 12px 28px rgba(17, 61, 90, 0.25) !important; /* Enhanced shadow */
}

.homepage-card:hover .accommodation-title-link h4,
.homepage-card:hover .beach-title-link h4,
.homepage-card:hover .restaurant-title-link h4,
.homepage-card:hover .activity-title-link h4,
.homepage-card:hover .tour-title-link h4,
.homepage-card:hover .vehicle-title-link h4,
.homepage-card:hover .yacht-title-link h4,
.accommodation-card:hover .accommodation-title-link h4,
.beach-card:hover .beach-title-link h4,
.restaurant-card:hover .restaurant-title-link h4,
.activity-card:hover .activity-title-link h4 {
    color: var(--brand-accent);
}

.homepage-card img,
.accommodation-card img,
.beach-card img,
.restaurant-card img,
.activity-card img,
.tour-card img,
.vehicle-card img,
.yacht-card img {
    transition: all 0.3s ease;
}

/* ========================================
   PRICE BADGE STYLES
   Used in: All listing types for price display
   ======================================== */

.price-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.price-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.price-badge-sm {
    padding: 6px 12px;
    font-size: 0.75rem;
    border-radius: 16px;
}

.price-badge-lg {
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 24px;
}

.price-badge-orange {
    background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-dark) 100%);
    box-shadow: 0 4px 12px rgba(245, 145, 19, 0.3);
}

.price-badge-orange:hover {
    box-shadow: 0 6px 20px rgba(245, 145, 19, 0.4);
    background: linear-gradient(135deg, var(--brand-accent-dark) 0%, #b8650f 100%);
}

.price-badge-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.price-badge-blue:hover {
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

/* ========================================
   LISTING CARD PRICE (typography block)
   Used in: archive/list cards — not pill badges
   ======================================== */

.listing-card__price {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.125rem 0.25rem;
    line-height: 1.15;
    text-align: right;
    flex-shrink: 0;
}

.listing-card__price-amount {
    font-weight: 800;
    color: var(--brand-primary, #113D5A);
    letter-spacing: -0.02em;
}

.listing-card__price-prefix {
    font-size: 0.82em;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0;
}

.listing-card__price-unit {
    font-size: 0.78em;
    font-weight: 600;
    color: #64748b;
}

.listing-card__price--sm .listing-card__price-amount {
    font-size: 1rem;
}

.listing-card__price--md .listing-card__price-amount {
    font-size: 1.2rem;
}

.listing-card__price--on-dark .listing-card__price-amount {
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.listing-card__price--on-dark .listing-card__price-unit {
    color: rgba(255, 255, 255, 0.88);
}

.listing-card__price--muted .listing-card__price-amount {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 700;
}

.listing-card__price--muted .listing-card__price-unit {
    display: none;
}

.homepage-card.listing-card--grid-overlay .listing-card__grid-overlay-caption {
    z-index: 6;
}

.homepage-card .listing-card__body .flex .shrink-0 > .listing-card__price {
    margin-left: auto;
}

/* ========================================
   LOCATION BADGE STYLES
   Used in: All clickable location links
   ======================================== */

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.location-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
    background: linear-gradient(135deg, #0d9488 0%, #0891b2 100%);
    color: white;
    text-decoration: none;
}

.location-badge i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.location-badge:hover i {
    transform: scale(1.1);
}

/* Location Badge Sizes */
.location-badge-sm {
    padding: 6px 12px;
    font-size: 0.75rem;
    border-radius: 16px;
    gap: 4px;
}

.location-badge-sm i {
    font-size: 0.75rem;
}

.location-badge-lg {
    padding: 10px 18px;
    font-size: 1rem;
    border-radius: 24px;
    gap: 8px;
}

.location-badge-lg i {
    font-size: 1rem;
}

/* Location Badge Inline Variant (for headers) */
.location-badge-inline {
    padding: 4px 10px;
    font-size: 0.875rem;
    border-radius: 14px;
    gap: 4px;
    vertical-align: middle;
}

.location-badge-inline i {
    font-size: 0.75rem;
}

/* ========================================
   BADGE/TAG STYLES
   Used in: Status indicators, Featured tags, Rating badges
   ======================================== */

/* Base Badge */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Badge Sizes */
.badge-sm {
    padding: 4px 10px;
    font-size: 0.625rem;
}

.badge-lg {
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* Blue Badge - Used in: Rating displays, Info tags */
.badge-blue {
    background: #dbeafe;
    color: #1e40af;
}

.badge-blue-solid {
    background: #3b82f6;
    color: white;
}

/* Green Badge - Used in: Success states, Available status */
.badge-green {
    background: #dcfce7;
    color: #166534;
}

.badge-green-solid {
    background: #10b981;
    color: white;
}

/* Purple Badge - Used in: Premium features, Special tags */
.badge-purple {
    background: #f3e8ff;
    color: #7c3aed;
}

.badge-purple-solid {
    background: #8b5cf6;
    color: white;
}

/* Orange Badge - Used in: Featured items, Hot deals */
.badge-orange {
    background: #fed7aa;
    color: #ea580c;
}

.badge-orange-solid {
    background: var(--brand-accent);
    color: white;
}

/* Yellow Badge - Used in: Featured tags, Star ratings, New items */
.badge-yellow {
    background: #fef3c7;
    color: #d97706;
}

.badge-yellow-solid {
    background: #fbbf24;
    color: #1f2937;
}

/* Red Badge - Used in: Sold out, Urgent tags */
.badge-red {
    background: #fee2e2;
    color: #dc2626;
}

.badge-red-solid {
    background: #ef4444;
    color: white;
}

/* Gray Badge - Used in: Inactive status, Neutral tags */
.badge-gray {
    background: #f3f4f6;
    color: #4b5563;
}

.badge-gray-solid {
    background: #6b7280;
    color: white;
}

/* Indigo Badge - Used in: Category tags */
.badge-indigo {
    background: #e0e7ff;
    color: #4338ca;
}

.badge-indigo-solid {
    background: #6366f1;
    color: white;
}

/* Teal Badge - Used in: Location tags */
.badge-teal {
    background: #ccfbf1;
    color: #0f766e;
}

.badge-teal-solid {
    background: #14b8a6;
    color: white;
}

/* Primary Brand Badge - Used in: Brand-specific tags */
.badge-primary {
    background: rgba(17, 61, 90, 0.1);
    color: var(--brand-primary);
}

.badge-primary-solid {
    background: var(--brand-primary);
    color: white;
}

/* Rounded Full Badge - Used in: Absolute positioned tags on cards */
.badge-rounded {
    border-radius: 9999px;
    padding: 6px 14px;
}

/* ========================================
   OVERLAY BADGE STYLES
   Used in: Badges positioned absolutely over images on cards
   These badges have explicit backgrounds to ensure visibility
   ======================================== */

/* Base Overlay Badge - Ensures proper display over images */
.overlay-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
    white-space: nowrap;
}

/* Cyan Overlay Badge - Used in: Beach badges (entry fee type) */
.overlay-badge-cyan {
    background: #0891b2;
}

.overlay-badge-cyan:hover {
    background: #0e7490;
}

/* Green Overlay Badge - Used in: Activity badges, Free tags */
.overlay-badge-green {
    background: #059669;
}

.overlay-badge-green:hover {
    background: #047857;
}

/* Orange Overlay Badge - Used in: Restaurant badges, Special offers */
.overlay-badge-orange {
    background: #ea580c;
}

.overlay-badge-orange:hover {
    background: #c2410c;
}

/* Yellow Overlay Badge - Used in: Star ratings, Featured items */
.overlay-badge-yellow {
    background: #eab308;
}

.overlay-badge-yellow:hover {
    background: #ca8a04;
}

/* Blue Overlay Badge - Used in: Rating badges, Info badges */
.overlay-badge-blue {
    background: #2563eb;
}

.overlay-badge-blue:hover {
    background: #1d4ed8;
}

/* Purple Overlay Badge - Used in: Premium badges */
.overlay-badge-purple {
    background: #7c3aed;
}

.overlay-badge-purple:hover {
    background: #6d28d9;
}

/* Teal Overlay Badge - Used in: Location badges */
.overlay-badge-teal {
    background: #0d9488;
}

.overlay-badge-teal:hover {
    background: #0f766e;
}

/* ========================================
   FRONTEND BADGE SYSTEM
   Shared tint pills for features, specs, and labels on listing/detail surfaces
   Theme option: frontend_feature_badge_style
   Body classes: frontend-badge-style-soft-tint | outline | icon-capsule | solid
   ======================================== */

.frontend-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.125rem;
    border-radius: 9999px;
    font-weight: 400;
    white-space: nowrap;
    line-height: 1.25;
    vertical-align: middle;
    border: none;
    max-width: 100%;
}

.frontend-badge i {
    flex-shrink: 0;
}

.frontend-badge--sm {
    padding: 5px 12px;
    font-size: 0.875rem;
}

.frontend-badge--sm i {
    font-size: 0.75rem;
}

.frontend-badge--md {
    padding: 0.375rem 0.875rem;
    font-size: 0.875rem;
}

.frontend-badge--detail-grid {
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    width: 100%;
    justify-content: flex-start;
    font-weight: 500;
}

.frontend-badge--detail-inline {
    font-weight: 500;
}

.frontend-detail-feature-grid {
    width: 100%;
}

/* Chip-style badge variants — soft tint, outline, icon capsule */
body.frontend-badge-style-soft-tint .frontend-badge,
body.frontend-badge-style-outline .frontend-badge,
body.frontend-badge-style-icon-capsule .frontend-badge {
    border: 1px solid transparent;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

body.frontend-badge-style-soft-tint .frontend-badge--sm,
body.frontend-badge-style-outline .frontend-badge--sm,
body.frontend-badge-style-icon-capsule .frontend-badge--sm {
    padding: 0.3125rem 0.625rem;
    font-size: 0.8125rem;
    min-height: 2rem;
}

body.frontend-badge-style-soft-tint .frontend-badge--sm i,
body.frontend-badge-style-outline .frontend-badge--sm i {
    font-size: 0.6875rem;
}

@media (min-width: 768px) {
    body.frontend-badge-style-soft-tint .frontend-badge--sm,
    body.frontend-badge-style-outline .frontend-badge--sm,
    body.frontend-badge-style-icon-capsule .frontend-badge--sm {
        padding: 0.375rem 0.75rem;
    }

    body.frontend-badge-style-soft-tint .frontend-badge--sm i,
    body.frontend-badge-style-outline .frontend-badge--sm i {
        font-size: 0.75rem;
    }
}

body.frontend-badge-style-soft-tint .frontend-badge--detail-grid,
body.frontend-badge-style-outline .frontend-badge--detail-grid,
body.frontend-badge-style-icon-capsule .frontend-badge--detail-grid {
    border-radius: 9999px;
    padding: 0.375rem 0.75rem;
    width: auto;
    max-width: 100%;
    justify-content: flex-start;
}

body.frontend-badge-style-soft-tint .frontend-detail-feature-grid,
body.frontend-badge-style-outline .frontend-detail-feature-grid,
body.frontend-badge-style-icon-capsule .frontend-detail-feature-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.5rem;
}

body.frontend-badge-style-soft-tint .homepage-card .frontend-badge,
body.frontend-badge-style-soft-tint .accommodation-card .frontend-badge,
body.frontend-badge-style-soft-tint .activity-card .frontend-badge,
body.frontend-badge-style-soft-tint .beach-card .frontend-badge,
body.frontend-badge-style-soft-tint .restaurant-card .frontend-badge,
body.frontend-badge-style-soft-tint .tour-card .frontend-badge,
body.frontend-badge-style-soft-tint .vehicle-card .frontend-badge,
body.frontend-badge-style-soft-tint .yacht-card .frontend-badge,
body.frontend-badge-style-outline .homepage-card .frontend-badge,
body.frontend-badge-style-outline .accommodation-card .frontend-badge,
body.frontend-badge-style-outline .activity-card .frontend-badge,
body.frontend-badge-style-outline .beach-card .frontend-badge,
body.frontend-badge-style-outline .restaurant-card .frontend-badge,
body.frontend-badge-style-outline .tour-card .frontend-badge,
body.frontend-badge-style-outline .vehicle-card .frontend-badge,
body.frontend-badge-style-outline .yacht-card .frontend-badge,
body.frontend-badge-style-icon-capsule .homepage-card .frontend-badge,
body.frontend-badge-style-icon-capsule .accommodation-card .frontend-badge,
body.frontend-badge-style-icon-capsule .activity-card .frontend-badge,
body.frontend-badge-style-icon-capsule .beach-card .frontend-badge,
body.frontend-badge-style-icon-capsule .restaurant-card .frontend-badge,
body.frontend-badge-style-icon-capsule .tour-card .frontend-badge,
body.frontend-badge-style-icon-capsule .vehicle-card .frontend-badge,
body.frontend-badge-style-icon-capsule .yacht-card .frontend-badge {
    margin: 0 0.25rem 0.25rem 0;
}

/* Outline only — transparent fill, colored stroke + text */
body.frontend-badge-style-outline .frontend-badge {
    background-color: transparent !important;
}

/* Icon capsule — neutral label, colored icon circle */
body.frontend-badge-style-icon-capsule .frontend-badge--sm {
    padding: 0.25rem 0.625rem 0.25rem 0.25rem;
    gap: 0.375rem;
}

@media (min-width: 768px) {
    body.frontend-badge-style-icon-capsule .frontend-badge--sm {
        padding: 0.3125rem 0.75rem 0.3125rem 0.3125rem;
    }
}

body.frontend-badge-style-icon-capsule .frontend-badge--detail-grid {
    padding: 0.3125rem 0.75rem 0.3125rem 0.3125rem;
}

body.frontend-badge-style-icon-capsule .frontend-badge__icon-capsule {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.375rem;
    height: 1.375rem;
    min-width: 1.375rem;
    border-radius: 9999px;
    flex-shrink: 0;
}

body.frontend-badge-style-icon-capsule .frontend-badge__icon-capsule i {
    font-size: 0.625rem;
    line-height: 1;
    margin: 0;
}

@media (min-width: 768px) {
    body.frontend-badge-style-icon-capsule .frontend-badge__icon-capsule {
        width: 1.5rem;
        height: 1.5rem;
        min-width: 1.5rem;
    }

    body.frontend-badge-style-icon-capsule .frontend-badge__icon-capsule i {
        font-size: 0.6875rem;
    }
}

/* Solid brand blocks — legacy full-color tiles on theme-default */
body.theme-default .homepage-card .frontend-badge,
body.theme-default .accommodation-card .frontend-badge,
body.theme-default .activity-card .frontend-badge,
body.theme-default .beach-card .frontend-badge,
body.theme-default .restaurant-card .frontend-badge,
body.theme-default .tour-card .frontend-badge,
body.theme-default .vehicle-card .frontend-badge,
body.theme-default .yacht-card .frontend-badge {
    letter-spacing: 0.01em;
    transition: background-color 0.2s ease, color 0.2s ease;
}

body.frontend-badge-style-solid.theme-default .frontend-badge[data-tone="blue"] {
    background: var(--brand-primary-light) !important;
    color: #fff !important;
}

body.frontend-badge-style-solid.theme-default .frontend-badge[data-tone="green"] {
    background: var(--brand-secondary) !important;
    color: var(--brand-primary-dark) !important;
}

body.frontend-badge-style-solid.theme-default .frontend-badge[data-tone="amber"] {
    background: var(--brand-accent-light) !important;
    color: var(--brand-primary-dark) !important;
}

/* Section background alternation */
section#plajlar {
    background-color: #ffffff;
}

section#restoranlar {
    background-color: #f9fafb;
}

section#konaklama {
    background-color: #ffffff;
}

section#aktiviteler {
    background-color: #f9fafb;
}

section#turlar {
    background-color: #ffffff;
}

/* ========================================
   NAVIGATION DOTS STYLES (Legacy - for other sliders)
   Used in: Gallery sliders and other components
   ======================================== */
.accommodation-dot.active,
.beach-dot.active,
.restaurant-dot.active,
.activity-dot.active {
    background: var(--brand-accent) !important;
}

/* ========================================
   ICON BOX STYLES
   Used in: Feature highlights, Contact info boxes, Info sections
   ======================================== */

/* Base Icon Box */
.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 8px;
    font-size: 1.25rem;
}

/* Icon Box Sizes */
.icon-box-sm {
    padding: 8px;
    font-size: 1rem;
}

.icon-box-lg {
    padding: 16px;
    font-size: 1.5rem;
}

/* Blue Icon Box - Used in: Info sections */
.icon-box-blue {
    background: #dbeafe;
    color: #3b82f6;
}

/* Green Icon Box - Used in: Success states, Phone/Contact */
.icon-box-green {
    background: #dcfce7;
    color: #10b981;
}

/* Purple Icon Box - Used in: Email, Premium features */
.icon-box-purple {
    background: #f3e8ff;
    color: #8b5cf6;
}

/* Orange Icon Box - Used in: Working hours, Alerts */
.icon-box-orange {
    background: #fed7aa;
    color: var(--brand-accent);
}

/* Yellow Icon Box - Used in: Ratings, Special highlights */
.icon-box-yellow {
    background: #fef3c7;
    color: #f59e0b;
}

/* Indigo Icon Box - Used in: Categories */
.icon-box-indigo {
    background: #e0e7ff;
    color: #6366f1;
}

/* Primary Brand Icon Box */
.icon-box-primary {
    background: rgba(17, 61, 90, 0.1);
    color: var(--brand-primary);
}

/* Image Overlay Effects */
.image-overlay {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.image-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.image-overlay:hover::before {
    opacity: 1;
}

.image-overlay img {
    transition: transform 0.3s ease;
}

.image-overlay:hover img {
    transform: scale(1.1);
}

/* Navigation Styles */
.nav-link {
    position: relative;
    padding: 8px 16px;
    color: #000000;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--brand-accent);
}


/* Mobile Menu Animation */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: 300px;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--brand-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--brand-accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-accent-dark);
}

/* Hide Scrollbar for Horizontal Scroll */
.scrollbar-hide {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;  /* Safari and Chrome */
}

/* Horizontal Scroll Container */
.horizontal-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.horizontal-scroll::-webkit-scrollbar {
    height: 6px;
}

.horizontal-scroll::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.horizontal-scroll::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Featured Sections Slider Styles */
.slider-wrapper {
    position: relative;
    padding: 0 60px; /* Space for arrows outside content */
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    cursor: pointer;
    border: none;
    transition: opacity 0.3s ease;
}

.slider-arrow-left {
    left: 0;
}

.slider-arrow-right {
    right: 0;
}

.slider-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.slider-content {
    user-select: none;
    scroll-snap-type: x mandatory;
    scroll-padding: 0;
    -webkit-overflow-scrolling: touch;
}

/* Snap scroll cards */
.slider-content > div {
    display: flex;
    gap: 1.5rem;
}

.slider-content .min-w-\[350px\] {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    flex-shrink: 0;
}

/* Desktop large: Show 5 cards at a time */
@media (min-width: 1400px) {
    .slider-content .min-w-\[350px\] {
        width: calc((100% - 6rem) / 5); /* 5 cards with 1.5rem gap between */
        min-width: auto;
    }
}

/* Desktop medium: Show 4 cards at a time */
@media (min-width: 900px) and (max-width: 1399px) {
    .slider-content .min-w-\[350px\] {
        width: calc((100% - 4.5rem) / 4); /* 4 cards with 1.5rem gap between */
        min-width: auto;
    }
}

/* Tablet: Show 2 cards at a time */
@media (min-width: 640px) and (max-width: 899px) {
    .slider-content .min-w-\[350px\] {
        width: calc((100% - 1.5rem) / 2); /* 2 cards with 1.5rem gap */
        min-width: auto;
    }
}

/* Mobile: Show 1 card at a time */
@media (max-width: 639px) {
    .slider-content .min-w-\[350px\] {
        width: 100%;
        min-width: auto;
    }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .slider-wrapper {
        padding: 0 50px;
    }
    
    .slider-arrow {
        padding: 0.5rem !important;
    }
}

@media (max-width: 480px) {
    .slider-wrapper {
        padding: 0 40px;
    }
    
    .slider-arrow {
        padding: 0.4rem !important;
    }
    
    .slider-arrow i {
        font-size: 0.875rem;
    }
}


/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .search-container {
        padding: 16px;
        margin-top: 20px;
    }
    
    .category-icon {
        width: 48px;
        height: 48px;
    }
    
    /* Mobile Hero Navigation */
    .hero-button-prev,
    .hero-button-next {
        width: 40px;
        height: 40px;
    }
    
    .hero-button-prev {
        left: 10px;
    }
    
    .hero-button-next {
        right: 10px;
    }
    
    .hero-button-prev i,
    .hero-button-next i {
        font-size: 16px;
    }
    
    .hero-pagination {
        bottom: 20px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.shadow-hover {
    transition: box-shadow 0.3s ease;
}

.shadow-hover:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 3px rgba(245, 145, 19, 0.1);
}

.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    color: #111827;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.form-select:focus {
    outline: none;
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 3px rgba(245, 145, 19, 0.1);
}

/* Alert Styles */
.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid;
}

.alert-success {
    background: #f0fdf4;
    border-color: #22c55e;
    color: #166534;
}

.alert-error {
    background: #fef2f2;
    border-color: #ef4444;
    color: #dc2626;
}

.alert-info {
    background: #eff6ff;
    border-color: #3b82f6;
    color: #1e40af;
}

/* Price Display */
.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #059669;
}

.price-old {
    font-size: 1rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-left: 8px;
}

/* Social Media Icons */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #374151;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--brand-accent);
    transform: translateY(-2px);
}

/* Map Container */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Review Card */
.review-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 12px;
}

.review-name {
    font-weight: 600;
    color: #374151;
}

.review-date {
    color: #9ca3af;
    font-size: 14px;
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Remove focus outline from all interactive elements */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: none;
}

/* Collapsible Filter Styles */
.filter-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-align: left;
}

.filter-toggle:hover {
    background: none;
}

.filter-toggle i {
    transition: transform 0.2s ease-in-out;
}

.filter-toggle.collapsed i {
    transform: rotate(-90deg);
}

.filter-content {
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 500px;
    opacity: 1;
}

.filter-content.collapsed {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
}

/* Sidebar Section Collapse Styles */
.sidebar-section-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px;
    outline: none;
}

.sidebar-section-content {
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out;
    max-height: 1000px;
    opacity: 1;
}

.sidebar-section-content.collapsed {
    max-height: 0;
    opacity: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Pagination Styles */
.pagination-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

.pagination-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.pagination a {
    color: #6b7280;
    border-color: #e5e7eb;
    background: white;
}

.pagination a:hover {
    background: #f3f4f6;
    color: #374151;
    border-color: #d1d5db;
}

.pagination .active {
    background: var(--brand-accent);
    color: white;
    border-color: var(--brand-accent);
}

.pagination .disabled {
    color: #d1d5db;
    cursor: not-allowed;
    background: #f9fafb;
}

.pagination .pagination-ellipsis {
    color: #9ca3af;
    cursor: default;
}

.pagination .pagination-prev,
.pagination .pagination-next {
    font-weight: 600;
}

/* Responsive Pagination */
@media (max-width: 640px) {
    .pagination a,
    .pagination span {
        min-width: 2rem;
        height: 2rem;
        padding: 0 0.5rem;
        font-size: 0.75rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    --scroll-progress: 0;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: black;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(245, 145, 19, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-to-top::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: conic-gradient(
        var(--brand-accent) calc(var(--scroll-progress) * 1%),
        transparent calc(var(--scroll-progress) * 1%)
    );
    z-index: -1;
    transition: none;
}

.scroll-to-top::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: white;
    z-index: -1;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(245, 145, 19, 0.6);
    background: linear-gradient(135deg, var(--brand-primary-dark) 0%, var(--brand-accent-dark) 100%);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-to-top::before {
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
    }
    
    .scroll-to-top::after {
        top: -1.5px;
        left: -1.5px;
        right: -1.5px;
        bottom: -1.5px;
    }
}

/* Header Logo - Fixed Size Approach */
header img {
    height: 56px;
    width: auto;
    max-width: none;
}

/* Balanced primary header row: equal space from logo to nav and nav to edge */
.site-header-primary-row {
    width: 100%;
    gap: 0.5rem;
}

.site-header-primary-row__brand {
    flex-shrink: 0;
}

.site-header-primary-row__nav-slot {
    flex: 1 1 auto;
    min-width: 0;
}

.site-header-primary-row__nav-slot > nav {
    max-width: 100%;
}

/* Header Responsive - Adjust Layout Instead of Logo Size */
@media (max-width: 768px) {
    header .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .site-header-primary-row {
        gap: 0.5rem;
    }
    
    header img {
        height: 56px; /* Keep logo at same size */
    }
}

@media (max-width: 480px) {
    header .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    header .py-4 {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
}

/* ========================================
   LISTING GALLERY STYLES
   ======================================== */

/* Gallery Container */
.listing-gallery {
    margin: 2rem 0;
}

/* Gallery Grid Layout */
.gallery-grid {
    display: grid;
    gap: 1rem;
}

.gallery-grid.grid-cols-2 {
    grid-template-columns: repeat(auto-fill, minmax(calc(50% - 0.5rem), 1fr));
}

.gallery-grid.grid-cols-3 {
    grid-template-columns: repeat(auto-fill, minmax(calc(33.333% - 0.667rem), 1fr));
}

.gallery-grid.grid-cols-4 {
    grid-template-columns: repeat(auto-fill, minmax(calc(25% - 0.75rem), 1fr));
}

@media (max-width: 768px) {
    .gallery-grid.grid-cols-3,
    .gallery-grid.grid-cols-4 {
        grid-template-columns: repeat(auto-fill, minmax(calc(50% - 0.5rem), 1fr));
    }
}

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

/* Gallery Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.gallery-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.gallery-overlay p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin: 0;
}

/* Featured Badge - Golden Corner Triangle */
.featured-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 60px 60px 0;
    border-color: transparent #ffc300 transparent transparent;
    z-index: 10;
}

.featured-badge-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    z-index: 11;
    pointer-events: none;
    filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.3));
    animation: spinStar 4s ease-in-out infinite;
    transform-origin: center center;
}

/* Spinning Star Animation - Accelerate, Decelerate, Pause, Loop */
@keyframes spinStar {
    0% {
        transform: rotate(0deg);
        animation-timing-function: ease-in;
    }
    30% {
        transform: rotate(180deg);
        animation-timing-function: ease-out;
    }
    50% {
        transform: rotate(360deg);
        animation-timing-function: ease-out;
    }
    75% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* No Gallery Message */
.no-gallery {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #f9fafb;
    border: 2px dashed #d1d5db;
    border-radius: 0.5rem;
}

.no-gallery p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Detail Primary Media Carousel */
.detail-media-carousel-wrapper {
    background-color: #ffffff;
}

.detail-media-main-shell {
    position: relative;
}

.detail-media-main .swiper-slide {
    line-height: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.detail-media-main .swiper-slide img {
    display: block;
    width: 100%;
}

.detail-media-lightbox-trigger {
    cursor: zoom-in;
}

.detail-media-main .swiper-button-prev,
.detail-media-main .swiper-button-next {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.45);
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
}

.detail-media-main .swiper-button-prev:hover,
.detail-media-main .swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.65);
}

.detail-media-main .swiper-button-prev::after,
.detail-media-main .swiper-button-next::after {
    font-size: 1rem;
}

.detail-media-thumbs .swiper-slide {
    width: 5.5rem;
    height: 4.25rem;
    border-radius: 0.5rem;
    overflow: hidden;
    opacity: 0.55;
    cursor: pointer;
    border: 2px solid transparent;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}

.detail-media-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--brand-primary, #113D5A);
}

.detail-media-thumbs-shell {
    padding-bottom: 0.25rem;
}

.detail-media-thumbs .swiper-slide:focus-visible {
    outline: 2px solid var(--brand-accent, #F59113);
    outline-offset: 2px;
}

.detail-media-thumbs .swiper-scrollbar {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    height: 0.35rem;
    margin-top: 0.75rem;
    background: rgba(17, 61, 90, 0.12);
    border-radius: 9999px;
}

.detail-media-thumbs .swiper-scrollbar-drag {
    background: var(--brand-primary, #113D5A);
    border-radius: 9999px;
    cursor: grab;
}

.detail-media-thumbs .swiper-scrollbar-drag:active {
    cursor: grabbing;
}

/* Gallery Slider Layout */
.gallery-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gallery-slider .swiper-container {
    width: 100%;
    height: 100%;
}

.gallery-slider .swiper-slide {
    position: relative;
}

.gallery-slider .gallery-image {
    width: 100%;
    height: 24rem;
    object-fit: cover;
}

.gallery-slider .slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 2rem 1.5rem 1rem;
}

.gallery-slider .slide-caption h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-slider .slide-caption p {
    font-size: 0.875rem;
    opacity: 0.9;
}

.gallery-slider .swiper-button-prev,
.gallery-slider .swiper-button-next {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
}

.gallery-slider .swiper-button-prev:hover,
.gallery-slider .swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.7);
}

.gallery-slider .swiper-pagination-bullet {
    background: white;
    opacity: 0.6;
}

.gallery-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: #3b82f6;
}

/* Gallery Masonry Layout */
.gallery-masonry {
    column-count: 3;
    column-gap: 1rem;
}

@media (max-width: 1024px) {
    .gallery-masonry {
        column-count: 2;
    }
}

@media (max-width: 640px) {
    .gallery-masonry {
        column-count: 1;
    }
}

.masonry-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 1rem;
    break-inside: avoid;
}

.masonry-item .gallery-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

/* Lightbox Styles */
.gallery-item[data-lightbox] {
    cursor: zoom-in;
}

/* Gallery Section Header */
.gallery-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.gallery-section-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.gallery-count {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

/* Print Styles */
@media print {
    .no-print,
    .scroll-to-top {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}

/* Keyboard Shortcuts Overlay */
div#keyboardShortcutsOverlay {
    z-index: 9999 !important;
}

/* ========================================
   HEADING UTILITY CLASSES
   Consistent typography for titles and headings across the site
   ======================================== */

/* Page Header Main Title - Used in: All listing pages */
.page-header-title {
    font-size: 2.25rem; /* text-4xl */
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .page-header-title {
        font-size: 3rem; /* md:text-5xl */
    }
}

/* Section Title - Used in: Main content sections */
.section-title {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
    color: #1f2937;
}

/* Card Title - Used in: All listing cards, homepage cards */
.card-title {
    font-size: 1.25rem; /* text-xl */
    font-weight: 700;
    color: #1f2937;
}

/* Sidebar Title - Used in: Sidebar sections */
.sidebar-title {
    font-size: 1.25rem; /* text-xl */
    font-weight: 700;
}

/* Subsection Title - Used in: Smaller subsections */
.subsection-title {
    font-size: 1.125rem; /* text-lg */
    font-weight: 600;
    color: #1f2937;
}

/* ========================================
   INLINE STYLES REPLACEMENT CLASSES
   ======================================== */

/* Hidden clear button */
.hidden-clear-btn {
    display: none !important;
}

/* Smooth scroll behavior for sliders */
.smooth-scroll-container {
    scroll-behavior: smooth;
}

/* Filter chevron transformations */
.filter-chevron-collapsed {
    transform: rotate(-90deg);
}

/* Section icon transformations */
.section-icon-collapsed {
    transform: rotate(-180deg);
}

/* Honeypot field (anti-spam) */
.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
}

/* Hero background image for homepage slider */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ========================================
   HOMEPAGE SLIDER SEARCH STYLES
   ======================================== */

/* Search Results Container - Use fixed positioning to escape stacking context */
#slider-search-container .search-results-container {
    position: fixed;
    z-index: 9999;
    margin-top: 8px;
    /* Position will be set dynamically by JavaScript */
}

.search-results-dropdown {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
    max-height: 500px;
    overflow: hidden;
}

.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    background: #f9fafb;
}

.search-results-title {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.search-results-close {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.search-results-close:hover {
    background-color: #e5e7eb;
}

.search-results-content {
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s;
}

.search-result-item:hover {
    background-color: #f9fafb;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 12px;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    font-weight: 600;
    color: #111827;
    font-size: 14px;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.search-result-description {
    color: #6b7280;
    font-size: 12px;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.frontend-rich-text-excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    line-height: 1.7;
}

.frontend-rich-text-excerpt > :first-child {
    margin-top: 0;
}

.frontend-rich-text-excerpt > :last-child {
    margin-bottom: 0;
}

.frontend-rich-text-excerpt p,
.frontend-rich-text-excerpt ul,
.frontend-rich-text-excerpt ol,
.frontend-rich-text-excerpt blockquote {
    margin-top: 0;
    margin-bottom: 0.75em;
}

.frontend-rich-text-excerpt ul,
.frontend-rich-text-excerpt ol {
    padding-left: 1.25rem;
}

.frontend-rich-text-excerpt a {
    color: inherit;
    text-decoration: underline;
}

.frontend-rich-text-detail {
    line-height: 1.75;
}

.frontend-rich-text-detail p {
    margin: 0 0 1rem 0;
}

.frontend-rich-text-detail p:last-child {
    margin-bottom: 0;
}

.frontend-rich-text-detail h1,
.frontend-rich-text-detail h2,
.frontend-rich-text-detail h3,
.frontend-rich-text-detail h4,
.frontend-rich-text-detail h5,
.frontend-rich-text-detail h6 {
    margin: 1.25rem 0 0.75rem;
    line-height: 1.25;
}

.frontend-rich-text-detail ul,
.frontend-rich-text-detail ol {
    margin: 0 0 1rem 1.5rem;
    padding-left: 1.25rem;
}

.frontend-rich-text-detail li {
    margin: 0.35rem 0;
}

.frontend-rich-text-detail blockquote {
    margin: 0 0 1rem;
    padding-left: 1rem;
    border-left: 4px solid #dbe4f0;
    color: #4b5563;
}

.frontend-rich-text-detail a {
    color: #1d6fe0;
    text-decoration: underline;
}

.frontend-rich-text-detail img {
    max-width: 100%;
    height: auto;
}

.frontend-rich-text-detail pre,
.frontend-rich-text-detail code {
    font-family: Consolas, Monaco, monospace;
    background: #f3f4f6;
    border-radius: 8px;
}

.frontend-rich-text-detail pre {
    padding: 12px 14px;
    overflow-x: auto;
    margin: 0 0 1rem;
}

.frontend-rich-text-detail code {
    padding: 0.15rem 0.35rem;
}

.frontend-rich-text-detail .ql-align-center {
    text-align: center;
}

.frontend-rich-text-detail .ql-align-right {
    text-align: right;
}

.frontend-rich-text-detail .ql-align-justify {
    text-align: justify;
}

.frontend-rich-text-detail .ql-direction-rtl {
    direction: rtl;
    text-align: right;
}

.frontend-rich-text-detail .ql-size-small {
    font-size: 0.85em;
}

.frontend-rich-text-detail .ql-size-large {
    font-size: 1.25em;
}

.frontend-rich-text-detail .ql-size-huge {
    font-size: 1.5em;
}

.frontend-rich-text-detail .ql-font-serif {
    font-family: Georgia, Cambria, "Times New Roman", Times, serif;
}

.frontend-rich-text-detail .ql-font-monospace {
    font-family: Consolas, Monaco, "Courier New", monospace;
}

.frontend-rich-text-detail .ql-indent-1 { margin-left: 3em; }
.frontend-rich-text-detail .ql-indent-2 { margin-left: 6em; }
.frontend-rich-text-detail .ql-indent-3 { margin-left: 9em; }
.frontend-rich-text-detail .ql-indent-4 { margin-left: 12em; }
.frontend-rich-text-detail .ql-indent-5 { margin-left: 15em; }
.frontend-rich-text-detail .ql-indent-6 { margin-left: 18em; }
.frontend-rich-text-detail .ql-indent-7 { margin-left: 21em; }
.frontend-rich-text-detail .ql-indent-8 { margin-left: 24em; }
.frontend-rich-text-detail .ql-indent-9 { margin-left: 27em; }

.search-result-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: #6b7280;
}

.search-result-meta i {
    margin-right: 2px;
}

.search-result-category {
    background: #e0e7ff;
    color: #3730a3;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

.search-results-footer {
    padding: 12px 16px;
    border-top: 1px solid #f3f4f6;
    background: #f9fafb;
}

.search-see-all-btn {
    width: 100%;
    background: #3b82f6;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-see-all-btn:hover {
    background: #2563eb;
}

.search-no-results,
.search-results-loading,
.search-results-error {
    padding: 24px 16px;
    text-align: center;
    color: #6b7280;
}

.search-no-results i,
.search-results-loading i,
.search-results-error i {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.search-results-loading i {
    color: #3b82f6;
}

.search-results-error i {
    color: #ef4444;
}

/* Mobile responsive for search results */
@media (max-width: 768px) {
    #slider-search-container .search-results-container {
        margin-top: 4px;
    }
    
    .search-result-item {
        padding: 8px 12px;
    }
    
    .search-result-image {
        width: 50px;
        height: 50px;
    }
    
    .search-result-title {
        font-size: 13px;
    }
    
    .search-result-description {
        font-size: 11px;
    }
}

/* ========================================
   Footer Styles
   ======================================== */

/* Footer Social Media Links */
.footer-social-link {
    font-size: 1rem;
}

.footer-social-link i {
    font-size: 1.5rem;
    width: 1.5rem;
    text-align: center;
}

/* Footer Certifications */
footer .certification-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .certification-item img {
    max-height: 150px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

footer .certification-item a:hover img {
    opacity: 0.8;
}

@media (max-width: 768px) {
    footer .certification-item {
        margin: 0.5rem 0;
    }
    
    footer .certification-item img {
        max-height: 125px;
    }
}

/* ========================================
   Review Badge Styles (Header)
   ======================================== */

.review-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    white-space: nowrap;
}

.review-badge-text {
    color: #374151;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
}

.review-badge-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.review-badge-logo:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.review-badge-logo img {
    width: auto;
    object-fit: contain;
    display: block;
}

.review-badge-logo i {
    display: inline-block;
}

/* Rating Row (Stars + Review Count) */
.review-badge-rating-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.review-badge-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.125rem;
    line-height: 1;
}

.review-badge-stars .fas.fa-star,
.review-badge-stars .fas.fa-star-half-alt {
    color: #fbbf24;
}

.review-badge-stars .far.fa-star {
    color: #d1d5db;
}

.review-badge-rating-value {
    font-weight: 500;
    line-height: 1;
}

.review-badge-count {
    font-weight: 400;
    line-height: 1;
}

/* Size Presets */
.review-badge-size-small {
    gap: 0.25rem;
    padding: 0.125rem 0.375rem;
}

.review-badge-size-small .review-badge-text {
    font-size: 0.625rem; /* 10px */
}

.review-badge-size-small .review-badge-logo img {
    height: 16px;
}

.review-badge-size-small .review-badge-logo i {
    font-size: 16px;
}

.review-badge-size-small .review-badge-stars {
    font-size: 12px;
}

.review-badge-size-small .review-badge-rating-value,
.review-badge-size-small .review-badge-count {
    font-size: 0.625rem; /* 10px */
}

.review-badge-size-medium {
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
}

.review-badge-size-medium .review-badge-text {
    font-size: 0.75rem; /* 12px */
}

.review-badge-size-medium .review-badge-logo img {
    height: 20px;
}

.review-badge-size-medium .review-badge-logo i {
    font-size: 20px;
}

.review-badge-size-medium .review-badge-stars {
    font-size: 14px;
}

.review-badge-size-medium .review-badge-rating-value,
.review-badge-size-medium .review-badge-count {
    font-size: 0.75rem; /* 12px */
}

.review-badge-size-large {
    gap: 0.375rem;
    padding: 0.375rem 0.625rem;
}

.review-badge-size-large .review-badge-text {
    font-size: 0.875rem; /* 14px */
}

.review-badge-size-large .review-badge-logo img {
    height: 24px;
}

.review-badge-size-large .review-badge-logo i {
    font-size: 24px;
}

.review-badge-size-large .review-badge-stars {
    font-size: 16px;
}

.review-badge-size-large .review-badge-rating-value,
.review-badge-size-large .review-badge-count {
    font-size: 0.875rem; /* 14px */
}

/* Badge Style Variants */
.review-badge-style-minimal {
    /* Current style - no background, no border, transparent */
    background: transparent;
    border: none;
    padding: 0.25rem 0.5rem;
}

.review-badge-style-bordered {
    /* Border only, no background */
    background: transparent;
    border: 1px solid #e5e7eb;
    padding: 0.25rem 0.5rem;
}

.review-badge-style-light {
    /* Subtle light background */
    background-color: #f9fafb;
    border: none;
    padding: 0.25rem 0.5rem;
}

.review-badge-style-card {
    /* Card style with background, border, and shadow */
    background: white;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0.75rem;
}

.review-badge-style-solid {
    /* Solid colored background */
    background-color: #f3f4f6;
    border: none;
    padding: 0.375rem 0.625rem;
}

.review-badge-style-gradient {
    /* Gradient background */
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border: none;
    padding: 0.375rem 0.625rem;
}

.review-badge-style-elevated {
    /* Elevated card with stronger shadow */
    background: white;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 0.5rem 0.75rem;
}

/* Adjust padding for size variants with card/elevated styles */
.review-badge-size-small.review-badge-style-card,
.review-badge-size-small.review-badge-style-elevated {
    padding: 0.375rem 0.5rem;
}

.review-badge-size-medium.review-badge-style-card,
.review-badge-size-medium.review-badge-style-elevated {
    padding: 0.5rem 0.75rem;
}

.review-badge-size-large.review-badge-style-card,
.review-badge-size-large.review-badge-style-elevated {
    padding: 0.625rem 1rem;
}

.review-badge-size-small.review-badge-style-solid,
.review-badge-size-small.review-badge-style-gradient {
    padding: 0.25rem 0.5rem;
}

.review-badge-size-medium.review-badge-style-solid,
.review-badge-size-medium.review-badge-style-gradient {
    padding: 0.375rem 0.625rem;
}

.review-badge-size-large.review-badge-style-solid,
.review-badge-size-large.review-badge-style-gradient {
    padding: 0.5rem 0.75rem;
}

/* Text color adjustments for darker backgrounds */
.review-badge-style-light .review-badge-text,
.review-badge-style-card .review-badge-text,
.review-badge-style-elevated .review-badge-text {
    color: #374151;
}

.review-badge-style-solid .review-badge-text,
.review-badge-style-gradient .review-badge-text {
    color: #374151;
}

/* Hide review badge on mobile */
@media (max-width: 768px) {
    .review-badge {
        display: none !important;
    }
}

/* ========================================
   Frontend Header Banner Styles
   ======================================== */

.frontend-header-banner {
    width: 100%;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-bottom: 1px solid #bfdbfe;
    padding: 12px 0;
    z-index: 40;
    position: relative;
}

.frontend-header-banner-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.frontend-header-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.frontend-header-banner-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frontend-header-banner-icon i {
    font-size: 20px;
    color: var(--brand-primary, #113D5A);
}

.frontend-header-banner-description {
    flex-shrink: 0;
    min-width: 200px;
    text-align: center;
}

.frontend-header-banner-description p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary, #1f2937);
    line-height: 1.5;
}

.frontend-header-banner-cta {
    flex-shrink: 0;
}

.frontend-header-banner-button {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: var(--brand-primary, #113D5A);
    color: white;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.frontend-header-banner-button:hover {
    background: var(--brand-primary-dark, #0a2939);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.frontend-header-banner-button:active {
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .frontend-header-banner {
        padding: 10px 0;
    }
    
    .frontend-header-banner-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .frontend-header-banner-icon {
        order: 1;
    }
    
    .frontend-header-banner-description {
        order: 2;
        min-width: auto;
        width: 100%;
    }
    
    .frontend-header-banner-description p {
        font-size: 13px;
    }
    
    .frontend-header-banner-cta {
        order: 3;
        width: 100%;
    }
    
    .frontend-header-banner-button {
        width: 100%;
        justify-content: center;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .frontend-header-banner {
        padding: 8px 0;
    }
    
    .frontend-header-banner-icon i {
        font-size: 18px;
    }
    
    .frontend-header-banner-description p {
        font-size: 12px;
    }
    
    .frontend-header-banner-button {
        padding: 6px 16px;
        font-size: 13px;
    }
}

/* Rich Text Content */
.prose {
    line-height: 1.8;
    word-break: break-word;
}

.prose p {
    margin-bottom: 1em;
}

.prose p:last-child {
    margin-bottom: 0;
}

.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
    margin: 1.4em 0 0.6em;
    font-weight: 700;
    line-height: 1.25;
}

.prose ul,
.prose ol {
    margin: 0 0 1em 1.5em;
    padding-left: 1.25em;
}

.prose li {
    margin-bottom: 0.35em;
}

.prose blockquote {
    margin: 1.25em 0;
    padding: 0.75em 1em;
    border-left: 4px solid var(--brand-primary, #113D5A);
    background: rgba(17, 61, 90, 0.04);
    font-style: italic;
}

.prose a {
    color: var(--brand-primary, #113D5A);
    text-decoration: underline;
}

.prose img {
    max-width: 100%;
    height: auto;
}

.prose pre,
.prose code {
    font-family: 'Courier New', Courier, monospace;
    background: rgba(17, 61, 90, 0.06);
    border-radius: 0.375rem;
}

.prose pre {
    padding: 1rem;
    overflow-x: auto;
}

.prose code {
    padding: 0.15rem 0.35rem;
}

.prose .ql-align-center {
    text-align: center;
}

.prose .ql-align-right {
    text-align: right;
}

.prose .ql-align-justify {
    text-align: justify;
}

.prose .ql-direction-rtl {
    direction: rtl;
    text-align: right;
}

.prose .ql-size-small {
    font-size: 0.875em;
}

.prose .ql-size-large {
    font-size: 1.25em;
}

.prose .ql-size-huge {
    font-size: 1.75em;
}

.prose .ql-font-serif {
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.prose .ql-font-monospace {
    font-family: 'Courier New', Courier, monospace;
}

.prose .ql-indent-1 { margin-left: 3em; }
.prose .ql-indent-2 { margin-left: 6em; }
.prose .ql-indent-3 { margin-left: 9em; }
.prose .ql-indent-4 { margin-left: 12em; }
.prose .ql-indent-5 { margin-left: 15em; }
.prose .ql-indent-6 { margin-left: 18em; }
.prose .ql-indent-7 { margin-left: 21em; }
.prose .ql-indent-8 { margin-left: 24em; }
.prose .ql-indent-9 { margin-left: 27em; }

/* ==========================================================================
   THEME REDESIGN v2 — Modern Tourism Card Design
   Applied exclusively via body.theme-default scope.
   All color values reference CSS variables for full customizer compatibility.
   Last Updated: 2026-05-21
   ========================================================================== */

/* ------------------------------------------------------------------
   1. TYPOGRAPHY & BASE
   ------------------------------------------------------------------ */

body.theme-default {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background-color: #f8fafc;
}

body.theme-default h1,
body.theme-default h2,
body.theme-default h3,
body.theme-default h4,
body.theme-default h5,
body.theme-default h6 {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    letter-spacing: -0.01em;
}

/* ------------------------------------------------------------------
   2. LISTING CARD HOVER — Modern translateY + Image Zoom
   ------------------------------------------------------------------ */

/* Override the existing translateX(8px) with a vertical lift */
body.theme-default .homepage-card:hover,
body.theme-default .accommodation-card:hover,
body.theme-default .beach-card:hover,
body.theme-default .restaurant-card:hover,
body.theme-default .activity-card:hover,
body.theme-default .tour-card:hover,
body.theme-default .vehicle-card:hover,
body.theme-default .yacht-card:hover {
    transform: translate3d(0, -4px, 0) !important;
    background: linear-gradient(135deg, rgba(17, 61, 90, 0.02) 0%, rgba(26, 90, 128, 0.04) 100%);
    border-color: var(--brand-accent) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08) !important;
}

/* Ensure card images stay clipped within the shared card shell */
body.theme-default .homepage-card .md\:w-1\/3,
body.theme-default .accommodation-card .md\:w-1\/3,
body.theme-default .beach-card .md\:w-1\/3,
body.theme-default .restaurant-card .md\:w-1\/3,
body.theme-default .activity-card .md\:w-1\/3,
body.theme-default .tour-card .md\:w-1\/3,
body.theme-default .vehicle-card .md\:w-1\/3,
body.theme-default .yacht-card .md\:w-1\/3 {
    overflow: hidden;
}

/* Card title hover — accent color transition */
body.theme-default .homepage-card:hover .accommodation-title-link h4,
body.theme-default .homepage-card:hover .beach-title-link h4,
body.theme-default .homepage-card:hover .restaurant-title-link h4,
body.theme-default .homepage-card:hover .activity-title-link h4,
body.theme-default .homepage-card:hover .tour-title-link h4,
body.theme-default .homepage-card:hover .vehicle-title-link h4,
body.theme-default .homepage-card:hover .yacht-title-link h4,
body.theme-default .accommodation-card:hover .accommodation-title-link h4,
body.theme-default .beach-card:hover .beach-title-link h4,
body.theme-default .restaurant-card:hover .restaurant-title-link h4,
body.theme-default .activity-card:hover .activity-title-link h4 {
    color: var(--brand-accent) !important;
}

/* ------------------------------------------------------------------
   3. PRICE BADGE — Brand-Aware
   ------------------------------------------------------------------ */

body.theme-default .price-badge {
    background: var(--brand-accent) !important;
    box-shadow: none !important;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    letter-spacing: 0.01em;
    transition: all 0.25s ease;
}

body.theme-default .price-badge:hover {
    background: var(--brand-accent-dark) !important;
    transform: translateY(-1px);
    box-shadow: none !important;
}

body.theme-default .price-badge-lg {
    padding: 8px 18px;
    font-size: 0.9rem;
    border-radius: 12px;
}

body.theme-default .price-badge-sm {
    padding: 4px 10px;
    font-size: 0.75rem;
    border-radius: 8px;
}

body.theme-default .price-badge-orange {
    background: var(--brand-accent) !important;
}

body.theme-default .price-badge-blue {
    background: var(--brand-primary) !important;
}

/* ------------------------------------------------------------------
   4. LOCATION BADGE — Subtle Brand Style
   ------------------------------------------------------------------ */

body.theme-default .location-badge {
    background: rgba(17, 61, 90, 0.06) !important;
    color: var(--brand-primary) !important;
    border: 1px solid rgba(17, 61, 90, 0.14);
    box-shadow: none !important;
    font-weight: 600;
    transition: all 0.25s ease;
}

body.theme-default .location-badge:hover {
    background: rgba(17, 61, 90, 0.10) !important;
    color: var(--brand-primary-dark) !important;
    border-color: rgba(17, 61, 90, 0.22);
    transform: translateY(-1px);
    box-shadow: none !important;
}

body.theme-default .location-badge i {
    color: var(--brand-accent);
}

/* ------------------------------------------------------------------
   5. OVERLAY BADGES — Brand-Aware
   ------------------------------------------------------------------ */

body.theme-default .overlay-badge-yellow {
    background: var(--brand-accent) !important;
}

body.theme-default .overlay-badge-yellow:hover {
    background: var(--brand-accent-dark) !important;
}

body.theme-default .overlay-badge-blue {
    background: var(--brand-primary) !important;
}

body.theme-default .overlay-badge-blue:hover {
    background: var(--brand-primary-dark) !important;
}

body.theme-default .overlay-badge-green {
    background: var(--brand-primary-light) !important;
}

body.theme-default .overlay-badge-green:hover {
    background: var(--brand-primary) !important;
}

body.theme-default .overlay-badge {
    box-shadow: none !important;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ------------------------------------------------------------------
   6. FEATURE TAGS — Brand-Aware Overrides
   ------------------------------------------------------------------ */

/* Override hardcoded Tailwind bg-blue-100 text-blue-800 tags */
body.theme-default span.bg-blue-100.text-blue-800 {
    background: var(--brand-primary-light) !important;
    color: white !important;
    border: 1px solid var(--brand-primary);
}

/* Override hardcoded Tailwind bg-green-100 text-green-800 tags */
body.theme-default span.bg-green-100.text-green-800 {
    background: var(--brand-secondary) !important;
    color: var(--brand-primary-dark) !important;
    border: 1px solid var(--brand-accent-light);
}

/* Override hardcoded Tailwind bg-amber-100 text-amber-800 tags */
body.theme-default span.bg-amber-100.text-amber-800 {
    background: var(--brand-accent-light) !important;
    color: var(--brand-primary-dark) !important;
    border: 1px solid var(--brand-accent);
}

/* All feature tags — consistent styling */
body.theme-default .homepage-card span.rounded-full.text-sm,
body.theme-default .accommodation-card span.rounded-full.text-sm,
body.theme-default .activity-card span.rounded-full.text-sm,
body.theme-default .beach-card span.rounded-full.text-sm,
body.theme-default .restaurant-card span.rounded-full.text-sm,
body.theme-default .tour-card span.rounded-full.text-sm,
body.theme-default .vehicle-card span.rounded-full.text-sm,
body.theme-default .yacht-card span.rounded-full.text-sm {
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: all 0.2s ease;
}

/* ------------------------------------------------------------------
   6A. FRONTEND DETAIL INFO ICONS
   ------------------------------------------------------------------ */

.frontend-detail-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}

.frontend-detail-info-icon i {
    color: inherit;
}

.frontend-detail-info-blue {
    background: #dbeafe;
    color: #2563eb;
}

.frontend-detail-info-green {
    background: #dcfce7;
    color: #16a34a;
}

.frontend-detail-info-yellow {
    background: #fef9c3;
    color: #ca8a04;
}

.frontend-detail-info-pink {
    background: #fce7f3;
    color: #db2777;
}

.frontend-detail-info-indigo {
    background: #e0e7ff;
    color: #4f46e5;
}

.frontend-detail-info-teal {
    background: #ccfbf1;
    color: #0f766e;
}

.frontend-detail-info-purple {
    background: #f3e8ff;
    color: #7c3aed;
}

.frontend-detail-info-emerald {
    background: #d1fae5;
    color: #059669;
}

.frontend-detail-info-orange {
    background: #ffedd5;
    color: #ea580c;
}

.frontend-detail-info-red {
    background: #fee2e2;
    color: #dc2626;
}

.frontend-detail-info-slate {
    background: #f1f5f9;
    color: #475569;
}

.frontend-detail-info-amber {
    background: #fef3c7;
    color: #d97706;
}

/* ------------------------------------------------------------------
   7. FOOTER — Shared Palette
   ------------------------------------------------------------------ */

footer.site-footer {
    background: var(--footer-background, var(--brand-primary-dark, #0a2939)) !important;
    color: var(--footer-text-color, #e2e8f0) !important;
    border-top: 3px solid var(--footer-border-color, rgba(255, 255, 255, 0.10));
}

footer.site-footer h4,
footer.site-footer h3 {
    color: var(--footer-heading-color, #ffffff) !important;
    font-weight: 700;
}

footer.site-footer a {
    color: var(--footer-link-color, #cbd5e1) !important;
    transition: color 0.2s ease;
}

footer.site-footer a:hover {
    color: var(--footer-link-hover-color, #ffffff) !important;
}

footer.site-footer p,
footer.site-footer span,
footer.site-footer .text-gray-600,
footer.site-footer .text-gray-700 {
    color: var(--footer-muted-color, #94a3b8) !important;
}

footer.site-footer .footer-contact-phone-link {
    color: var(--footer-muted-color, #94a3b8) !important;
}

footer.site-footer .footer-contact-phone-link:hover,
footer.site-footer .footer-social-link:hover {
    color: var(--footer-accent-color, var(--brand-accent, #F59113)) !important;
}

footer.site-footer .text-black {
    color: var(--footer-text-color, #e2e8f0) !important;
}

footer.site-footer .border-gray-300 {
    border-color: var(--footer-border-color, rgba(255, 255, 255, 0.10)) !important;
}

/* Footer logo — ensure visibility on dark bg */
footer.site-footer img {
    filter: brightness(1.08);
}

/* Footer certification images */
footer.site-footer .certification-item img {
    filter: brightness(1.12) contrast(0.95);
}

/* ------------------------------------------------------------------
   8. PAGE HEADER — Accent Bar
   ------------------------------------------------------------------ */

body.theme-default .page-header {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

body.theme-default .page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-accent);
}

/* ------------------------------------------------------------------
   9. NEWSLETTER SECTION — Brand Override
   ------------------------------------------------------------------ */

body.theme-default .newsletter-section {
    background: var(--brand-primary) !important;
    position: relative;
    overflow: hidden;
}

body.theme-default .newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
}

/* Newsletter form input */
body.theme-default .newsletter-section input[type="email"] {
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

body.theme-default .newsletter-section input[type="email"]:focus {
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 3px rgba(245, 145, 19, 0.2);
}

/* Newsletter subscribe button */
body.theme-default .newsletter-section button[type="submit"] {
    background: var(--brand-accent) !important;
    color: white !important;
    font-weight: 700;
    border: none;
    transition: all 0.25s ease;
}

body.theme-default .newsletter-section button[type="submit"]:hover {
    background: var(--brand-accent-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ------------------------------------------------------------------
   10. EMPTY STATES — Styled Card
   ------------------------------------------------------------------ */

body.theme-default #accommodationsContainer > .text-center.py-12,
body.theme-default #activitiesContainer > .text-center.py-12,
body.theme-default #beachesContainer > .text-center.py-12,
body.theme-default #restaurantsContainer > .text-center.py-12,
body.theme-default #toursContainer > .text-center.py-12 {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px dashed rgba(17, 61, 90, 0.15);
    border-radius: 20px;
    padding: 4rem 2rem;
}

body.theme-default .text-center.py-12 > i {
    color: var(--brand-accent) !important;
    opacity: 0.4;
    font-size: 4rem !important;
    margin-bottom: 1.5rem;
}

body.theme-default .text-center.py-12 > h3 {
    color: var(--brand-primary) !important;
    font-weight: 700;
}

body.theme-default .text-center.py-12 > p {
    color: #64748b !important;
}

/* ------------------------------------------------------------------
   11. SCROLL-TO-TOP — Fixed Colors
   ------------------------------------------------------------------ */

body.theme-default .scroll-to-top {
    background: var(--brand-accent) !important;
    color: black;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

body.theme-default .scroll-to-top:hover {
    background: var(--brand-accent-dark) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
}

/* ------------------------------------------------------------------
   12. HOMEPAGE SECTION HEADINGS
   ------------------------------------------------------------------ */

body.theme-default section > .container > .text-center > h2 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--brand-primary);
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

body.theme-default section > .container > .text-center > p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Listing page section title */
body.theme-default .text-2xl.font-bold.text-gray-800 {
    color: var(--brand-primary) !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em;
}

/* Breadcrumb theme refinements: core/themes/default/assets/theme.css */

/* ------------------------------------------------------------------
   14. SIDEBAR SECTIONS — Polish
   ------------------------------------------------------------------ */

/* Filters section */
body.theme-default .filters-section {
    background: var(--brand-primary) !important;
    border-radius: 16px;
}

body.theme-default .filters-section .sidebar-section-content {
    border-radius: 12px;
}

/* Popular section */
body.theme-default .popular-section {
    background: var(--brand-primary) !important;
    border-radius: 16px;
}

body.theme-default .popular-section .sidebar-section-content {
    border-radius: 12px;
}

body.theme-default .popular-section .popular-item:hover {
    background: linear-gradient(135deg, rgba(17, 61, 90, 0.03) 0%, rgba(26, 90, 128, 0.06) 100%);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(17, 61, 90, 0.08);
}

/* Tips section */
body.theme-default .tips-section {
    background: var(--brand-accent) !important;
    border-radius: 16px;
}

body.theme-default .tips-section .fa-check-circle {
    color: rgba(255, 255, 255, 0.8);
}

/* ------------------------------------------------------------------
   15. TOPBAR — Subtle Refinement
   ------------------------------------------------------------------ */

body.theme-default .topbar {
    font-size: 0.8125rem;
    letter-spacing: 0.01em;
}

body.theme-default .topbar-social-icon {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

body.theme-default .topbar-social-icon:hover {
    background-color: var(--brand-accent);
    border-color: var(--brand-accent);
}

/* ------------------------------------------------------------------
   16. NAVIGATION — Subtle Polish
   ------------------------------------------------------------------ */

body.theme-default .nav-link {
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
}

body.theme-default .dropdown-item:hover {
    border-left-color: var(--brand-accent) !important;
    background-color: rgba(17, 61, 90, 0.03);
}

/* ------------------------------------------------------------------
   17. PAGINATION — Brand Touch
   ------------------------------------------------------------------ */

body.theme-default .pagination .active {
    background: var(--brand-primary) !important;
    border-color: var(--brand-primary) !important;
}

body.theme-default .pagination a:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

/* ------------------------------------------------------------------
   18. SEARCH FORM — Refinement
   ------------------------------------------------------------------ */

body.theme-default .bg-white.rounded-lg.p-6.shadow-xl input:focus,
body.theme-default .bg-white.rounded-lg.p-6.shadow-xl select:focus {
    border-color: var(--brand-accent) !important;
    box-shadow: 0 0 0 3px rgba(245, 145, 19, 0.12) !important;
}

/* ------------------------------------------------------------------
   19. HOMEPAGE CARDS — Airbnb-Inspired Split Layout
   ------------------------------------------------------------------ */

body.theme-default .homepage-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #dbe4ee;
    border-radius: 1.5rem;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    transform: translate3d(0, 0, 0);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    min-height: 280px;
}

body.theme-default .homepage-card:hover {
    border-color: rgba(245, 145, 19, 0.40);
    transform: translate3d(0, -4px, 0);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

body.theme-default .homepage-card img {
    transition: transform 0.45s ease;
}

@media (min-width: 768px) {
    /* Shared split-card shell used by archive listings and homepage widgets.
       Keep the media column stretched so image cards fill the full card height. */
    body.theme-default .homepage-card > .md\:flex,
    body.theme-default .homepage-card > .listing-card__layout {
        flex: 1 1 auto;
        align-items: stretch;
        min-height: var(--theme-card-min-height);
    }

    body.theme-default .homepage-card > .md\:flex > .md\:w-1\/3,
    body.theme-default .homepage-card > .listing-card__layout > .md\:w-1\/3 {
        align-self: stretch;
        overflow: hidden;
    }

    body.theme-default .homepage-card > .md\:flex > .md\:w-2\/3,
    body.theme-default .homepage-card > .listing-card__layout > .md\:w-2\/3 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-width: 0;
    }

    body.theme-default .homepage-card > .md\:flex > .md\:w-2\/3 > .flex:last-child,
    body.theme-default .homepage-card > .listing-card__layout > .md\:w-2\/3 > .flex:last-child {
        margin-top: auto;
    }

    body.theme-default .homepage-card > .md\:flex > .md\:w-1\/3 > a,
    body.theme-default .homepage-card > .listing-card__layout > .md\:w-1\/3 > a {
        display: block;
        width: 100%;
        height: 100%;
    }

    body.theme-default .homepage-card > .md\:flex > .md\:w-1\/3 > a > img,
    body.theme-default .homepage-card > .md\:flex > .md\:w-1\/3 > img,
    body.theme-default .homepage-card > .listing-card__layout > .md\:w-1\/3 > a > img,
    body.theme-default .homepage-card > .listing-card__layout > .md\:w-1\/3 > img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
    }

    body.theme-default .homepage-card > .md\:flex > .md\:w-1\/3 > .w-full,
    body.theme-default .homepage-card > .listing-card__layout > .md\:w-1\/3 > .w-full {
        width: 100%;
        height: 100%;
    }
}

body.theme-default .homepage-card .price-badge {
    flex-shrink: 0;
}

body.theme-default .homepage-card .location-badge {
    box-shadow: none !important;
}

body.theme-default .homepage-card .btn {
    white-space: nowrap;
}

body.listing-card-layout-image-top-wide .homepage-card,
.homepage-card.listing-card--image-top {
  min-height: auto;
}

body.listing-card-layout-image-left .homepage-card,
.homepage-card.listing-card--image-left {
  min-height: 280px;
}

@media (min-width: 768px) {
  body.listing-card-layout-image-left .homepage-card > .md\:flex,
  body.listing-card-layout-image-left .homepage-card > .listing-card__layout,
  .homepage-card.listing-card--image-left > .listing-card__layout {
    flex: 1 1 auto;
    flex-direction: row !important;
    align-items: stretch !important;
    min-height: 280px !important;
  }

  body.listing-card-layout-image-left .homepage-card > .md\:flex > .md\:w-1\/3,
  body.listing-card-layout-image-left .homepage-card > .md\:flex > .md\:w-2\/3,
  body.listing-card-layout-image-left .homepage-card > .listing-card__layout > .md\:w-1\/3,
  body.listing-card-layout-image-left .homepage-card > .listing-card__layout > .md\:w-2\/3,
  .homepage-card.listing-card--image-left > .listing-card__layout > .md\:w-1\/3,
  .homepage-card.listing-card--image-left > .listing-card__layout > .md\:w-2\/3 {
    width: auto !important;
    max-width: none !important;
  }

  body.listing-card-layout-image-left .homepage-card > .md\:flex > .md\:w-1\/3,
  body.listing-card-layout-image-left .homepage-card > .listing-card__layout > .md\:w-1\/3,
  body.listing-card-layout-image-left .homepage-card > .listing-card__layout > .listing-card__media,
  .homepage-card.listing-card--image-left > .listing-card__layout > .md\:w-1\/3,
  .homepage-card.listing-card--image-left > .listing-card__layout > .listing-card__media {
    flex: 0 0 34%;
    max-width: 34% !important;
    align-self: stretch !important;
    overflow: hidden;
    position: relative;
    min-height: 16rem;
  }

  body.listing-card-layout-image-left .homepage-card > .md\:flex > .md\:w-2\/3,
  body.listing-card-layout-image-left .homepage-card > .listing-card__layout > .md\:w-2\/3,
  body.listing-card-layout-image-left .homepage-card > .listing-card__layout > .listing-card__body,
  .homepage-card.listing-card--image-left > .listing-card__layout > .md\:w-2\/3,
  .homepage-card.listing-card--image-left > .listing-card__layout > .listing-card__body {
    flex: 1 1 auto;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  body.listing-card-layout-image-left .homepage-card > .md\:flex > .md\:w-1\/3 > a,
  body.listing-card-layout-image-left .homepage-card > .md\:flex > .md\:w-1\/3 > img,
  body.listing-card-layout-image-left .homepage-card > .md\:flex > .md\:w-1\/3 > a > img,
  body.listing-card-layout-image-left .homepage-card > .listing-card__layout > .md\:w-1\/3 > a,
  body.listing-card-layout-image-left .homepage-card > .listing-card__layout > .md\:w-1\/3 > img,
  body.listing-card-layout-image-left .homepage-card > .listing-card__layout > .md\:w-1\/3 > a > img,
  body.listing-card-layout-image-left .homepage-card > .listing-card__layout > .listing-card__media,
  body.listing-card-layout-image-left .homepage-card > .listing-card__layout > .listing-card__media > img,
  body.listing-card-layout-image-left .homepage-card > .listing-card__layout > .listing-card__media > .listing-card__image,
  .homepage-card.listing-card--image-left > .listing-card__layout > .md\:w-1\/3 > a,
  .homepage-card.listing-card--image-left > .listing-card__layout > .md\:w-1\/3 > img,
  .homepage-card.listing-card--image-left > .listing-card__layout > .md\:w-1\/3 > a > img,
  .homepage-card.listing-card--image-left > .listing-card__layout > .listing-card__media,
  .homepage-card.listing-card--image-left > .listing-card__layout > .listing-card__media > img,
  .homepage-card.listing-card--image-left > .listing-card__layout > .listing-card__media > .listing-card__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 16rem;
    max-height: none;
    object-fit: cover;
    object-position: center;
  }

  body.listing-card-layout-image-left .homepage-card > .md\:flex > .md\:w-1\/3 > a,
  body.listing-card-layout-image-left .homepage-card > .listing-card__layout > .md\:w-1\/3 > a,
  body.listing-card-layout-image-left .homepage-card > .listing-card__layout > .listing-card__media,
  .homepage-card.listing-card--image-left > .listing-card__layout > .md\:w-1\/3 > a,
  .homepage-card.listing-card--image-left > .listing-card__layout > .listing-card__media {
    position: relative;
    inset: auto;
    min-height: 16rem;
  }

  body.listing-card-layout-image-top-wide .homepage-card.listing-card--image-top > .md\:flex,
  body.listing-card-layout-image-top-wide .homepage-card.listing-card--image-top > .listing-card__layout,
  .homepage-card.listing-card--image-top > .listing-card__layout {
    flex-direction: column !important;
    min-height: auto !important;
  }

  body.listing-card-layout-image-top-wide .homepage-card.listing-card--image-top > .md\:flex > .md\:w-1\/3,
  body.listing-card-layout-image-top-wide .homepage-card.listing-card--image-top > .md\:flex > .md\:w-2\/3,
  body.listing-card-layout-image-top-wide .homepage-card.listing-card--image-top > .listing-card__layout > .md\:w-1\/3,
  body.listing-card-layout-image-top-wide .homepage-card.listing-card--image-top > .listing-card__layout > .md\:w-2\/3,
  body.listing-card-layout-image-top-wide .homepage-card.listing-card--image-top > .listing-card__layout > .listing-card__media,
  body.listing-card-layout-image-top-wide .homepage-card.listing-card--image-top > .listing-card__layout > .listing-card__body,
  .homepage-card.listing-card--image-top > .listing-card__layout > .md\:w-1\/3,
  .homepage-card.listing-card--image-top > .listing-card__layout > .md\:w-2\/3,
  .homepage-card.listing-card--image-top > .listing-card__layout > .listing-card__media,
  .homepage-card.listing-card--image-top > .listing-card__layout > .listing-card__body {
    width: 100% !important;
    max-width: 100% !important;
  }

  body.listing-card-layout-image-top-wide .homepage-card.listing-card--image-top > .md\:flex > .md\:w-1\/3,
  body.listing-card-layout-image-top-wide .homepage-card.listing-card--image-top > .listing-card__layout > .md\:w-1\/3,
  body.listing-card-layout-image-top-wide .homepage-card.listing-card--image-top > .listing-card__layout > .listing-card__media,
  .homepage-card.listing-card--image-top > .listing-card__layout > .md\:w-1\/3,
  .homepage-card.listing-card--image-top > .listing-card__layout > .listing-card__media {
    height: 240px;
    min-height: 240px;
    align-self: stretch;
  }

  body.listing-card-layout-image-top-wide .homepage-card.listing-card--image-top > .md\:flex > .md\:w-2\/3,
  body.listing-card-layout-image-top-wide .homepage-card.listing-card--image-top > .listing-card__layout > .md\:w-2\/3,
  body.listing-card-layout-image-top-wide .homepage-card.listing-card--image-top > .listing-card__layout > .listing-card__body,
  .homepage-card.listing-card--image-top > .listing-card__layout > .md\:w-2\/3,
  .homepage-card.listing-card--image-top > .listing-card__layout > .listing-card__body {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  body.listing-card-layout-image-top-wide .homepage-card.listing-card--image-top > .md\:flex > .md\:w-1\/3 > a,
  body.listing-card-layout-image-top-wide .homepage-card.listing-card--image-top > .md\:flex > .md\:w-1\/3 > img,
  body.listing-card-layout-image-top-wide .homepage-card.listing-card--image-top > .md\:flex > .md\:w-1\/3 > a > img,
  body.listing-card-layout-image-top-wide .homepage-card.listing-card--image-top > .listing-card__layout > .md\:w-1\/3 > a,
  body.listing-card-layout-image-top-wide .homepage-card.listing-card--image-top > .listing-card__layout > .md\:w-1\/3 > img,
  body.listing-card-layout-image-top-wide .homepage-card.listing-card--image-top > .listing-card__layout > .md\:w-1\/3 > a > img,
  body.listing-card-layout-image-top-wide .homepage-card.listing-card--image-top > .listing-card__layout > .listing-card__media > img,
  body.listing-card-layout-image-top-wide .homepage-card.listing-card--image-top > .listing-card__layout > .listing-card__media > .listing-card__image,
  .homepage-card.listing-card--image-top > .listing-card__layout > .md\:w-1\/3 > a,
  .homepage-card.listing-card--image-top > .listing-card__layout > .md\:w-1\/3 > img,
  .homepage-card.listing-card--image-top > .listing-card__layout > .md\:w-1\/3 > a > img,
  .homepage-card.listing-card--image-top > .listing-card__layout > .listing-card__media > img,
  .homepage-card.listing-card--image-top > .listing-card__layout > .listing-card__media > .listing-card__image {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
  }

  body.listing-card-layout-image-left .homepage-card > .listing-card__layout > .listing-card__media,
  body.listing-card-layout-image-left .homepage-card > .listing-card__layout > .md\:w-1\/3,
  .homepage-card.listing-card--image-left > .listing-card__layout > .listing-card__media,
  .homepage-card.listing-card--image-left > .listing-card__layout > .md\:w-1\/3 {
    min-height: 280px;
  }

  body.listing-card-layout-image-left .homepage-card > .listing-card__layout > .listing-card__media > .listing-card__image,
  body.listing-card-layout-image-left .homepage-card > .listing-card__layout > .listing-card__media > img,
  body.listing-card-layout-image-left .homepage-card > .listing-card__layout > .md\:w-1\/3 > img,
  .homepage-card.listing-card--image-left > .listing-card__layout > .listing-card__media > .listing-card__image,
  .homepage-card.listing-card--image-left > .listing-card__layout > .listing-card__media > img,
  .homepage-card.listing-card--image-left > .listing-card__layout > .md\:w-1\/3 > img {
    min-height: 280px;
  }
}

.listing-results-layout-grid .homepage-card.listing-card--grid {
  min-height: auto;
  height: auto;
  align-self: start;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.listing-results-layout-grid .homepage-card.listing-card--grid .listing-card__body--grid {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
}

.listing-results-layout-grid .homepage-card.listing-card--grid .listing-card__grid-footer {
  margin-top: auto;
}

.homepage-card.listing-card--grid .listing-card__media--grid,
.homepage-card.listing-card--grid .listing-card__media-slot--grid {
  position: relative;
  display: block;
  flex-shrink: 0;
  aspect-ratio: 4 / 3;
}

.homepage-card.listing-card--grid-compact .listing-card__media--grid,
.homepage-card.listing-card--grid-compact .listing-card__media-slot--grid,
.homepage-card.listing-card--grid-compact .listing-card__media-host {
  aspect-ratio: 5 / 2;
}

.homepage-card.listing-card--grid-overlay .listing-card__media--grid,
.homepage-card.listing-card--grid-overlay .listing-card__media-slot--grid,
.homepage-card.listing-card--grid-overlay .listing-card__media-host {
  aspect-ratio: 4 / 3;
  min-height: 14rem;
}

.homepage-card.listing-card--grid-minimal .listing-card__media--grid,
.homepage-card.listing-card--grid-minimal .listing-card__media-slot--grid,
.homepage-card.listing-card--grid-minimal .listing-card__media-host {
  aspect-ratio: 16 / 9;
}

.homepage-card.listing-card--grid .listing-card__media-host {
  display: block;
  width: 100%;
  height: 100%;
}

.homepage-card.listing-card--grid .listing-card__image--grid {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.listing-card--grid .listing-card__media--gallery,
.listing-card--grid .listing-card__media-slot--grid .listing-card__media--gallery {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.listing-card--grid .listing-card-gallery.swiper,
.listing-card--grid .listing-card__media-slot .listing-card-gallery {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.listing-card--grid .listing-card-gallery .swiper-slide,
.listing-card--grid .listing-card-gallery__slide-link {
  height: 100%;
}

.listing-card--grid .listing-card-gallery__slide-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.homepage-card.listing-card--grid-top-image,
.homepage-card.listing-card--grid-compact,
.homepage-card.listing-card--grid-minimal {
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px -12px rgba(15, 23, 42, 0.35);
}

.homepage-card.listing-card--grid-overlay .listing-card__grid-overlay-caption h3 {
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

body.listing-grid-variant-minimal .listing-results-layout-grid .homepage-card.listing-card--grid .listing-card__body--grid {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.listing-card__media-host,
.listing-card__media--gallery {
  position: relative;
  display: block;
  overflow: hidden;
}

.listing-card__media-overlays {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.listing-card-gallery.swiper {
  width: 100%;
  height: 100%;
}

.listing-card--image-left .listing-card-gallery.swiper,
.listing-card--image-top .listing-card-gallery.swiper {
  height: 100%;
}

.listing-card-gallery .swiper-slide {
  height: auto;
}

.listing-card--grid .listing-card-gallery .swiper-slide {
  height: 100%;
}

.listing-card-gallery__slide-link {
  display: block;
  height: 100%;
}

.listing-card-gallery__pagination.swiper-pagination {
  bottom: 0.5rem !important;
  z-index: 4;
}

.listing-card-gallery__prev,
.listing-card-gallery__next {
  top: 50%;
  width: 2.25rem;
  height: 2.25rem;
  margin-top: 0;
  border: none;
  border-radius: 9999px;
  color: #fff;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0.65;
  z-index: 5;
  backdrop-filter: blur(4px);
  transition: opacity 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.listing-card-gallery__prev {
  left: 0.5rem;
  transform: translateY(-50%);
}

.listing-card-gallery__next {
  right: 0.5rem;
  transform: translateY(-50%);
}

.listing-card-gallery__prev::after,
.listing-card-gallery__next::after {
  font-size: 0.875rem;
  font-weight: 700;
}

.listing-card-gallery__prev:hover,
.listing-card-gallery__next:hover,
.listing-card-gallery__prev:focus-visible,
.listing-card-gallery__next:focus-visible {
  opacity: 1;
  background: rgba(15, 23, 42, 0.72);
}

.listing-card-gallery__prev:hover,
.listing-card-gallery__prev:focus-visible {
  transform: translateY(-50%) scale(1.05);
}

.listing-card-gallery__next:hover,
.listing-card-gallery__next:focus-visible {
  transform: translateY(-50%) scale(1.05);
}

.listing-card-gallery__prev.swiper-button-disabled,
.listing-card-gallery__next.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.listing-card__media-host:hover .listing-card-gallery__prev:not(.swiper-button-disabled),
.listing-card__media-host:hover .listing-card-gallery__next:not(.swiper-button-disabled) {
  opacity: 0.85;
}

@media (hover: none) {
  .listing-card-gallery__prev:not(.swiper-button-disabled),
  .listing-card-gallery__next:not(.swiper-button-disabled) {
    opacity: 0.8;
  }
}

@media (prefers-reduced-motion: reduce) {
  .listing-card-gallery__prev,
  .listing-card-gallery__next {
    transition: opacity 0.2s ease, background-color 0.2s ease;
  }

  .listing-card-gallery__prev:hover,
  .listing-card-gallery__next:hover,
  .listing-card-gallery__prev:focus-visible,
  .listing-card-gallery__next:focus-visible {
    transform: translateY(-50%);
  }
}

.listing-card__video-play {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  width: auto;
  min-height: 2.5rem;
  height: auto;
  padding: 0.375rem 0.75rem 0.375rem 0.625rem;
  border: none;
  border-radius: 9999px;
  color: #fff;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0.65;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: opacity 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.listing-card__video-play i {
  margin-left: 0.125rem;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.listing-card__video-play-label {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.listing-card__video-play:hover,
.listing-card__video-play:focus-visible {
  opacity: 1;
  background: rgba(15, 23, 42, 0.72);
  transform: scale(1.05);
  outline: none;
}

.listing-card__media-host:hover .listing-card__video-play {
  opacity: 0.85;
}

@import url("detail-hero.css");

@media (hover: none) {
  .listing-card__video-play {
    opacity: 0.8;
  }
}

@media (prefers-reduced-motion: reduce) {
  .listing-card__video-play {
    transition: opacity 0.2s ease, background-color 0.2s ease;
  }

  .listing-card__video-play:hover,
  .listing-card__video-play:focus-visible {
    transform: none;
  }
}

.listing-card--image-left .listing-card__media--gallery,
.listing-card--image-top .listing-card__media--gallery {
  min-height: 16rem;
}

@media (min-width: 768px) {
  .listing-card--image-left .listing-card__media--gallery {
    min-height: 280px;
  }
}

/* Archive listings: no image zoom on card hover */
section[data-listing-archive-section] .homepage-card:hover img,
section[data-listing-archive-section] .accommodation-card:hover img,
section[data-listing-archive-section] .beach-card:hover img,
section[data-listing-archive-section] .restaurant-card:hover img,
section[data-listing-archive-section] .activity-card:hover img,
section[data-listing-archive-section] .tour-card:hover img,
section[data-listing-archive-section] .vehicle-card:hover img,
section[data-listing-archive-section] .yacht-card:hover img {
  transform: none !important;
}

section[data-listing-archive-section] .homepage-card img,
section[data-listing-archive-section] .accommodation-card img,
section[data-listing-archive-section] .beach-card img,
section[data-listing-archive-section] .restaurant-card img,
section[data-listing-archive-section] .activity-card img,
section[data-listing-archive-section] .tour-card img,
section[data-listing-archive-section] .vehicle-card img,
section[data-listing-archive-section] .yacht-card img {
  transition: none;
}

/* Archive listing cards: smooth vertical lift */
section[data-listing-archive-section] .listing-card {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

section[data-listing-archive-section] .listing-card:hover {
  transform: translate3d(0, -4px, 0) !important;
}

body.listing-archive-motion-none section[data-listing-archive-section] [data-listing-reveal] > .listing-card,
body.listing-archive-motion-none section[data-listing-archive-section] [data-listing-reveal] > .listing-card[data-listing-reveal-item] {
  transform: translate3d(0, 0, 0);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

body.listing-archive-motion-none section[data-listing-archive-section] [data-listing-reveal] > .listing-card:hover,
body.listing-archive-motion-none section[data-listing-archive-section] [data-listing-reveal] > .listing-card[data-listing-reveal-item]:hover {
  transform: translate3d(0, -4px, 0) !important;
}

/* Archive + image left: fill media column height (no gap under the photo) */
body.listing-card-layout-image-left section[data-listing-archive-section] .homepage-card.listing-card--image-left > .listing-card__layout > .md\:w-1\/3,
body.listing-card-layout-image-left section[data-listing-archive-section] .homepage-card > .listing-card__layout > .md\:w-1\/3,
body.listing-card-layout-image-left section[data-listing-archive-section] .homepage-card > .listing-card__layout > .listing-card__media,
body.listing-card-layout-image-left .homepage-card.listing-card--image-left > .listing-card__layout > .md\:w-1\/3,
body.listing-card-layout-image-left .homepage-card.listing-card--image-left > .listing-card__layout > .listing-card__media {
  overflow: hidden;
  position: relative;
  min-height: 16rem;
}

body.listing-card-layout-image-left section[data-listing-archive-section] .homepage-card.listing-card--image-left > .listing-card__layout > .md\:w-1\/3 > img,
body.listing-card-layout-image-left section[data-listing-archive-section] .homepage-card > .listing-card__layout > .md\:w-1\/3 > img,
body.listing-card-layout-image-left section[data-listing-archive-section] .homepage-card > .listing-card__layout > .listing-card__media > img,
body.listing-card-layout-image-left section[data-listing-archive-section] .homepage-card > .listing-card__layout > .listing-card__media > .listing-card__image,
body.listing-card-layout-image-left .homepage-card.listing-card--image-left > .listing-card__layout > .md\:w-1\/3 > img,
body.listing-card-layout-image-left .homepage-card.listing-card--image-left > .listing-card__layout > .listing-card__media > img,
body.listing-card-layout-image-left .homepage-card.listing-card--image-left > .listing-card__layout > .listing-card__media > .listing-card__image {
  max-height: none;
  min-height: 16rem;
  object-fit: cover;
  object-position: center;
}

/* Archive + wide top image: clip media and cover-fill inside the card shell */
body.listing-card-layout-image-top-wide section[data-listing-archive-section] .homepage-card.listing-card--image-top .md\:w-1\/3,
body.listing-card-layout-image-top-wide section[data-listing-archive-section] .homepage-card.listing-card--image-top > .listing-card__layout > .md\:w-1\/3,
body.listing-card-layout-image-top-wide section[data-listing-archive-section] .homepage-card.listing-card--image-top > .listing-card__layout > .listing-card__media {
  overflow: hidden;
  position: relative;
  min-height: 16rem;
}

body.listing-card-layout-image-top-wide section[data-listing-archive-section] .homepage-card.listing-card--image-top img,
body.listing-card-layout-image-top-wide section[data-listing-archive-section] .homepage-card.listing-card--image-top > .listing-card__layout > .md\:w-1\/3 > img,
body.listing-card-layout-image-top-wide section[data-listing-archive-section] .homepage-card.listing-card--image-top > .listing-card__layout > .listing-card__media > img,
body.listing-card-layout-image-top-wide section[data-listing-archive-section] .homepage-card.listing-card--image-top > .listing-card__layout > .listing-card__media > .listing-card__image {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 767px) {
  body.listing-card-layout-image-top-wide section[data-listing-archive-section] .homepage-card.listing-card--image-top .md\:w-1\/3,
  body.listing-card-layout-image-top-wide section[data-listing-archive-section] .homepage-card > .listing-card__layout > .md\:w-1\/3 {
    height: 16rem;
  }

  body.listing-card-layout-image-top-wide section[data-listing-archive-section] .homepage-card.listing-card--image-top img,
  body.listing-card-layout-image-top-wide section[data-listing-archive-section] .homepage-card > .listing-card__layout > .md\:w-1\/3 > img {
    min-height: 100%;
  }
}

/* ------------------------------------------------------------------
   20. RESERVATION FORM — Brand Touch
   ------------------------------------------------------------------ */

body.theme-default .reservation-form {
    background: var(--brand-primary) !important;
    border-radius: 16px;
}

/* ------------------------------------------------------------------
   21. SECTION BACKGROUND ALTERNATION
   ------------------------------------------------------------------ */

body.theme-default section.py-16.bg-white {
    background-color: #ffffff;
}

/* ------------------------------------------------------------------
   22. CARD CONTENT SPACING
   ------------------------------------------------------------------ */

body.theme-default .accommodation-card .md\:w-2\/3,
body.theme-default .beach-card .md\:w-2\/3,
body.theme-default .restaurant-card .md\:w-2\/3,
body.theme-default .activity-card .md\:w-2\/3 {
    padding: 1.75rem !important;
}

/* ------------------------------------------------------------------
   23. FEATURED BADGE — Brand-Aware
   ------------------------------------------------------------------ */

body.theme-default .featured-badge {
    border-color: transparent var(--brand-accent) transparent transparent !important;
}

body.theme-default .featured-badge-icon {
    color: rgba(0, 0, 0, 0.6);
}

/* ------------------------------------------------------------------
   24. FORM INPUTS — Focus Brand
   ------------------------------------------------------------------ */

body.theme-default .form-input:focus,
body.theme-default input:focus,
body.theme-default select:focus,
body.theme-default textarea:focus {
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 3px rgba(245, 145, 19, 0.1);
}

/* ------------------------------------------------------------------
   25. SCROLLBAR — Brand-Aware
   ------------------------------------------------------------------ */

body.theme-default ::-webkit-scrollbar-thumb {
    background: var(--brand-primary-light);
}

body.theme-default ::-webkit-scrollbar-thumb:hover {
    background: var(--brand-primary);
}

/* ------------------------------------------------------------------
   26. REVIEW CARD — Refinement
   ------------------------------------------------------------------ */

body.theme-default .review-card {
    border: 1px solid #e2e8f0;
    box-shadow: none;
    border-radius: 16px;
    transition: all 0.25s ease;
}

body.theme-default .review-card:hover {
    border-color: var(--brand-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

body.theme-default .review-avatar {
    background: var(--brand-primary);
}

/* ------------------------------------------------------------------
   27. MAP CONTAINER — Brand Border
   ------------------------------------------------------------------ */

body.theme-default .map-container {
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ------------------------------------------------------------------
   28. RESPONSIVE ADJUSTMENTS
   ------------------------------------------------------------------ */

@media (max-width: 768px) {
    body.theme-default .accommodation-card .md\:w-2\/3,
    body.theme-default .beach-card .md\:w-2\/3,
    body.theme-default .restaurant-card .md\:w-2\/3,
    body.theme-default .activity-card .md\:w-2\/3 {
        padding: 1.25rem !important;
    }

    body.theme-default section > .container > .text-center > h2 {
        font-size: 1.5rem;
    }

    body.theme-default .page-header {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    body.theme-default .price-badge-lg {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    body.theme-default section > .container > .text-center > h2 {
        font-size: 1.375rem;
    }
}

/* Blog article detail page */
.blog-article__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
}

.blog-article__main {
    min-width: 0;
}

.blog-article__sidebar {
    min-width: 0;
}

@media (min-width: 1024px) {
    .blog-article__layout {
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 3rem;
    }

    .blog-article__sidebar {
        position: sticky;
        top: 1.5rem;
    }
}

.blog-article__meta-item {
    display: flex;
    align-items: center;
}

.blog-article__meta--hero {
    color: rgba(255, 255, 255, 0.92);
}

.blog-article__meta--editorial .blog-article__meta-item {
    color: inherit;
}

.blog-article__hero--image .blog-article__hero-image {
    display: block;
}

.blog-article__prose img {
    border-radius: 0.5rem;
}

.blog-article__prose blockquote {
    border-left-width: 4px;
    border-left-color: #3b82f6;
    padding-left: 1rem;
    font-style: italic;
    color: #4b5563;
}

.blog-article__share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.625rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.blog-article__share-btn--block {
    width: 100%;
}

.blog-article__share-btn--facebook {
    background-color: #1877f2;
}

.blog-article__share-btn--facebook:hover {
    background-color: #166fe5;
}

.blog-article__share-btn--twitter {
    background-color: #0f1419;
}

.blog-article__share-btn--twitter:hover {
    background-color: #272c30;
}

.blog-article__share-btn--whatsapp {
    background-color: #25d366;
}

.blog-article__share-btn--whatsapp:hover {
    background-color: #20bd5a;
}

.blog-article__sidebar-card {
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.blog-article__related-card:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

@media (max-width: 1023px) {
    .blog-article__hero--editorial {
        padding-bottom: 0;
    }
}

/* Contact page */
.contact-page {
    --contact-sidebar-sticky-offset: 6rem;
}

.contact-page__hero {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.contact-page__quick-actions {
    width: 100%;
}

.contact-page__quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 168px), 1fr));
    gap: 12px;
    width: 100%;
}

.contact-page__quick-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #f9fafb;
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.contact-page__quick-card:hover {
    border-color: #93c5fd;
    background: #ffffff;
}

.contact-page__quick-card--whatsapp:hover {
    border-color: #86efac;
}

.contact-page__quick-card--static {
    cursor: default;
}

.contact-page__quick-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b7280;
}

.contact-page__quick-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.4;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-page__quick-value--email {
    font-size: 0.875rem;
    font-weight: 600;
}

.contact-page__hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.contact-page__hero-actions .contact-page__quick-actions {
    margin-top: 0;
}

.contact-page__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
        "contact-form"
        "contact-sidebar"
        "contact-faq";
    gap: 2rem;
    align-items: start;
}

.contact-page__form-card {
    grid-area: contact-form;
}

.contact-page__sidebar {
    grid-area: contact-sidebar;
    min-width: 0;
}

.contact-page__faq-panel {
    grid-area: contact-faq;
}

.contact-page__form-card,
.contact-page__sidebar-card,
.contact-page__faq-panel {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #ffffff;
    padding: 1.5rem;
}

.contact-page__sidebar-card {
    background: #f9fafb;
}

.contact-page__faq-panel {
    background: #f9fafb;
}

.contact-page__sidebar-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 1.25rem;
}

.contact-page__sidebar-title--sub {
    margin-bottom: 0.75rem;
}

.contact-page__subject-field {
    border: 0;
    margin: 0;
    padding: 0;
}

.contact-page__subject-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.contact-page__subject-pill {
    cursor: pointer;
    margin: 0;
}

.contact-page__subject-text {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.5rem 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    background: #ffffff;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.contact-page__subject-input:focus + .contact-page__subject-text {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.contact-page__subject-input:checked + .contact-page__subject-text {
    border-color: #2563eb;
    background: #eff6ff;
    color: #1d4ed8;
}

.contact-page__notification {
    padding: 0.875rem 1rem;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
}

.contact-page__notification--success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.contact-page__notification--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.contact-page__submit {
    min-height: 48px;
}

.contact-page__submit--loading {
    opacity: 0.85;
    cursor: wait;
}

.contact-page__fact {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    align-items: flex-start;
}

.contact-page__fact > div:last-child {
    min-width: 0;
    flex: 1 1 auto;
}

.contact-page__fact:last-child {
    border-bottom: 0;
}

.contact-page__fact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #4b5563;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-page__fact-icon--whatsapp {
    color: #16a34a;
}

.contact-page__fact-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.contact-page__fact-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-page__fact-value a {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-page__social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.contact-page__social-link {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #374151;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.contact-page__social-link:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: #eff6ff;
}

.contact-page__faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
}

.contact-page__faq-question {
    cursor: pointer;
    list-style: none;
    padding: 1rem 1.125rem;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

.contact-page__faq-question::-webkit-details-marker {
    display: none;
}

.contact-page__faq-item[open] .contact-page__faq-question {
    border-bottom: 1px solid #e5e7eb;
}

.contact-page__faq-answer {
    padding: 0 1.125rem 1rem;
    color: #4b5563;
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .contact-page__layout {
        grid-template-columns: minmax(0, 1.15fr) 300px;
        grid-template-areas:
            "contact-form contact-sidebar"
            "contact-faq contact-sidebar";
        gap: 2rem 2rem;
        align-items: start;
    }

    .contact-page__sidebar {
        position: sticky;
        top: var(--contact-sidebar-sticky-offset);
        align-self: start;
        z-index: 5;
        max-height: calc(100vh - var(--contact-sidebar-sticky-offset) - 1.5rem);
        overflow-y: auto;
        padding-bottom: 0.25rem;
        scrollbar-gutter: stable;
    }

    .contact-page__sidebar-card {
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    }

    .contact-page__form-card,
    .contact-page__sidebar-card,
    .contact-page__faq-panel {
        padding: 2rem;
    }
}

/* Frontend page builder — shared widget surfaces */
.page-builder-section {
    padding: 2rem 0;
}

.page-builder-section:first-child {
    padding-top: 0;
}

.page-builder-row {
    display: grid;
    gap: 1.25rem;
}

.page-builder-row--cols-1 {
    grid-template-columns: minmax(0, 1fr);
}

.page-builder-row--cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-builder-row--cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-builder-row--cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 991px) {
    .page-builder-row--cols-3,
    .page-builder-row--cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .page-builder-row--cols-2,
    .page-builder-row--cols-3,
    .page-builder-row--cols-4 {
        grid-template-columns: minmax(0, 1fr);
    }
}

.page-builder-section-head {
    margin: 0 0 2rem;
}

.page-builder-section-head--center {
    text-align: center;
}

.page-builder-section-head--right {
    text-align: right;
}

.page-builder-section-head__title {
    margin: 0 0 1rem;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    color: #1f2937;
    letter-spacing: -0.03em;
}

.page-builder-section-head__title i {
    margin-right: 0.5rem;
}

.page-builder-section-head__description {
    margin: 0 auto;
    max-width: 48rem;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
}

.page-builder-icon-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    height: 100%;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.page-builder-icon-box__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.85rem;
    background: rgba(17, 61, 90, 0.08);
    color: #113d5a;
    font-size: 1.15rem;
}

.page-builder-icon-box__title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
}

.page-builder-icon-box__description {
    margin: 0;
    flex: 1 1 auto;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.55;
}

.page-builder-icon-box__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: auto;
    color: #113d5a;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
}

.page-builder-icon-box__link:hover {
    text-decoration: underline;
}

.page-builder-icon-box__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 0.65rem;
    min-width: 0;
}

.page-builder-icon-box--trust-bar {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    border-radius: 1rem;
    box-shadow: none;
}

.page-builder-icon-box--trust-bar .page-builder-icon-box__icon {
    flex: 0 0 auto;
    width: 2.75rem;
    height: 2.75rem;
}

.page-builder-icon-box--trust-bar .page-builder-icon-box__body {
    gap: 0.35rem;
}

.page-builder-icon-box--trust-bar .page-builder-icon-box__link {
    margin-top: 0;
}

.page-builder-section--spacing-compact {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.page-builder-section--spacing-comfortable {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.page-builder-section--spacing-airy {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.page-builder-section--band-trust {
    padding-bottom: 1.25rem;
}

.page-builder-section--band-conversion {
    padding-top: 1.5rem;
    padding-bottom: 0;
}

.page-builder-section--band-newsletter {
    padding-top: 0;
    padding-bottom: 0;
}

.page-builder-cta-band {
    overflow: hidden;
}

.page-builder-cta-band__shell {
    width: 100%;
}

.page-builder-cta-band__inner {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}

.page-builder-cta-band__title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
}

.page-builder-cta-band__description {
    margin: 0 0 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.92;
}

.page-builder-cta-band__button,
.page-builder-cta-band__actions .page-builder-cta-band__button--inverse {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.page-builder-cta-band__button--inverse {
    background: #fff;
    color: #113d5a;
    border-radius: 0.75rem;
    padding: 0.85rem 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.page-builder-cta-band--full-band {
    border-radius: 1.25rem;
    padding: 3.5rem 0;
}

.page-builder-cta-band--full-band .page-builder-cta-band__shell {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.page-builder-cta-band--inset_card {
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
}

.page-builder-cta-band--split .page-builder-cta-band__inner {
    max-width: 72rem;
    display: grid;
    gap: 1.5rem;
    text-align: left;
    align-items: center;
}

.page-builder-cta-band--split .page-builder-cta-band__actions {
    display: flex;
    justify-content: flex-end;
}

.page-builder-cta-band--minimal_strip {
    border-radius: 1rem;
    padding: 1.35rem 1.5rem;
}

.page-builder-cta-band--minimal_strip .page-builder-cta-band__strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    align-items: center;
    justify-content: space-between;
    max-width: 72rem;
    margin: 0 auto;
    text-align: left;
}

.page-builder-cta-band--minimal_strip .page-builder-cta-band__title {
    margin-bottom: 0.35rem;
    font-size: 1.25rem;
}

.page-builder-cta-band--minimal_strip .page-builder-cta-band__description {
    margin: 0;
    font-size: 0.98rem;
}

.page-builder-cta-band--image_overlay {
    border-radius: 1.25rem;
    padding: 3.5rem 2rem;
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-builder-cta-band--image_overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    border-radius: inherit;
}

.page-builder-cta-band--image_overlay .page-builder-cta-band__shell {
    position: relative;
    z-index: 1;
}

.page-builder-newsletter {
    color: #fff;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, #0f172a 0%, #334155 55%, #155e75 100%);
    padding: 2.5rem 1.5rem;
}

.page-builder-newsletter__shell {
    max-width: 72rem;
    margin: 0 auto;
}

.page-builder-newsletter__title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    font-weight: 700;
    line-height: 1.2;
}

.page-builder-newsletter__description {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.6;
    opacity: 0.92;
}

.page-builder-newsletter__form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.page-builder-newsletter__input {
    flex: 1 1 16rem;
    min-width: 0;
    border: 0;
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    color: #111827;
}

.page-builder-newsletter__button {
    border-radius: 0.75rem;
}

.page-builder-newsletter__notification {
    width: 100%;
    margin-bottom: 0.75rem;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.92);
    color: #111827;
}

.page-builder-newsletter--standard .page-builder-newsletter__shell {
    max-width: 42rem;
    text-align: center;
}

.page-builder-newsletter--standard .page-builder-newsletter__form {
    justify-content: center;
}

.page-builder-newsletter--split .page-builder-newsletter__shell,
.page-builder-newsletter--compact .page-builder-newsletter__shell {
    display: grid;
    gap: 1.5rem;
    align-items: center;
}

.page-builder-newsletter--split .page-builder-newsletter__form,
.page-builder-newsletter--compact .page-builder-newsletter__form {
    margin-top: 0;
}

.page-builder-newsletter--footer_band {
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    padding: 2rem 1.5rem;
}

.homepage-promotions-block {
    width: 100%;
}

@media (min-width: 992px) {
    .page-builder-cta-band--split .page-builder-cta-band__inner {
        grid-template-columns: minmax(0, 1.2fr) auto;
    }

    .page-builder-newsletter--split .page-builder-newsletter__shell {
        grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
    }

    .page-builder-newsletter--compact .page-builder-newsletter__shell {
        grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.9fr);
    }
}
