:root {
    --teal-900: #0a3d42;
    --teal-800: #0d4f56;
    --teal-700: #116b75;
    --teal-600: #1a8a96;
    --teal-500: #22a8b6;
    --teal-400: #4ec4d0;
    --teal-300: #7dd9e3;
    --blue-900: #0c2340;
    --blue-800: #123a5c;
    --gold: #c9a962;
    --gold-light: #e8d5a3;
    --white: #ffffff;
    --gray-50: #f4f9fa;
    --gray-100: #e8f2f3;
    --gray-200: #d1e4e6;
    --gray-600: #5a7a7e;
    --gray-800: #2a4548;
    --shadow: 0 20px 60px rgba(10, 61, 66, 0.15);
    --shadow-sm: 0 8px 24px rgba(10, 61, 66, 0.1);
    --radius: 16px;
    --radius-sm: 10px;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    --gradient: linear-gradient(135deg, var(--teal-800) 0%, var(--blue-800) 50%, var(--teal-900) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    --header-h: 100px;
    --logo-h: 92px;
    --logo-max-w: 420px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--gray-50);
    line-height: 1.6;
    overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: var(--teal-700); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--teal-500); }

.container { width: min(1200px, 92%); margin: 0 auto; }

/* Header */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26,138,150,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    min-height: var(--header-h);
    gap: 0.75rem;
    flex-wrap: nowrap;
    min-width: 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    max-width: min(var(--logo-max-w), 72vw);
}

.logo:hover {
    transform: scale(1.03);
    opacity: 0.95;
}

.logo-image {
    height: var(--logo-h);
    width: auto;
    max-width: 100%;
    min-height: 56px;
    display: block;
    object-fit: contain;
    object-position: left center;
    image-rendering: -webkit-optimize-contrast;
}

/* Fallback for any legacy templates still using the text logo */
.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal-900);
    white-space: nowrap;
}

.logo-icon {
    color: var(--gold);
    font-size: 1.2rem;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    flex: 1;
    max-width: 52rem;
    margin: 0 0.5rem;
}

.main-nav .nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.48rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    color: var(--teal-800);
    background: #fff;
    border: 1.5px solid rgba(26, 138, 150, 0.28);
    box-shadow: 0 1px 4px rgba(10, 37, 64, 0.06);
    transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.main-nav .nav-btn:hover {
    color: #fff;
    background: var(--teal-600);
    border-color: var(--teal-600);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 138, 150, 0.28);
}

.main-nav .nav-btn-accent {
    color: #fff;
    background: linear-gradient(135deg, var(--teal-600), #0d9488);
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(20, 184, 166, 0.35);
}

.main-nav .nav-btn-accent:hover {
    background: linear-gradient(135deg, #0d9488, var(--teal-700, #0f766e));
    border-color: transparent;
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--teal-800);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: var(--white);
}

.btn-outline {
    border-color: var(--teal-600);
    color: var(--teal-700);
    background: transparent;
}

.btn-outline:hover { background: var(--teal-600); color: var(--white); }

.btn-ghost {
    background: transparent;
    color: var(--teal-700);
}

.btn-ghost:hover { background: var(--gray-100); }

.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* Hero */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    margin-top: var(--header-h);
    overflow: hidden;
}

.hero.hero-home {
    overflow: visible;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,61,66,0.85) 0%, rgba(12,35,64,0.7) 60%, rgba(10,61,66,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    padding: 4rem 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow-x: clip;
}

.hero-content .container,
.hero .container {
    width: min(1200px, 100%);
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
    box-sizing: border-box;
}

/* Hero hızlı rezervasyon — theme.css ile yönetilir */
.site-body .hero-booking {
    background: transparent;
    padding: 0;
    margin: 1.75rem 0;
    box-shadow: none;
    color: inherit;
    max-width: 100%;
    overflow: visible;
}

.hero-booking-head h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--teal-900);
    margin-bottom: 0.25rem;
}

.hero-booking-head p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    opacity: 1;
}

.hero-caravan-picker {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.hero-caravan-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.hero-caravan-card {
    display: flex;
    flex-direction: column;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--white);
}

.hero-caravan-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.hero-caravan-info {
    padding: 0.6rem 0.75rem;
    text-align: left;
}

.hero-caravan-info strong {
    display: block;
    font-size: 0.85rem;
    color: var(--teal-900);
    line-height: 1.2;
}

.hero-caravan-info small {
    color: var(--teal-600);
    font-weight: 600;
    font-size: 0.75rem;
}

.hero-caravan-option input:checked + .hero-caravan-card {
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(34, 168, 182, 0.25);
}

.site-body .hero-booking-fields {
    margin-bottom: 0;
}

.hero-booking-fields label span {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 0.35rem;
}

.hero-booking-fields input[type="date"] {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
}

.hero-booking-fields input[type="date"]:focus {
    outline: none;
    border-color: var(--teal-500);
}

.hero-booking-total {
    text-align: left;
    padding-bottom: 0.35rem;
}

.hero-booking-total small {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-600);
}

.site-body .hero-booking-total strong {
    font-size: 1.25rem;
    color: var(--teal-700);
    white-space: normal;
    word-break: break-word;
}

.site-body .hero-booking-submit {
    margin-top: 0;
}

.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.hero h1 em {
    font-style: italic;
    color: var(--teal-300);
}

.hero p {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.95);
}

.hero p a,
.hero-content p a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.5);
    text-underline-offset: 0.2em;
    font-weight: 600;
}

.hero p a strong,
.hero-content p a strong {
    color: inherit;
    font-weight: inherit;
}

.hero p a:hover,
.hero-content p a:hover {
    color: var(--gold-light);
    text-decoration-color: var(--gold-light);
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero .btn-outline {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

.hero .btn-outline:hover {
    background: var(--white);
    color: var(--teal-800);
}

/* Sections */
.section { padding: 5rem 0; }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--teal-900);
    margin: 0.5rem 0;
}
.section-head p { color: var(--gray-600); max-width: 560px; margin: 0 auto; }
.section-head.light { color: var(--white); }
.section-head.light h2 { color: var(--white); }

.page-hero {
    margin-top: var(--header-h);
    padding: 5rem 0 3rem;
    background: var(--gradient);
    color: var(--white);
    position: relative;
    background-size: cover;
    background-position: center;
}

.page-hero.small { padding: 4rem 0 2.5rem; }
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-top: 0.5rem;
}

/* Stats */
.stats-section {
    padding: 0;
    margin-top: 2rem;
    position: relative;
    z-index: 0;
}

.home-how-section + .stats-section {
    margin-top: 0;
    padding-top: 0;
}

.hero-home + .stats-section {
    margin-top: 3.5rem;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.stat-card {
    text-align: center;
    padding: 1rem;
}

.stat-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--teal-700);
}

.stat-card span { font-size: 0.9rem; color: var(--gray-600); }

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.caravan-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.caravan-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.card-image {
    position: relative;
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.caravan-card:hover .card-image img { transform: scale(1.08); }

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255,255,255,0.95);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--teal-800);
}

.card-body { padding: 1.5rem; }
.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}
.rating { color: var(--gold); font-weight: 600; }
.card-body h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
.card-body h3 a { color: var(--teal-900); }
.card-body p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 1rem; }
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.price small { display: block; font-size: 0.75rem; color: var(--gray-600); }
.price strong {
    font-size: 1.2rem;
    color: var(--teal-700);
}

/* Gallery */
.gallery-section {
    background: var(--gradient);
    padding: 5rem 0;
}

.masonry-gallery {
    columns: 3;
    column-gap: 1rem;
    padding: 0 4%;
}

.masonry-gallery img {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
    break-inside: avoid;
}

/* Boxer galeri */
.boxer-gallery .gallery-item,
.boxer-gallery-full .gallery-item {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.boxer-gallery .gallery-item img,
.boxer-gallery-full .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.boxer-gallery .gallery-item:hover img,
.boxer-gallery-full .gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-zoom {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(10, 61, 66, 0.85);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    opacity: 0;
    transition: opacity 0.25s;
}

.boxer-gallery-full .gallery-item:hover .gallery-zoom { opacity: 1; }

.gallery-cta-btn {
    border-color: rgba(255, 255, 255, 0.6) !important;
    color: #fff !important;
}

.gallery-cta-btn:hover {
    background: var(--white) !important;
    color: var(--teal-800) !important;
}

/* ============================================================
   RENTAL PAGE — Her karavan için ayrı bölüm
   ============================================================ */

/* Özet stat bar */
.rental-summary-bar {
    background: var(--teal-700);
    color: #fff;
    padding: 1rem 0;
}
.rental-summary-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.rental-summary-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2.5rem;
}
.rental-summary-stat strong { font-size: 1.5rem; font-weight: 700; font-family: var(--font-display); }
.rental-summary-stat span { font-size: 0.8rem; opacity: 0.85; margin-top: 0.1rem; }
.rental-summary-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.3); }

/* Section wrapper */
.rental-caravan-section {
    padding: 4rem 0;
    background: var(--white);
    position: relative;
}
.rental-caravan-alt { background: var(--gray-50); }

/* Section header bar */
.rcs-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--gray-200);
}
.rcs-number {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: var(--font-display);
    color: var(--teal-100);
    line-height: 1;
    min-width: 3rem;
    user-select: none;
}
.rental-caravan-alt .rcs-number { color: var(--teal-200); }
.rcs-title-group { flex: 1; }
.rcs-name {
    font-size: 2rem;
    font-family: var(--font-display);
    color: var(--teal-900);
    margin: 0.2rem 0 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.rcs-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.rcs-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}
.badge-featured { background: #fef9c3; color: #854d0e; border: 1px solid #fde68a; }
.badge-top { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }

/* 2-column body */
.rcs-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.rcs-body-reverse { direction: rtl; }
.rcs-body-reverse > * { direction: ltr; }

/* Gallery */
.rcs-gallery { display: flex; flex-direction: column; gap: 0.75rem; }
.rcs-main-figure {
    position: relative;
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gray-100);
    box-shadow: var(--shadow);
}
.rcs-main-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
    transition: opacity 0.2s;
}
.rcs-main-img.is-fading { opacity: 0.5; }
.rcs-gallery-btn { bottom: 0.75rem; right: 0.75rem; }

.rcs-thumbs {
    display: flex;
    gap: 0.6rem;
}
.rcs-thumb {
    flex: 1;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    background: none;
    aspect-ratio: 4/3;
    transition: border-color 0.15s;
}
.rcs-thumb:hover, .rcs-thumb.is-active { border-color: var(--teal-500); }
.rcs-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Info */
.rcs-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.rcs-description { line-height: 1.75; color: var(--gray-700); margin-bottom: 1.5rem; }

.rcs-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}
.rcs-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-700);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.75rem;
}
.rental-caravan-alt .rcs-features li { background: var(--white); }
.rcs-features li svg { color: var(--teal-500); flex-shrink: 0; }

/* Price & CTA */
.rcs-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
    flex-wrap: wrap;
}
.rcs-price { display: flex; align-items: baseline; gap: 0.3rem; }
.rcs-price-amount { font-size: 1.75rem; font-weight: 700; color: var(--teal-700); font-family: var(--font-display); }
.rcs-price-unit { color: var(--gray-500); font-size: 0.9rem; }
.rcs-cta-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Section divider */
.rental-section-divider {
    height: 40px;
    overflow: hidden;
    color: var(--gray-50);
    line-height: 0;
}
.rental-caravan-alt + .rental-section-divider { color: var(--white); }
.rental-section-divider svg { width: 100%; height: 100%; display: block; }

/* Responsive */
@media (max-width: 900px) {
    .rcs-body, .rcs-body-reverse { grid-template-columns: 1fr; direction: ltr; }
    .rcs-cta { flex-direction: column; align-items: flex-start; }
    .rental-summary-stat { padding: 0 1.25rem; }
    .rcs-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .rcs-name { font-size: 1.5rem; }
    .rcs-number { font-size: 2.5rem; }
    .rcs-features { grid-template-columns: 1fr; }
    .rental-summary-inner { flex-wrap: wrap; gap: 0.5rem; }
    .rental-summary-sep { display: none; }
    .rcs-cta-btns { width: 100%; }
    .rcs-cta-btns .btn { flex: 1; text-align: center; }
}

/* Kiralık karavanlar sayfası */
.rental-hero {
    margin-top: var(--header-h);
    min-height: 55vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.rental-intro {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.rental-intro h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--teal-900);
    margin-bottom: 1rem;
}

.rental-features {
    list-style: none;
    margin-top: 1.5rem;
}

.rental-features li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    color: var(--gray-600);
}

.rental-features li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--teal-500);
    font-size: 0.65rem;
    top: 0.65rem;
}

.rental-intro-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
    object-fit: cover;
}

.boxer-gallery-full {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.boxer-gallery-full .gallery-item {
    aspect-ratio: 4/3;
}

.gallery-page-section { padding-top: 2rem; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 30, 35, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox[hidden] { display: none !important; }

.lightbox img {
    max-width: min(1200px, 92vw);
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
}

.lightbox-caption {
    color: rgba(255, 255, 255, 0.85);
    margin-top: 1rem;
    font-size: 0.95rem;
    text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--white);
    font-size: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.feature-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--teal-900);
    margin-bottom: 0.75rem;
}

/* CTA */
.cta-section { padding-bottom: 6rem; }
.cta-box {
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    padding: 4rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p { opacity: 0.9; margin-bottom: 2rem; }

/* ============================================================
   CAMPERLOGY-STYLE CARAVAN DETAIL PAGE
   ============================================================ */

/* Breadcrumb */
.cl-breadcrumb-wrap {
    margin-top: var(--header-h);
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 0.65rem 0;
}

/* Gallery grid (2-column: main + side 2x2) */
.cl-gallery-wrap {
    background: #111;
}
.cl-gallery-grid-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.52fr;
    grid-template-rows: auto;
    gap: 3px;
    position: relative;
    height: 480px;
}
.cl-gallery-main-cell {
    margin: 0;
    overflow: hidden;
    height: 100%;
}
.cl-gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: opacity 0.2s;
}
.cl-gallery-main-img.is-fading { opacity: 0.6; }

.cl-gallery-side-cells {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    height: 100%;
}
.cl-gallery-side-cell {
    position: relative;
    overflow: hidden;
    padding: 0;
    border: none;
    cursor: pointer;
    background: #222;
    height: 100%;
}
.cl-gallery-side-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s;
}
.cl-gallery-side-cell:hover img { transform: scale(1.04); }
.cl-gallery-more {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    pointer-events: none;
}

.cl-gallery-all-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: #fff;
    color: #111;
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    transition: background 0.15s;
    z-index: 5;
}
.cl-gallery-all-btn:hover { background: var(--gray-100); }

/* Two-column detail layout */
.cl-detail-wrap { padding: 2rem 0 4rem; }
.cl-detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

/* LEFT: main content */
.cl-detail-header { margin-bottom: 1.5rem; }
.cl-detail-title {
    font-size: 2rem;
    font-family: var(--font-display);
    color: var(--teal-900);
    margin: 0.35rem 0 0.75rem;
    line-height: 1.2;
}
.cl-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.cl-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--gray-100);
    border-radius: 999px;
    padding: 0.3rem 0.85rem;
    font-size: 0.85rem;
    color: var(--teal-800);
    font-weight: 500;
}

/* Tabs */
.cl-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 1.75rem;
    overflow-x: auto;
    scrollbar-width: none;
}
.cl-tabs::-webkit-scrollbar { display: none; }
.cl-tab {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
    font-family: inherit;
}
.cl-tab:hover { color: var(--teal-700); }
.cl-tab.is-active {
    color: var(--teal-600);
    border-bottom-color: var(--teal-600);
    font-weight: 600;
}

.cl-tabs--pills {
    border-bottom: none;
    gap: 0.45rem;
    padding-bottom: 0.25rem;
    flex-wrap: nowrap;
}
.cl-tabs--pills .cl-tab {
    border-bottom: none;
    margin-bottom: 0;
    padding: 0.55rem 1rem;
    font-size: 0.88rem;
    border-radius: 999px;
    background: var(--gray-100);
    color: var(--gray-700);
}
.cl-tabs--pills .cl-tab:hover {
    background: var(--gray-200);
    color: var(--teal-800);
}
.cl-tabs--pills .cl-tab.is-active {
    background: var(--teal-500);
    color: #fff;
    font-weight: 600;
}
.cl-tab-panel { display: none; }
.cl-tab-panel.is-active { display: block; }

.cl-section-title {
    font-size: 1.2rem;
    font-family: var(--font-display);
    color: var(--teal-900);
    margin: 0 0 1rem;
}
.cl-muted { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 1rem; }
.cl-description { line-height: 1.8; color: var(--gray-700); }

/* Specs grid */
.cl-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.cl-spec-item {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.cl-spec-label { font-size: 0.8rem; color: var(--gray-500); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; }
.cl-spec-val { font-size: 1.05rem; font-weight: 600; color: var(--teal-900); }

/* Features grid */
.cl-features-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
.cl-feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--gray-700);
    padding: 0.6rem 0.75rem;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
}
.cl-feature-item svg { color: var(--teal-500); flex-shrink: 0; }

.cl-features-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.cl-spec-block {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.cl-spec-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cl-spec-table {
    margin: 0;
    display: grid;
    gap: 0;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.cl-spec-table-row {
    display: grid;
    grid-template-columns: minmax(140px, 42%) 1fr;
    gap: 1rem;
    padding: 0.85rem 1.1rem;
    border-bottom: 1px solid var(--gray-200);
    background: #fff;
}

.cl-spec-table-row:nth-child(even) {
    background: var(--gray-50);
}

.cl-spec-table-row:last-child {
    border-bottom: none;
}

.cl-spec-table dt {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-600);
}

.cl-spec-table dd {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--teal-900);
}

.cl-spec-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--teal-800);
    margin: 1.25rem 0 0.75rem;
}

.cl-beds-block {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cl-bed-card {
    flex: 1 1 220px;
    padding: 0.85rem 1rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.cl-bed-card strong {
    color: var(--teal-900);
    font-size: 0.95rem;
}

.cl-price-highlight {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 1rem 1.15rem;
    background: linear-gradient(135deg, #ecfdf5, #f0fdfa);
    border: 1px solid #a7f3d0;
    border-radius: var(--radius-sm);
}
.cl-price-highlight-label { font-size: 0.9rem; color: var(--gray-600); }
.cl-price-highlight-val { font-size: 1.5rem; color: var(--teal-800); }

.cl-cancel-details {
    margin-top: 1.5rem;
    font-size: 0.9rem;
}
.cl-cancel-details summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--teal-700);
}
.cl-cancel-policy--compact {
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
}
.cl-cancel-policy--compact p { margin: 0.35rem 0; }

.cl-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}
.cl-photo-grid-item {
    border: none;
    padding: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    background: var(--gray-100);
}
.cl-photo-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.2s;
}
.cl-photo-grid-item:hover img { transform: scale(1.03); }

.cl-reviews-summary {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}
.cl-reviews-score-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal-900);
    line-height: 1;
}
.cl-reviews-stars,
.cl-review-stars {
    color: #fbbf24;
    letter-spacing: 0.05em;
}
.cl-reviews-stars span,
.cl-review-stars span { opacity: 0.35; }
.cl-reviews-stars span.is-filled,
.cl-review-stars span.is-filled { opacity: 1; }

.cl-reviews-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.cl-review-card {
    padding: 1rem 1.15rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: #fff;
}
.cl-review-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
    margin-bottom: 0.5rem;
}
.cl-review-author { color: var(--teal-900); }
.cl-review-date {
    margin-left: auto;
    font-size: 0.85rem;
    color: var(--gray-500);
}
.cl-review-text {
    margin: 0;
    line-height: 1.65;
    color: var(--gray-700);
}

/* Campaigns */
.cl-campaigns {
    background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
    border: 1px solid #a7f3d0;
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin-top: 1.5rem;
}
.cl-campaigns-title { font-weight: 600; margin-bottom: 0.5rem; color: var(--teal-800); }
.cl-campaigns ul { list-style: none; padding: 0; margin: 0; }
.cl-campaigns li { display: flex; align-items: center; gap: 0.75rem; padding: 0.35rem 0; font-size: 0.9rem; }
.cl-campaigns li span { margin-left: auto; font-weight: 600; color: var(--teal-700); }

/* Cancel policy */
.cl-cancel-policy { display: flex; flex-direction: column; gap: 1rem; }
.cl-cancel-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
}
.cl-cancel-item p { margin: 0.25rem 0 0; font-size: 0.9rem; color: var(--gray-600); }
.cl-cancel-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}
.cl-cancel-free { background: #f0fdf4; border-color: #bbf7d0; }
.cl-cancel-free .cl-cancel-icon { background: #22c55e; color: #fff; }
.cl-cancel-partial { background: #fffbeb; border-color: #fde68a; }
.cl-cancel-partial .cl-cancel-icon { background: #f59e0b; color: #fff; }
.cl-cancel-none { background: #fef2f2; border-color: #fecaca; }
.cl-cancel-none .cl-cancel-icon { background: #ef4444; color: #fff; }

/* RIGHT: Booking widget */
.cl-booking-aside { position: relative; }
.cl-booking-widget {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    padding: 1.5rem;
    overflow: visible;
}
.cl-bw-price {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}
.cl-bw-amount { font-size: 1.75rem; font-weight: 700; color: var(--teal-700); font-family: var(--font-display); }
.cl-bw-unit { color: var(--gray-500); font-size: 0.95rem; }

/* Date picker */
.cl-bw-dates { margin-bottom: 1rem; }
.cl-bw-date-field {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 0;
    background: var(--white);
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.15s;
}
.cl-bw-date-field:hover, .cl-bw-date-field:focus-visible { border-color: var(--teal-500); outline: none; }
.cl-bw-date-item {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 1rem;
    text-align: left;
}
.cl-bw-date-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-600); }
.cl-bw-date-val { font-size: 0.9rem; font-weight: 500; color: var(--teal-900); margin-top: 0.2rem; }
.cl-bw-date-sep { width: 1px; height: 40px; background: var(--gray-200); }

/* Calendar popup in widget */
.cl-bw-calendar-popup {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--gray-50);
}
.cl-bw-cal-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-200);
}
.btn-text {
    background: none;
    border: none;
    color: var(--gray-600);
    cursor: pointer;
    font-size: 0.875rem;
    text-decoration: underline;
    font-family: inherit;
    padding: 0;
}
.btn-text:hover { color: var(--teal-700); }
.btn.btn-sm { padding: 0.4rem 1rem; font-size: 0.875rem; }

/* Guests */
.cl-bw-guests {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}
.cl-bw-guests-label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--gray-700); font-weight: 500; }
.cl-bw-guests-ctrl { display: flex; align-items: center; gap: 0.75rem; }
.cl-bw-guests-btn {
    width: 30px; height: 30px;
    border: 1.5px solid var(--gray-300);
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--teal-700);
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.15s;
}
.cl-bw-guests-btn:hover { border-color: var(--teal-500); }
#guestsDisplay { font-weight: 600; min-width: 1.5rem; text-align: center; }

/* Price breakdown */
.cl-bw-breakdown {
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-bottom: 1rem;
}
.cl-bw-bd-row { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--gray-700); margin-bottom: 0.5rem; }
.cl-bw-bd-total { display: flex; justify-content: space-between; font-size: 1.05rem; padding-top: 0.5rem; border-top: 1px solid var(--gray-200); }

.cl-bw-hint {
    margin: 0 0 0.65rem;
    padding: 0.55rem 0.75rem;
    font-size: 0.82rem;
    line-height: 1.4;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.cl-bw-hint.is-error {
    color: #b91c1c;
    background: #fef2f2;
    border-color: #fecaca;
}

.cl-bw-hint.is-ok {
    color: #0f766e;
    background: #f0fdfa;
    border-color: #99f6e4;
}

.cl-bw-submit { width: 100%; margin-bottom: 0.5rem; }
.cl-bw-submit.is-disabled {
    opacity: 0.55;
    cursor: pointer;
    filter: grayscale(0.15);
}
.cl-bw-submit:not(.is-disabled) {
    opacity: 1;
    cursor: pointer;
}
.cl-bw-note { text-align: center; font-size: 0.8rem; color: var(--gray-500); margin: 0; }

/* WhatsApp contact */
.cl-bw-contact { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--gray-200); }
.cl-bw-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem;
    background: #25d366;
    color: #fff;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.15s;
}
.cl-bw-whatsapp:hover { background: #1ebe5d; }

/* Similar caravans */
.cl-similar-section { background: var(--gray-50); padding: 3rem 0; border-top: 1px solid var(--gray-200); }
.cl-similar-title { font-size: 1.5rem; font-family: var(--font-display); color: var(--teal-900); margin-bottom: 1.5rem; }
.cl-similar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.cl-similar-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    display: block;
}
.cl-similar-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.cl-similar-img-wrap { aspect-ratio: 4/3; overflow: hidden; background: var(--gray-100); }
.cl-similar-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.25s; }
.cl-similar-card:hover .cl-similar-img-wrap img { transform: scale(1.04); }
.cl-similar-info { padding: 1rem; }
.cl-similar-category { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--teal-600); font-weight: 600; }
.cl-similar-info h3 { font-size: 1rem; margin: 0.25rem 0 0.5rem; color: var(--teal-900); }
.cl-similar-meta { display: flex; gap: 0.75rem; font-size: 0.8rem; color: var(--gray-500); }
.cl-similar-price { margin: 0.5rem 0 0; font-size: 1.05rem; font-weight: 700; color: var(--teal-700); }
.cl-similar-price small { font-size: 0.8rem; font-weight: 400; color: var(--gray-500); }

/* Lightbox */
.cl-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.cl-lightbox.is-open { display: flex; }
.cl-lb-inner { position: relative; max-width: 90vw; max-height: 75vh; display: flex; flex-direction: column; align-items: center; }
.cl-lb-img { max-width: 90vw; max-height: 70vh; object-fit: contain; border-radius: var(--radius-sm); }
.cl-lb-counter { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 0.75rem; }
.cl-lb-close, .cl-lb-prev, .cl-lb-next {
    position: fixed;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    width: 44px; height: 44px;
    font-size: 1.5rem;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
    z-index: 10000;
}
.cl-lb-close { top: 1.25rem; right: 1.25rem; }
.cl-lb-prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.cl-lb-next { right: 1.25rem; top: 50%; transform: translateY(-50%); }
.cl-lb-close:hover, .cl-lb-prev:hover, .cl-lb-next:hover { background: rgba(255,255,255,0.3); }
.cl-lb-thumbs {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    overflow-x: auto;
    max-width: 90vw;
    scrollbar-width: thin;
}
.cl-lb-thumb {
    width: 64px; height: 48px;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}
.cl-lb-thumb.is-active { border-color: var(--teal-400); }
.cl-lb-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Responsive */
@media (max-width: 1100px) {
    .cl-detail-layout { grid-template-columns: 1fr 320px; gap: 2rem; }
    .cl-specs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .cl-gallery-grid-layout { height: 320px; }
    .cl-detail-layout { grid-template-columns: 1fr; }
    .cl-booking-widget { position: static; }
    .cl-booking-aside { order: -1; }
    .cl-similar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .cl-gallery-grid-layout { height: 240px; grid-template-columns: 1fr; }
    .cl-gallery-side-cells { display: none; }
    .cl-detail-title { font-size: 1.5rem; }
    .cl-specs-grid { grid-template-columns: 1fr 1fr; }
    .cl-features-grid { grid-template-columns: 1fr; }
    .cl-features-grid--3 { grid-template-columns: 1fr; }
    .cl-spec-table-row { grid-template-columns: 1fr; gap: 0.25rem; }
    .cl-photo-grid { grid-template-columns: repeat(2, 1fr); }
    .cl-review-date { margin-left: 0; width: 100%; }
    .cl-similar-grid { grid-template-columns: 1fr; }
}

/* Detail page (legacy) */
.detail-hero {
    margin-top: var(--header-h);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    padding: 3rem 4%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Karavan detay galerisi */
.caravan-gallery {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    min-width: 0;
}

.caravan-gallery-main {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gray-100);
    box-shadow: var(--shadow);
}

.caravan-gallery-main-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s ease;
}

.caravan-gallery-main-img.is-fading {
    opacity: 0.55;
}

.caravan-gallery-thumbs {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.65rem;
    width: 100%;
}

.caravan-gallery-thumb {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    background: none;
    aspect-ratio: 4 / 3;
    height: auto;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.caravan-gallery-thumb:hover,
.caravan-gallery-thumb:focus-visible {
    border-color: var(--teal-400);
    outline: none;
    transform: translateY(-1px);
}

.caravan-gallery-thumb.is-active {
    border-color: var(--teal-500);
    box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.35);
}

.caravan-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

@media (max-width: 640px) {
    .caravan-gallery-thumbs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .caravan-gallery-thumb {
        flex: 1 1 calc(50% - 0.25rem);
        min-width: calc(50% - 0.25rem);
    }

    .caravan-gallery-main-img {
        aspect-ratio: 4 / 3;
    }
}

.detail-info h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--teal-900);
    margin: 0.5rem 0 1rem;
}

.detail-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.detail-desc { margin-bottom: 1.5rem; line-height: 1.8; }

.detail-desc-rich p { margin: 0 0 0.75rem; }
.detail-desc-rich ul,
.detail-desc-rich ol { margin: 0 0 0.75rem 1.25rem; }
.detail-desc-rich h2,
.detail-desc-rich h3 { margin: 1rem 0 0.5rem; color: var(--teal-900); }

.feature-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature-list li {
    background: var(--gray-100);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--teal-800);
}

.price-box {
    background: var(--gradient);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.price-box strong { font-size: 1.8rem; display: block; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.gallery-grid img {
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

/* Auth */
.auth-section {
    margin-top: var(--header-h);
    min-height: calc(100vh - var(--header-h));
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.auth-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: var(--white);
}

.auth-card h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--teal-900);
    margin: 0.5rem 0;
}

.auth-visual {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.auth-footer { margin-top: 1.5rem; text-align: center; color: var(--gray-600); }

/* Forms */
.form label {
    display: block;
    margin-bottom: 1.25rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gray-800);
}

.form input,
.form textarea,
.form select {
    width: 100%;
    margin-top: 0.4rem;
    padding: 0.85rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    outline: none;
    border-color: var(--teal-500);
}

/* Reservation */
.reservation-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.calendar-panel,
.booking-panel {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.calendar-widget { margin-top: 1rem; }

.cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cal-header button {
    background: var(--gray-100);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--teal-800);
}

.cal-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--teal-900);
}

.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    background: transparent;
    font-family: inherit;
    transition: all 0.15s;
}

.cal-day:hover:not(.disabled):not(.booked) { background: var(--gray-100); }
.cal-day.empty { cursor: default; }
.cal-day.disabled { color: #ccc; cursor: not-allowed; }
.cal-day.booked { background: #fde8e8; color: #c44; cursor: not-allowed; }
.cal-day.in-range { background: rgba(34,168,182,0.2); color: var(--teal-800); }
.cal-day.selected-start,
.cal-day.selected-end { background: var(--teal-600); color: var(--white); font-weight: 700; }

.calendar-legend {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.calendar-legend .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 0.35rem;
    vertical-align: middle;
}
.dot.available { background: var(--gray-100); border: 1px solid var(--gray-200); }
.dot.booked { background: #fde8e8; }
.dot.selected { background: var(--teal-600); }

.rez-no-availability {
    margin: 2rem 0;
    padding: 2rem;
    border-radius: var(--radius-md);
    background: #fff5f5;
    border: 1px solid #fecaca;
    text-align: center;
}

.rez-caravan-picker {
    margin: 2rem 0 3rem;
}

.rez-picker-head {
    margin-bottom: 1.5rem;
}

.rez-picker-head h2 {
    margin: 0 0 0.35rem;
    font-size: 1.5rem;
}

.rez-picker-grid {
    margin-top: 0;
}

.rez-picker-card .card-footer .price small {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.booking-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
}

.date-display {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: var(--gray-50);
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    text-align: center;
}

.date-display small { display: block; color: var(--gray-600); font-size: 0.75rem; }

.booking-campaigns {
    margin: 1rem 0;
    padding: 0.85rem 1rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
}

.booking-campaigns-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--teal-700);
    margin: 0 0 0.5rem;
}

.booking-campaigns ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.booking-campaigns li {
    font-size: 0.88rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.booking-campaigns li:last-child { border-bottom: none; }

.booking-campaigns li span {
    display: block;
    color: var(--gray-600);
    font-size: 0.8rem;
    margin-top: 0.15rem;
}
.price-highlight { color: var(--teal-700); font-size: 1.1rem; }

/* Tables */
.table-wrap { overflow-x: auto; margin-top: 1.5rem; }
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.data-table th,
.data-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
}

.data-table th {
    background: var(--teal-900);
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
}

.status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}
.status-pending { background: #fff3cd; color: #856404; }
.status-confirmed { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    margin: 1rem auto;
    width: min(1200px, 92%);
    border-radius: var(--radius-sm);
    font-weight: 500;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Footer */
.site-footer {
    background: var(--teal-900);
    color: rgba(255,255,255,0.85);
    padding: 4rem 0 0;
    margin-top: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.seo-internal-links__title {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    font-weight: 700;
}

.seo-internal-links__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.seo-internal-links__list a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    text-decoration: none;
}

.seo-internal-links__list a:hover {
    color: var(--gold-300, #e8c97a);
    text-decoration: underline;
}

.site-footer h3,
.site-footer h4 {
    font-family: var(--font-display);
    color: var(--white);
    margin-bottom: 1rem;
}

.site-footer a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
}
.site-footer a:hover { color: var(--teal-300); }

.footer-logo-link {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.85rem 1.25rem;
    border-radius: 14px;
    margin-bottom: 1.25rem;
    line-height: 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease;
}

.footer-logo-link:hover {
    transform: translateY(-2px);
}

.footer-logo-image {
    height: 88px;
    width: auto;
    max-width: 320px;
    display: block;
    object-fit: contain;
}

.footer-map-section {
    padding-bottom: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 0.5rem;
    padding-top: 2rem;
}

.footer-map-section h4 {
    margin-bottom: 0.35rem;
}

.footer-map-address {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-map-wrap {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.2);
}

.footer-map-iframe {
    min-height: 220px;
}

.footer-map-actions {
    margin-top: 1rem;
    justify-content: flex-start;
}

.footer-map-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--white);
}

.footer-map-actions .btn-outline:hover {
    border-color: var(--teal-300);
    color: var(--teal-300);
    background: transparent;
}

@media (max-width: 768px) {
    .footer-map-iframe {
        min-height: 200px;
    }

    .footer-map-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-map-actions .btn {
        width: 100%;
        text-align: center;
    }

    .footer-logo-image {
        height: 72px;
        max-width: min(280px, 90vw);
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

.muted { color: var(--gray-600); }
.text-center { text-align: center; }
.mt-lg { margin-top: 2rem; }

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.rounded-image { border-radius: var(--radius); box-shadow: var(--shadow); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--teal-500);
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.contact-map-section {
    padding-top: 0;
}

.contact-map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--seafoam);
    background: var(--white);
}

.contact-map-iframe {
    display: block;
    width: 100%;
    min-height: 320px;
}

.contact-map-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
    justify-content: center;
}

.contact-card a {
    color: var(--teal-700);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-card-whatsapp .btn-whatsapp {
    margin-top: 0.75rem;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    border: none;
}

.btn-whatsapp:hover {
    background: #1ebe57;
    color: #fff;
}

.contact-form-wa {
    margin-top: 1rem;
    margin-bottom: 0;
}

.contact-form-wa a {
    color: #128c7e;
    font-weight: 600;
}

.footer-whatsapp {
    color: #5eead4;
    font-weight: 600;
}

.footer-whatsapp:hover {
    color: #99f6e4;
}

.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 925;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1.15rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.55);
    z-index: -1;
    animation: whatsapp-pulse 1.8s ease-out infinite;
}

.whatsapp-float-bounce {
    animation: whatsapp-bounce 1.4s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.65);
    color: #fff;
    animation-play-state: paused;
}

.whatsapp-float-icon {
    font-size: 1.25rem;
    line-height: 1;
    display: inline-flex;
    animation: whatsapp-wiggle 1.4s ease-in-out infinite;
}

.whatsapp-float-icon svg {
    display: block;
}

@keyframes whatsapp-bounce {
    0%, 100% { transform: translateY(0); }
    25%      { transform: translateY(-10px); }
    50%      { transform: translateY(0); }
    75%      { transform: translateY(-5px); }
}

@keyframes whatsapp-wiggle {
    0%, 100% { transform: rotate(0deg); }
    20%      { transform: rotate(-12deg); }
    40%      { transform: rotate(10deg); }
    60%      { transform: rotate(-6deg); }
    80%      { transform: rotate(4deg); }
}

@keyframes whatsapp-pulse {
    0%   { transform: scale(1);    opacity: 0.6; }
    70%  { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(1.35); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-float-bounce,
    .whatsapp-float-icon,
    .whatsapp-float::before {
        animation: none;
    }
}

@media (max-width: 640px) {
    .whatsapp-float {
        font-size: 0.75rem;
        padding: 0.7rem 0.95rem;
        right: 1rem;
        bottom: 1rem;
    }
}

@media (max-width: 420px) {
    .whatsapp-float-text {
        display: none;
    }
    .whatsapp-float {
        padding: 0.85rem;
        border-radius: 50%;
        gap: 0;
    }
}

.empty-state {
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius);
}

.error-section h1 {
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--teal-300);
}

/* ——— Responsive — Tablet & Mobile ——— */
@media (max-width: 1100px) {
    .container { width: min(1200px, 94%); }
}

@media (max-width: 992px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .detail-hero { grid-template-columns: 1fr; }
    .reservation-grid { grid-template-columns: 1fr; }
    .masonry-gallery { columns: 2; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .content-grid, .contact-grid { grid-template-columns: 1fr; }
    .rental-intro { grid-template-columns: 1fr; }
    .auth-section { grid-template-columns: 1fr; }
    .auth-visual { min-height: 200px; }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .seo-intro-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1100px) {
    .main-nav {
        gap: 0.35rem;
    }

    .main-nav .nav-btn {
        padding: 0.4rem 0.65rem;
        font-size: 0.72rem;
    }

    .header-actions .btn {
        padding: 0.5rem 0.85rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 900px) {
    .header-actions .btn-primary {
        padding: 0.5rem 0.75rem;
        font-size: 0.78rem;
    }
}

@media (max-width: 992px) {
    :root {
        --header-h: 92px;
        --logo-h: 82px;
        --logo-max-w: 360px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        max-width: none;
        margin: 0;
        padding: 1rem 1.25rem 1.25rem;
        gap: 0.5rem;
        box-shadow: var(--shadow);
        border-top: 1px solid var(--gray-100);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav .nav-btn {
        width: 100%;
        justify-content: center;
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
    }

    .nav-toggle {
        display: block;
    }

    .header-actions .btn-ghost {
        display: none;
    }

    .site-header {
        position: fixed;
    }

    .site-header .header-inner {
        height: var(--header-h);
        min-height: var(--header-h);
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 88px;
        --logo-h: 76px;
        --logo-max-w: min(360px, 88vw);
    }

    .logo-text {
        max-width: 7rem;
        font-size: 1.1rem;
    }

    .hero {
        margin-top: var(--header-h);
        min-height: auto;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .hero-content {
        padding: 1.5rem 0 2rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-caravan-picker { grid-template-columns: 1fr; }
    .hero-booking-fields { grid-template-columns: 1fr; }
    .hero-booking-total { text-align: center; }
    .hero-booking-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-booking-submit {
        width: 100%;
        max-width: none;
    }
    .hero h1 { font-size: clamp(1.5rem, 6.5vw, 2.25rem); }
    .hero p { font-size: 0.95rem; margin-bottom: 1rem; }

    .container {
        width: min(1200px, 100%);
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
        box-sizing: border-box;
    }

    .stats-grid { grid-template-columns: 1fr 1fr; }
    .masonry-gallery { columns: 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .card-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    h1 { font-size: clamp(1.5rem, 6vw, 2.25rem) !important; }
    h2 { font-size: clamp(1.25rem, 4.5vw, 1.75rem) !important; }
    .hero-content { padding-top: 1rem; padding-bottom: 1.5rem; }
    .section { padding: 3rem 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-card { padding: 1.25rem 1rem; }
    .stat-card strong { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .btn-lg { padding: 0.9rem 1.5rem; font-size: 1rem; }
    .hero-actions { flex-direction: column; gap: 0.75rem; }
    .hero-actions .btn { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
    :root {
        --header-h: 84px;
        --logo-h: 72px;
        --logo-max-w: min(340px, 92vw);
    }

    .header-actions .btn-primary {
        padding: 0.45rem 0.7rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 400px) {
    .container { width: 96%; }
}
