/* ==========================================================================
   Bodrum Marin - Main Stylesheet
   Based on Prestige Yachts design reference
   ========================================================================== */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Ampersand (&) fix: Playfair Display renders & as a calligraphic glyph.
   Override just U+0026 with a system font so it looks like a normal ampersand. */
@font-face {
    font-family: 'Playfair Amp';
    src: local('Segoe UI'), local('Helvetica Neue'), local('Arial'), local('sans-serif');
    unicode-range: U+26;
    font-weight: 100 900;
    font-style: normal;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Amp', 'Playfair Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.2;
}

a { color: inherit; text-decoration: none; transition: color .3s, opacity .3s; }
a:hover { opacity: .85; }

img { max-width: 100%; height: auto; }

.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;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-4 { flex: 0 0 33.333%; max-width: 33.333%; padding: 0 15px; }
.col-md-6 { flex: 0 0 50%; max-width: 50%; padding: 0; }
.col { flex: 1 0 0%; }

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid;
    transition: all .3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}
.btn-primary:hover { background: #333; border-color: #333; opacity: 1; }

.btn-primary.btn-inversed {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.btn-primary.btn-inversed:hover { background: #fff; color: #1a1a1a; }

.btn-tertiary {
    background: transparent;
    color: #fff;
    border-color: #fff;
    font-size: 10px;
    padding: 10px 25px;
}
.btn-tertiary:hover { background: rgba(255,255,255,.15); opacity: 1; }

.btn-model {
    display: inline-block;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
    border: 1px solid rgba(255,255,255,.5);
    background: transparent;
    transition: all .3s;
}
.btn-model:hover { border-color: #fff; background: rgba(255,255,255,.15); opacity: 1; }

.btn-model.is-new { border-color: #c9956b; color: #c9956b; }

.btn-block { display: block; width: 100%; text-align: center; }

/* ---------- HEADER / NAVBAR ---------- */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background .4s, box-shadow .4s;
}

#header.scrolled {
    background: rgba(255,255,255,.97);
    box-shadow: 0 2px 20px rgba(0,0,0,.1);
}

.navbar-prestige {
    position: relative;
}

.main-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(15px, 2.1vw, 40px);
    height: 90px;
}

.icons-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    position: relative;
    min-width: clamp(120px, 9.5vw, 180px);
    height: 45px;
}

.brand .logo-img {
    height: 45px;
    width: auto;
    position: absolute;
    left: 0;
    top: 0;
    transition: opacity .4s;
}

.brand .logo-img.logo-sticky {
    opacity: 0;
}

.brand .logo-img.logo-default {
    opacity: 1;
}

#header.scrolled .brand .logo-img.logo-sticky {
    opacity: 1;
}

#header.scrolled .brand .logo-img.logo-default {
    opacity: 0;
}

#header.scrolled #items-container-submenu .menu a {
    color: #1a1a1a;
}

#header.scrolled #items-container-submenu .menu a:hover {
    color: #c9956b;
}

#header.scrolled .navbar-toggle {
    color: #1a1a1a;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    padding: 5px;
}

.navbar-toggle.hide { display: none !important; }

#items-container-submenu {
    display: flex;
    align-items: center;
    flex: 1;
}

#items-container-submenu .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 0;
}

#items-container-submenu .menu a {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: clamp(10px, 0.78vw, 15px);
    font-weight: 500;
    letter-spacing: clamp(0.5px, 0.1vw, 2.5px);
    text-transform: uppercase;
    padding: 30px clamp(5px, 0.85vw, 28px);
    transition: color .3s;
    white-space: nowrap;
}

#items-container-submenu .menu a:hover {
    color: #c9956b;
    opacity: 1;
}

/* Sub-navbar for categories */
.sub-navbar-prestige {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(20,20,20,.97);
    padding: 40px;
    display: none;
    z-index: 999;
    animation: fadeIn .3s ease;
}

.sub-navbar-prestige.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.backToMenu {
    display: none;
    color: #fff;
    cursor: pointer;
    margin-bottom: 20px;
    font-size: 14px;
}
.backToMenu i { margin-right: 8px; }

.model-lines .lines {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.model-lines .line {
    text-align: center;
}

.model-lines .line > a {
    display: block;
    color: #fff;
    margin-bottom: 20px;
}

.model-lines .line > a > div {
    width: 200px;
    height: 80px;
    margin: 0 auto 10px;
}

.model-lines .line > a span {
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-size: 18px;
    letter-spacing: 2px;
}

.model-lines .models div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.model-lines .models a {
    display: inline-block;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,.3);
    transition: all .3s;
}

.model-lines .models a:hover {
    border-color: #fff;
    opacity: 1;
}

.model-lines .models a.is-new { border-color: #c9956b; color: #c9956b; }
.model-lines .models a .new {
    display: inline-block;
    font-size: 8px;
    text-transform: uppercase;
    color: #c9956b;
    vertical-align: super;
    margin-left: 3px;
}

/* ---------- SLIDER ---------- */
#simulator-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

#simulator-slider .slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

#simulator-slider .slide.active {
    opacity: 1;
    z-index: 2;
}

#simulator-slider .default-slide {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

/* Mobile/Web slider visibility */
#simulator-slider .slider-mobile {
    display: none;
}

@media (max-width: 767px) {
    #simulator-slider .slider-mobile {
        display: block;
    }
    #simulator-slider.has-mobile .slider-web {
        display: none;
    }
}

.slider-video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,.1) 100%);
}

.text-header-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 0 60px 80px;
}

.text-header-inner .title {
    color: #fff;
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.text-header-inner .subtitle {
    color: rgba(255,255,255,.85);
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    right: 60px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 15px;
}

.slider-controls button {
    background: none;
    border: 1px solid rgba(255,255,255,.5);
    color: #fff;
    width: 40px; height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    font-size: 14px;
}

.slider-controls button:hover { background: rgba(255,255,255,.15); border-color: #fff; }

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dots .dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: background .3s;
}

.slider-dots .dot.active { background: #fff; }

/* ---------- CATEGORIES SECTION ---------- */
.categories-section {
    padding: 60px 0 80px;
    text-align: center;
}

.categories-section .mainTitle {
    margin-bottom: 0;
}

.categories-section .mainTitle a {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    color: #545759;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: uppercase;
}

.categories-section .baseline {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 6px;
    line-height: 22px;
    color: #a65a49;
    text-transform: uppercase;
    margin: 0;
}

.categories-section hr {
    width: 40px;
    border: none;
    border-top: 2px solid #1a1a1a;
    margin: 20px auto 40px;
}

/* Categories Track (carousel wrapper) */
.categories-track-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 100%;
    padding: 0 30px;
}

.categories-track {
    display: flex;
    gap: 20px;
    transition: transform .5s ease;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}
.categories-track:active { cursor: grabbing; }

.categories-track[data-count="1"] .categories-slide { flex: 0 0 100%; }
.categories-track[data-count="2"] .categories-slide { flex: 0 0 calc(50% - 10px); }
.categories-track[data-count="3"] .categories-slide { flex: 0 0 calc(33.333% - 14px); }
.categories-track:not([data-count="1"]):not([data-count="2"]):not([data-count="3"]) .categories-slide {
    flex: 0 0 calc(33.333% - 14px);
}

.categories-slide {
    min-width: 0;
}

/* Carousel nav buttons */
.cat-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,.5);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s;
}
.cat-nav:hover { background: rgba(0,0,0,.8); }
.cat-prev { left: 5px; }
.cat-next { right: 5px; }

/* Line Item Card */
.line-item {
    position: relative;
    overflow: hidden;
}

.line-item .img-container {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
}

.line-item .img-container::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 100%;
    background: linear-gradient(0deg, #000 5%, transparent 50%);
    pointer-events: none;
}

.line-item .img-container img {
    display: none;
}

.line-item .img-container .image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform .6s ease;
}

.line-item .img-container .placeholder-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.line-item:hover .img-container .image {
    transform: scale(1.05);
}

/* Boat Box Overlay */
.boat-box {
    position: absolute;
    top: 0; bottom: 0;
    left: 0; right: 0;
    z-index: 5;
}

.boat-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Default state - category name at bottom */
.mask-reverse {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    transition: opacity .4s;
    z-index: 2;
}

.mask-reverse .title {
    color: #fff;
    font-size: 22px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    white-space: nowrap;
}

/* Hover state - full overlay with details */
.mask {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,.7);
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
}

.line-item:hover .mask {
    display: flex;
}

.line-item:hover .mask-reverse {
    opacity: 0;
}

.line-item:hover .img-container::after {
    background: none;
}

.mask .title {
    color: #fff;
    font-size: 26px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 30px;
}

.mask .links {
    flex: 1;
    display: flex;
    align-items: center;
}

.mask .links ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.mask .links ul li {
    display: inline-block;
}

.btn-model {
    display: inline-block;
    padding: 4px 8px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 14px;
    margin: 5px 10px;
    text-decoration: none;
    transition: all .3s ease;
    background: transparent;
    position: relative;
}
.btn-model:hover {
    background-color: #a65a49;
    border-color: #a65a49;
    color: #fff;
}
.btn-model.is-new {
    padding-right: 30px;
}

.btn-model .new {
    position: absolute;
    right: 4px;
    top: 4px;
    font-size: 8px;
    text-transform: uppercase;
    color: #c9956b;
}

.mask .btn-primary.btn-inversed {
    background-color: #a65a49;
    border-color: #a65a49;
    color: #fff;
    display: block;
    width: 100%;
    padding: 14px 30px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s ease;
}
.mask .btn-primary.btn-inversed:hover {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

@media (max-width: 991px) {
    .categories-track[data-count="3"] .categories-slide,
    .categories-track:not([data-count="1"]):not([data-count="2"]):not([data-count="3"]) .categories-slide {
        flex: 0 0 calc(50% - 10px);
    }
}
@media (max-width: 767px) {
    .line-item .img-container { height: 320px; }
    .categories-section { padding: 40px 0 50px; }
    .categories-track .categories-slide { flex: 0 0 100% !important; }
    .categories-track { gap: 10px; }
    .mask .title { font-size: 20px; margin-top: 15px; }
    .mask .btn-primary.btn-inversed { padding: 10px 20px; }
}

/* ---------- LIFESTYLE SECTION ---------- */
.section-lifestyle {
    padding: 80px 0;
    background: #f5f5f3;
}

.section-lifestyle .container > .baseline {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #c9956b;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}

.section-lifestyle .container > h2 {
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 400;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
}

.sub-block-lifestyle {
    display: grid;
    grid-template-columns: 55fr 45fr;
    grid-template-rows: auto auto auto auto auto;
    gap: 0;
    column-gap: 30px;
    margin-bottom: 40px;
}

.sub-block-lifestyle .block-1-img {
    grid-column: 1;
    grid-row: 1 / 5;
}

.sub-block-lifestyle .block-1-txt {
    grid-column: 1;
    grid-row: 5 / 6;
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    background: #f5f5f3;
}

.sub-block-lifestyle .block-2-img {
    grid-column: 2;
    grid-row: 1 / 2;
}

.sub-block-lifestyle .block-2-txt {
    grid-column: 2;
    grid-row: 2 / 3;
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    background: #f5f5f3;
}

.sub-block-lifestyle .block-3-img {
    grid-column: 2;
    grid-row: 3 / 4;
}

.sub-block-lifestyle .block-3-txt {
    grid-column: 2;
    grid-row: 4 / 5;
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    background: #f5f5f3;
}

.sub-block-lifestyle a {
    display: block;
    overflow: hidden;
}

.sub-block-lifestyle .img-container {
    width: 100%;
    background-size: cover;
    background-position: center;
    min-height: 250px;
    transition: transform .6s;
}

.sub-block-lifestyle .img-container.height-100 { min-height: 500px; height: 100%; }
.sub-block-lifestyle .img-container.height-50 { min-height: 250px; }

.sub-block-lifestyle a:hover .img-container { transform: scale(1.03); }

.sub-block-lifestyle .title {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9956b;
    margin-bottom: 15px;
}

.sub-block-lifestyle p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.section-lifestyle .container > div:last-child {
    text-align: center;
}

/* ---------- BANNER SECTIONS ---------- */
.banner {
    padding: 100px 0;
    text-align: center;
}

.banner.backgroundImage {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    position: relative;
}

.banner.backgroundImage::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.4);
}

.banner.backgroundImage .container {
    position: relative;
    z-index: 1;
}

.banner.backgroundImage h2 {
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.banner.backgroundImage p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 15px;
    line-height: 1.8;
    opacity: .9;
}

.banner.backgroundImage .btn {
    display: inline-block;
    margin-top: 10px;
}

.banner.backgroundWhite {
    background: #fff;
    color: #1a1a1a;
}

.banner.backgroundWhite .baseline {
    font-size: 11px;
    letter-spacing: 4px;
    color: #c9956b;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.banner.backgroundWhite h2 {
    font-size: clamp(28px, 3.5vw, 38px);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.banner.backgroundWhite hr {
    width: 40px;
    border: none;
    border-top: 2px solid #1a1a1a;
    margin: 0 auto 30px;
}

.banner.backgroundWhite p, .banner.backgroundWhite div > p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* ---------- ACTIONS SECTION ---------- */
#actions {
    padding: 0 40px;
    margin-bottom: 80px;
}

#actions .row {
    margin: 0;
    gap: 30px;
    display: flex;
}

#actions .col-md-6 {
    padding: 0;
    flex: 1;
}

.action {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.action a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.action .img-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.action .img-container .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.action:hover .img-container .image {
    transform: scale(1.05);
}

.action .mask {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 40px 40px 35px;
    background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
}

.action .mask .title {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: clamp(24px, 2.5vw, 34px);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.action .mask p {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    max-width: 500px;
    margin: 0;
}

.action .mask,
.action .mask * {
    color: #fff !important;
}

/* ---------- BRAND LOGOS CAROUSEL ---------- */
.section-brands {
    padding: 70px 0;
    background: #fff;
    overflow: hidden;
}

.section-brands-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.section-brands .brands-baseline {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #a65a49;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-brands .brands-title {
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 16px;
}

.section-brands .brands-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: #545759;
    margin: 0;
}

.brands-carousel {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: brandsScroll 30s linear infinite;
}

.brands-track:hover {
    animation-play-state: paused;
}

.brands-slide {
    flex-shrink: 0;
}

.brands-slide a,
.brands-slide span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.brands-slide img {
    max-height: 55px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter .3s ease, opacity .3s ease;
}

.brands-slide a:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes brandsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .section-brands { padding: 50px 0; }
    .brands-track { gap: 40px; animation-duration: 20s; }
    .brands-slide img { max-height: 40px; max-width: 120px; }
    .brands-slide a,
    .brands-slide span { height: 45px; }
}

/* ---------- NEWSLETTER / PRE-FOOTER ---------- */
.footer-prestige {
    color: #545759;
}

.footer-prestige .pre-footer {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3.5rem 4rem;
    width: 85%;
    margin: 0 auto;
}

.footer-prestige .pre-footer h2 {
    color: #a65a49;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    letter-spacing: 6.4px;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.footer-prestige .pre-footer .baseline {
    color: #545759;
    font-size: 22px;
    line-height: 28px;
    text-transform: uppercase;
}

.newsletter-form { width: 100%; }
.newsletter-form form { border-bottom: 1px solid #545759; width: 100%; }

.newsletter-form .input-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.newsletter-form .emailInput { width: 80%; }

.newsletter-form .form-control {
    width: 100%;
    padding: 14px 0;
    background: transparent;
    border: none;
    color: #545759;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    line-height: 27px;
    outline: none;
}

.newsletter-form .form-control::placeholder { color: #545759; }
.newsletter-form .form-control:focus { outline: none; }

.newsletter-form .submitInput { width: 20%; }

.newsletter-form .submitInput button {
    background: transparent;
    border: none;
    box-shadow: none;
    color: #545759;
    width: 100%;
    padding: 14px 0;
    cursor: pointer;
    font-size: 30px;
    transition: color .3s;
}

.newsletter-form .submitInput button:hover { color: #a65a49; }

/* ---------- FOOTER BODY ---------- */
.footer-prestige .body-footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 80px;
    padding: 0 0 60px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    color: #545759;
}

.prestige-logo-footer {
    width: 25%;
}

.prestige-logo-footer > a {
    display: block;
    width: 75%;
}

.prestige-logo-footer img {
    width: 100%;
    height: auto;
}

.footer-subtitle {
    color: #737373;
    font-size: 13px;
    letter-spacing: 1px;
    margin-top: 12px;
    font-family: 'Inter', sans-serif;
}

.main-menu-foot {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 75%;
}

.main-menu-foot .panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: transparent;
    border: none;
    box-shadow: none;
}

.main-menu-foot .panel .h4 {
    margin: 0 0 10px;
    cursor: default;
}

.main-menu-foot .panel .h4 span {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: #545759;
    text-transform: uppercase;
}

.main-menu-foot .panel .h4 i { display: none; }

.main-menu-foot .panel ul {
    list-style: none;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.main-menu-foot .panel ul li {
    margin-bottom: 2px;
    text-align: start;
}

.main-menu-foot .panel ul li a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 28px;
    color: #545759;
    transition: color .3s;
}

.main-menu-foot .panel ul li a:hover { color: #a65a49; opacity: 1; }

.main-menu-foot .panel ul li a .new {
    font-size: 10px;
    text-transform: uppercase;
    color: #a65a49;
    vertical-align: super;
    margin-left: 3px;
    font-weight: 700;
}

/* ---------- END FOOTER ---------- */
.footer-prestige .end-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #e3e3e3;
    padding: 40px 0;
    width: 100%;
}

.end-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 91%;
}

.end-footer-link {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
}

.end-footer-link li:not(:last-of-type) { margin-right: 30px; }

.end-footer-link li a,
.end-footer-link li button {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 28px;
    color: #545759;
    background: none;
    border: none;
    cursor: pointer;
    transition: color .3s;
}

.end-footer-link li a:hover,
.end-footer-link li button:hover { color: #a65a49; opacity: 1; }

.social-links {
    display: flex;
    align-items: center;
}

.social-links ul {
    list-style: none;
    display: flex;
    gap: 0;
    padding: 0;
    margin: 0;
}

.social-links ul li { display: inline-block; }

.social-links ul li a {
    display: inline-block;
    color: #545759;
    font-size: 18px;
    margin: 0 10px;
    transition: color .3s;
}

.social-links ul li a:hover {
    color: #a65a49;
    opacity: 1;
}

/* ---------- FOOTER DISCLAIMER / BOTTOM TEXT ---------- */
.footer-bottom-text {
    text-align: center;
    padding: 20px 0;
    margin: 0 auto;
    width: 85%;
}

.footer-bottom-text h4 {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #545759;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.footer-bottom-text p {
    color: #737373;
    font-size: 12px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.footer-bottom-text a {
    color: #a65a49;
}

.footer-bottom-text a:hover { text-decoration: underline; }

/* ---------- BACK TO TOP ---------- */
.return-on-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px; height: 45px;
    background: rgba(0,0,0,.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.return-on-top.visible { opacity: 1; visibility: visible; }
.return-on-top:hover { background: #c9956b; opacity: 1; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
    .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .main-menu { padding: 0 20px; }

    .icons-container {
        width: 100%;
        justify-content: space-between;
        position: relative;
        z-index: 1001;
    }

    .navbar-toggle { display: flex; align-items: center; justify-content: center; }

    #header.menu-open {
        background: #000;
    }
    #header.menu-open .brand img { filter: brightness(0) invert(1); }

    #items-container-submenu {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,.97);
        flex-direction: column;
        padding: 100px 30px 30px;
        overflow-y: auto;
        z-index: 999;
    }

    #items-container-submenu.open { display: flex; }

    #items-container-submenu .menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    #items-container-submenu .menu a {
        padding: 15px 0;
        font-size: 14px;
        border-bottom: 1px solid rgba(255,255,255,.1);
        width: 100%;
    }

    .sub-navbar-prestige {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        padding: 20px;
        overflow-y: auto;
    }

    .backToMenu { display: block; }

    .model-lines .lines {
        flex-direction: column;
        gap: 30px;
    }

    .sub-block-lifestyle {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .sub-block-lifestyle > * {
        grid-column: 1 !important;
        grid-row: auto !important;
    }

    .pre-footer {
        flex-direction: column;
        text-align: center;
        padding: 26px 21px;
        width: 87%;
    }

    .newsletter-form .form-control { font-size: 14px; line-height: 19px; }

    .footer-prestige .body-footer {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 30px;
        width: 85%;
    }

    .prestige-logo-footer { width: 100%; text-align: center; }
    .prestige-logo-footer > a { margin: 20px auto; max-width: 210px; }

    .main-menu-foot {
        flex-direction: column;
        width: 100%;
    }

    .main-menu-foot .panel {
        border-bottom: 1px solid #e3e3e3;
        padding: 15px 0;
        width: 100%;
    }

    .main-menu-foot .panel .h4 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0;
        cursor: pointer;
        width: 100%;
    }

    .main-menu-foot .panel .h4 i { display: block; transform: rotate(-90deg); transition: all .3s ease-in-out; }
    .main-menu-foot .panel .h4.active-toogle i { transform: rotate(0); }

    .main-menu-foot .panel ul { display: none; padding-top: 15px; }
    .main-menu-foot .panel.open ul { display: block; }

    .footer-prestige .end-footer { padding: 30px 0; }
    .end-footer-inner { flex-direction: column; width: 85%; }
    .social-links { order: 1; margin-bottom: 20px; }
    .end-footer-link { order: 2; justify-content: center; flex-wrap: wrap; }

    .text-header-container { padding: 0 30px 60px; }
    .slider-controls { right: 30px; bottom: 20px; }

    .action { height: 350px; }
}

@media (max-width: 767px) {
    .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    #simulator-slider { min-height: 500px; }

    .categories-section { padding: 50px 15px; }
    .banner { padding: 60px 0; }

    .section-lifestyle { padding: 50px 0; }
    .sub-block-lifestyle .img-container.height-100 { min-height: 300px; }
}

/* ============================================================
   SECTION SPACING — Gaps between consecutive sections
   ============================================================ */
.le-section-wrap + .le-section-wrap { margin-top: 60px; }

/* Remove spacing before/after full-bleed sections (hero, video, image-only) */
.le-section-wrap[data-section-type="hero_banner"] + .le-section-wrap,
.le-section-wrap + .le-section-wrap[data-section-type="hero_banner"],
.le-section-wrap[data-section-type="video_banner"] + .le-section-wrap,
.le-section-wrap + .le-section-wrap[data-section-type="video_banner"],
.le-section-wrap[data-section-type="image_only"] + .le-section-wrap,
.le-section-wrap + .le-section-wrap[data-section-type="image_only"] {
    margin-top: 0;
}

/* No spacing between builtin model blocks (hero, specs, description) */
.le-section-wrap.le-builtin-wrap + .le-section-wrap.le-builtin-wrap {
    margin-top: 0;
}

/* ============================================================
   NEW DYNAMIC SECTION TYPES
   ============================================================ */

/* --- Breadcrumb Banner Section --- */
.section-breadcrumb-banner {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.breadcrumb-banner__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.breadcrumb-banner__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.breadcrumb-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.1) 100%);
}
.breadcrumb-banner__content {
    position: relative;
    z-index: 2;
    padding: 60px;
    color: #fff;
}
.breadcrumb-banner__nav {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}
.breadcrumb-banner__nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}
.breadcrumb-banner__nav a:hover { color: #fff; }
.breadcrumb-banner__nav span { color: rgba(255,255,255,0.5); margin: 0 8px; }
.breadcrumb-banner__nav .current { color: rgba(255,255,255,0.9); }
.breadcrumb-banner__title {
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin: 0;
    line-height: 1.1;
}
.breadcrumb-banner__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-top: 12px;
    opacity: 0.85;
}
@media (max-width: 768px) {
    .breadcrumb-banner__content { padding: 30px 20px; }
    .breadcrumb-banner__nav { font-size: 0.7rem; }
    .section-breadcrumb-banner { min-height: 350px; }
}

/* --- Hero Banner --- */
.section-hero-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    text-align: center;
    padding: 80px 40px;
}
.hero-banner-content { position: relative; z-index: 2; max-width: 800px; display: flex; flex-direction: column; align-items: center; }
.hero-banner-title {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.hero-banner-subtitle {
    color: rgba(255,255,255,.85);
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* --- Title + Text --- */
.section-title-text {
    padding: 80px 0;
    text-align: center;
    background: #fff;
}
.section-title-text h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 10px;
}
.section-title-text .baseline {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #a65a49;
    margin-bottom: 8px;
}
.section-title-text hr {
    width: 60px; border: 0; border-top: 1px solid #c9956b;
    margin: 20px auto 30px;
}
.section-title-text .section-content {
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #545759;
}
.section-title-text .section-content--wide {
    max-width: 100%;
}

/* Link colors in all sections */
.section-title-text a:not(.btn),
.section-image-text a:not(.btn),
.section-hero-banner a:not(.btn),
.section-heritage a:not(.btn),
.section-experience a:not(.btn),
.article-section a:not(.btn) {
    color: #8b2e2e;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .2s;
}
.section-title-text a:not(.btn):hover,
.section-image-text a:not(.btn):hover,
.section-hero-banner a:not(.btn):hover,
.section-heritage a:not(.btn):hover,
.section-experience a:not(.btn):hover,
.article-section a:not(.btn):hover {
    color: #a65a49;
}

/* --- Title Only --- */
.section-title-only {
    padding: 60px 0;
    text-align: center;
    background: #fff;
}
.section-title-only h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
}

/* --- Image Only --- */
.section-image-only {
    width: 100%;
    overflow: hidden;
}
.section-image-only img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Video Banner --- */
.section-video-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}
.section-video-banner.video-banner--short { min-height: 400px; max-height: 500px; }
.section-video-banner.video-banner--medium { min-height: 550px; max-height: 700px; }
.section-video-banner.video-banner--full { min-height: 100vh; }
.vb-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
}
.vb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.55));
    z-index: 1;
}
.vb-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.vb-title {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.vb-subtitle {
    color: rgba(255,255,255,.85);
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .section-video-banner.video-banner--short { min-height: 300px; }
    .section-video-banner.video-banner--medium { min-height: 400px; }
    .vb-content { padding: 40px 20px; }
}

/* --- Image + Text (left/right) --- */
.section-image-text {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}
.section-image-text.reverse { flex-direction: row-reverse; }
.sit-image {
    flex: 0 0 50%;
    overflow: hidden;
}
.sit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sit-content {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
}
.sit-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 20px;
}
.sit-content .baseline {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #a65a49;
    margin-bottom: 8px;
}
.sit-content p, .sit-content div {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #545759;
}
.sit-content .btn { margin-top: 30px; align-self: flex-start; }

/* Image size variants — large is default (50/50) */
.section-image-text.img-large .sit-image { flex: 0 0 50%; }
.section-image-text.img-large .sit-content { flex: 0 0 50%; }
.section-image-text.img-medium .sit-image { flex: 0 0 40%; }
.section-image-text.img-medium .sit-content { flex: 0 0 60%; }
.section-image-text.img-small .sit-image { flex: 0 0 30%; }
.section-image-text.img-small .sit-content { flex: 0 0 70%; }

@media (max-width: 991px) {
    .section-image-text, .section-image-text.reverse {
        flex-direction: column;
    }
    .sit-image, .sit-content { flex: 0 0 auto !important; }
    .sit-image { min-height: 300px; }
    .sit-content { padding: 40px 30px; }
}

/* ============================================================
   ACTION BANNER (Tam genişlik görsel + overlay + sol alt metin)
   ============================================================ */
.section-action-banner {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.action-banner-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.action-banner-media img,
.action-banner-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.action-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
    z-index: 1;
}
.action-banner-content {
    position: relative;
    z-index: 2;
    padding: 50px 60px;
    max-width: 700px;
}
.action-banner-title {
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.action-banner-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 18px;
}
.action-banner-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.2s;
}
.action-banner-link:hover { opacity: 0.7; }
.action-banner-link i,
.action-banner-link svg { font-size: 0.85rem; }
@media (max-width: 768px) {
    .section-action-banner { min-height: 350px; }
    .action-banner-content { padding: 30px 24px; }
    .action-banner-title { font-size: 1.4rem; }
    .action-banner-subtitle { font-size: 0.85rem; }
}

/* ============================================================
   GALLERY (Çoklu görsel grid + lightbox)
   ============================================================ */
.section-gallery {
    padding: 60px 0;
}
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}
.gallery-upper-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 10px;
}
.gallery-title {
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.gallery-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: #666;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}
.gallery-item {
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
    transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
@media (max-width: 768px) {
    .section-gallery { padding: 40px 0; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px; }
    .gallery-title { font-size: 1.5rem; }
}

/* ============================================================
   TWO IMAGES (İki görsel + metin layout)
   ============================================================ */
.section-two-images {
    padding: 0;
}
.two-images-container {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}
.section-two-images.reverse .two-images-container {
    flex-direction: row-reverse;
}
.two-images-media {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
}
.ti-image-primary {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 300px;
}
.ti-image-secondary {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 300px;
}
.two-images-content {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
}
.two-images-content .baseline {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 10px;
}
.two-images-content h2 {
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 16px;
}
.two-images-content .ti-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}
@media (max-width: 991px) {
    .two-images-container, .section-two-images.reverse .two-images-container {
        flex-direction: column;
    }
    .two-images-media, .two-images-content { flex: 0 0 auto; }
    .two-images-content { padding: 40px 30px; }
}

/* ============================================================
   CONTACT FORM (Standalone)
   ============================================================ */
.section-contact-form {
    padding: 80px 20px;
    background: #f8f8f8;
}
.cf-container {
    max-width: 800px;
    margin: 0 auto;
}
.cf-header {
    text-align: center;
    margin-bottom: 40px;
}
.cf-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
    display: block;
    margin-bottom: 10px;
}
.cf-title {
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.cf-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}
.cf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.cf-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 6px;
}
.cf-field input, .cf-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    background: #fff;
    transition: border-color 0.2s;
}
.cf-field input:focus, .cf-field textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}
.cf-field--full { grid-column: 1 / -1; }
.cf-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}
.cf-submit:hover { background: #333; }
@media (max-width: 768px) {
    .cf-grid { grid-template-columns: 1fr; }
    .section-contact-form { padding: 50px 20px; }
}

/* ============================================================
   CONTACT INFO
   ============================================================ */
.section-contact-info {
    padding: 80px 20px;
}
.ci-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
.ci-details { flex: 1; }
.ci-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
    display: block;
    margin-bottom: 10px;
}
.ci-title {
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.ci-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}
.ci-items { display: flex; flex-direction: column; gap: 24px; }
.ci-item { display: flex; align-items: flex-start; gap: 16px; }
.ci-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
}
.ci-text { display: flex; flex-direction: column; gap: 4px; }
.ci-text strong {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #333;
}
.ci-text a, .ci-text span {
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    line-height: 1.5;
}
.ci-text a:hover { color: #1a1a1a; }
.ci-map { flex: 1; min-height: 400px; border-radius: 8px; overflow: hidden; }
.ci-map-inner { width: 100%; height: 100%; min-height: 400px; }
.ci-map-inner iframe { width: 100%; height: 100%; min-height: 400px; border: 0; }
.ci-map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #999;
}
@media (max-width: 991px) {
    .ci-container { flex-direction: column; gap: 40px; }
    .ci-map { width: 100%; }
    .section-contact-info { padding: 50px 20px; }
}

/* ============================================================
   RICH TEXT Section
   ============================================================ */
.section-rich-text {
    padding: 60px 20px;
}
.section-rich-text .rich-text-content {
    max-width: 900px;
    margin: 0 auto;
}
.section-rich-text .rich-text-title {
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 20px;
}
.section-rich-text .rich-text-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* ============================================================
   LIVE EDITOR STYLES
   ============================================================ */

/* Toolbar toggle button */
#le-toolbar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
}
#le-toggle {
    background: #f5a623;
    color: #000;
    border: none;
    border-radius: 30px;
    padding: 12px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
    transition: all .2s;
}
#le-toggle:hover { background: #e6991b; transform: scale(1.03); }
#le-toggle i { font-size: 16px; }

/* Active bar */
#le-active-bar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
}
.le-bar-inner {
    background: #1a1a1a;
    border-radius: 30px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.le-btn-active {
    background: #c0392b;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: default;
    display: flex;
    align-items: center;
    gap: 8px;
}
.le-btn-cancel {
    background: none;
    color: #999;
    border: none;
    border-radius: 20px;
    padding: 10px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color .2s;
}
.le-btn-cancel:hover { color: #fff; }

/* Inline editing */
.le-inline-editable {
    outline: 1px dashed transparent;
    outline-offset: 2px;
    transition: outline .2s, background .2s;
    cursor: text;
    border-radius: 3px;
}
.le-inline-editable:hover {
    outline-color: rgba(245,166,35,.4);
}
.le-inline-editable.le-inline-focused,
.le-inline-editable:focus {
    outline: 2px solid #f5a623;
    background: rgba(245,166,35,.05);
}

/* Hidden helper */
.le-hidden { display: none !important; }

/* Section hover highlight */
.le-editing .le-section-wrap {
    position: relative;
    transition: outline .2s;
}
.le-editing .le-section-wrap:hover {
    outline: 2px dashed rgba(245,166,35,.5);
    outline-offset: -2px;
}

/* Add section buttons (+ between sections) */
.le-add-btn {
    display: none;
    justify-content: center;
    align-items: center;
    padding: 14px 0;
}
.le-editing .le-add-btn { display: flex; }
.le-add-btn button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #f5a623;
    color: #000;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.2);
    transition: all .2s;
}
.le-add-btn button:hover { background: #e6991b; transform: scale(1.15); }

/* Modal overlay */
.le-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,.75);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

/* Section picker modal */
.le-modal-container {
    background: #1e1e1e;
    border-radius: 16px;
    width: 100%;
    max-width: 1100px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0,0,0,.5);
}
.le-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-bottom: 1px solid #333;
}
.le-modal-header h3 {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.le-modal-header h3 i { color: #f5a623; }
.le-modal-header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}
#le-search {
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
    color: #fff;
    padding: 10px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    width: 220px;
    outline: none;
}
#le-search:focus { border-color: #f5a623; }
#le-modal-close {
    background: none;
    border: none;
    color: #999;
    font-size: 22px;
    cursor: pointer;
    padding: 5px;
    transition: color .2s;
}
#le-modal-close:hover { color: #fff; }

.le-modal-body {
    display: flex;
    flex: 1;
    overflow: hidden;
}
.le-modal-list {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}
.le-modal-preview {
    width: 300px;
    border-left: 1px solid #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: #161616;
}
.le-preview-placeholder { text-align: center; color: #666; }
.le-preview-placeholder i { font-size: 48px; margin-bottom: 12px; }
.le-preview-placeholder p { font-size: 14px; }

/* Section type groups */
.le-group-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f5a623;
    margin: 20px 0 12px;
}
.le-group-label:first-child { margin-top: 0; }
.le-group-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.le-type-card {
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 16px;
    cursor: pointer;
    transition: all .2s;
}
.le-type-card:hover { border-color: #f5a623; background: #333; }
.le-type-card.le-disabled {
    opacity: .4;
    cursor: not-allowed;
}
.le-type-card .le-tc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}
.le-type-card .le-tc-icon {
    width: 36px;
    height: 36px;
    background: #383838;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.le-type-card .le-tc-name {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
}
.le-type-card .le-tc-desc {
    color: #888;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    line-height: 1.5;
}

/* Form modal */
.le-form-container {
    background: #1e1e1e;
    border-radius: 16px;
    width: 100%;
    max-width: 1100px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0,0,0,.5);
}
.le-form-body {
    display: flex;
    flex: 1;
    overflow: hidden;
}
.le-form-fields {
    flex: 1;
    overflow-y: auto;
    padding: 28px;
}
.le-form-preview {
    width: 420px;
    border-left: 1px solid #333;
    background: #111;
    overflow-y: auto;
}
.le-badge {
    background: #c0392b;
    color: #fff;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 10px;
    font-weight: 600;
}
.le-btn-save {
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background .2s;
}
.le-btn-save:hover { background: #219a52; }

/* Form fields */
.le-field { margin-bottom: 20px; }
.le-field label {
    display: block;
    color: #999;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.le-field input[type="text"],
.le-field input[type="url"],
.le-field input[type="number"],
.le-field textarea,
.le-field select {
    width: 100%;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
    color: #fff;
    padding: 12px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
}
.le-field input:focus, .le-field textarea:focus, .le-field select:focus { border-color: #f5a623; }
.le-field textarea { resize: vertical; min-height: 100px; }
.le-field .le-hint {
    color: #666;
    font-size: 11px;
    margin-top: 4px;
}

/* File upload */
.le-file-area {
    border: 2px dashed #444;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s;
    color: #888;
}
.le-file-area:hover { border-color: #f5a623; }
.le-file-area i { font-size: 28px; margin-bottom: 8px; }
.le-file-preview { max-width: 100%; margin-top: 10px; border-radius: 8px; }

/* "Dosya Yöneticisinden Seç" button */
.le-file-pick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
    padding: 8px 16px;
    background: #2a2a2a;
    color: #f5a623;
    border: 1px solid #444;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: all .2s;
    width: 100%;
}
.le-file-pick-btn:hover { background: #333; border-color: #f5a623; }
.le-file-pick-btn i { font-size: 14px; }

/* File Picker Modal */
.le-filepicker-container {
    background: #1e1e1e;
    border-radius: 16px;
    width: 100%;
    max-width: 820px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.le-fp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid #333;
}
.le-fp-header h3 {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}
.le-fp-header h3 i { color: #f5a623; margin-right: 8px; }
.le-fp-header button {
    background: none;
    border: none;
    color: #888;
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
}
.le-fp-header button:hover { color: #fff; }
.le-fp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 24px;
    background: #252525;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #888;
    flex-wrap: wrap;
}
.le-fp-breadcrumb a {
    color: #f5a623;
    text-decoration: none;
    cursor: pointer;
}
.le-fp-breadcrumb a:hover { text-decoration: underline; }
.le-fp-breadcrumb span.le-fp-sep { color: #555; margin: 0 2px; }
.le-fp-body {
    overflow-y: auto;
    padding: 16px 24px 24px;
    flex: 1;
}
.le-fp-loading {
    text-align: center;
    color: #888;
    padding: 40px;
    font-family: 'Inter', sans-serif;
}
.le-fp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}
.le-fp-item {
    background: #2a2a2a;
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    transition: all .2s;
    text-align: center;
}
.le-fp-item:hover { border-color: #f5a623; transform: translateY(-2px); }
.le-fp-item.is-folder .le-fp-item-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    background: #333;
}
.le-fp-item.is-folder .le-fp-item-thumb i { font-size: 40px; color: #f5a623; }
.le-fp-item-thumb {
    height: 100px;
    overflow: hidden;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
}
.le-fp-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.le-fp-item-thumb .le-fp-video-icon { font-size: 36px; color: #e74c3c; }
.le-fp-item-info {
    padding: 8px;
}
.le-fp-item-info .le-fp-name {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #ccc;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.le-fp-item-info .le-fp-size {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: #666;
    margin-top: 2px;
}
.le-fp-empty {
    text-align: center;
    color: #666;
    padding: 40px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
}

/* Video upload progress UI */
.le-video-upload-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
    width: 100%;
}
.le-vup-icon { font-size: 48px; color: #f5a623; margin-bottom: 20px; animation: le-pulse 1.5s infinite; }
@keyframes le-pulse { 0%,100% { opacity: 1; } 50% { opacity: .5; } }
.le-vup-title { color: #fff; font-size: 20px; font-weight: 500; margin-bottom: 8px; }
.le-vup-info { color: #888; font-size: 13px; margin-bottom: 24px; }
.le-vup-bar-wrap { width: 100%; max-width: 400px; background: rgba(255,255,255,.1); border-radius: 6px; height: 10px; overflow: hidden; }
.le-vup-bar { height: 100%; background: #f5a623; border-radius: 6px; transition: width .3s; }
.le-vup-pct { color: #f5a623; font-size: 18px; font-weight: 600; margin-top: 12px; }
.le-vup-hint { color: #666; font-size: 12px; margin-top: 12px; }

/* Rich text editor */
.le-richtext-wrap {
    border: 1px solid #444;
    border-radius: 8px;
    overflow: hidden;
    background: #2a2a2a;
}
.le-richtext-wrap:focus-within { border-color: #f5a623; }
.le-richtext-toolbar {
    display: flex;
    gap: 2px;
    padding: 6px 8px;
    background: #222;
    border-bottom: 1px solid #444;
}
.le-richtext-toolbar button {
    background: none;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #ccc;
    width: 30px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: background .15s, color .15s;
}
.le-richtext-toolbar button:hover { background: #383838; color: #fff; }
.le-richtext-toolbar button.active { background: #444; color: #f5a623; border-color: #555; }
.le-rt-sep { width: 1px; background: #444; margin: 2px 4px; }
.le-richtext-editor {
    min-height: 120px;
    max-height: 320px;
    overflow-y: auto;
    padding: 12px 14px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    outline: none;
}
.le-richtext-editor p { margin: 0 0 8px; }
.le-richtext-editor a { color: #f5a623; }
.le-richtext-editor ul, .le-richtext-editor ol { margin: 0 0 8px 20px; padding: 0; }
.le-richtext-editor li { margin: 0 0 4px; }
.le-richtext-editor b, .le-richtext-editor strong { font-weight: 700; }
.le-richtext-editor i, .le-richtext-editor em { font-style: italic; }
.le-richtext-editor u { text-decoration: underline; }
.le-richtext-editor:empty::before {
    content: attr(data-placeholder);
    color: #666;
    pointer-events: none;
}

/* Radio group */
.le-radio-group {
    display: flex;
    gap: 12px;
}
.le-radio-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ccc;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    cursor: pointer;
    padding: 8px 14px;
    border: 1px solid #444;
    border-radius: 8px;
    transition: border-color .2s, background .2s;
}
.le-radio-label:hover { border-color: #666; background: #2a2a2a; }
.le-radio-label input[type="radio"] {
    accent-color: #f5a623;
    margin: 0;
}
.le-radio-label input[type="radio"]:checked + span { color: #f5a623; }

@media (max-width: 767px) {
    .le-modal-container, .le-form-container { max-height: 95vh; }
    .le-modal-preview, .le-form-preview { display: none; }
    .le-group-grid { grid-template-columns: 1fr; }
    #le-search { width: 140px; }
}

/* Section hover toolbar */
.le-section-toolbar {
    display: none;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: #1a1a1a;
    border-radius: 30px;
    padding: 8px 10px;
    gap: 4px;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0,0,0,.4);
    flex-direction: row;
}
.le-editing .le-section-wrap { position: relative; min-height: 60px; }
.le-editing .le-section-wrap:hover > .le-section-toolbar { display: flex; }

.le-section-toolbar .le-st-badge {
    color: #f5a623;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 0 10px;
    white-space: nowrap;
}
.le-section-toolbar .le-st-id {
    color: #888;
    font-weight: 400;
    font-size: 11px;
}
.le-section-toolbar button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #2a2a2a;
    color: #ccc;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}
.le-section-toolbar button:hover { background: #444; color: #fff; }
.le-section-toolbar .le-st-delete { color: #e74c3c; }
.le-section-toolbar .le-st-delete:hover { background: #e74c3c; color: #fff; }

/* Lifestyle block form */
.le-block-group {
    background: #252525;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
}
.le-block-num {
    position: absolute;
    top: -10px;
    left: 16px;
    background: #f5a623;
    color: #000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
}
.le-block-title {
    color: #f5a623;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 4px;
}
.le-block-hint {
    color: #666;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    margin: 0 0 16px;
}

/* Highlight border on hover in edit mode */
.le-editing .le-section-wrap:hover {
    outline: 2px solid #f5a623;
    outline-offset: -2px;
}

/* Delete Confirmation Modal */
.le-delete-container {
    background: #1e1e1e;
    border-radius: 20px;
    width: 100%;
    max-width: 460px;
    padding: 40px 36px 32px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.6);
    animation: leDeleteIn .25s ease;
}
@keyframes leDeleteIn {
    from { opacity: 0; transform: scale(.9) translateY(10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.le-delete-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(231,76,60,.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.le-delete-icon i {
    font-size: 28px;
    color: #e74c3c;
}
.le-delete-title {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px;
}
.le-delete-desc {
    color: #bbb;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 8px;
}
#le-delete-name {
    color: #f5a623;
    font-weight: 600;
}
.le-delete-warning {
    color: #e74c3c;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    margin: 0 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.le-delete-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.le-del-btn {
    border: none;
    border-radius: 10px;
    padding: 12px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
}
.le-del-cancel {
    background: #2a2a2a;
    color: #ccc;
}
.le-del-cancel:hover {
    background: #3a3a3a;
    color: #fff;
}
.le-del-confirm {
    background: #e74c3c;
    color: #fff;
}
.le-del-confirm:hover {
    background: #c0392b;
}

/* ============================================================
   ARTICLES / NEWS PAGES
   ============================================================ */

/* ---- Banner (list & detail) ---- */
.articles-banner,
.article-detail-banner {
    position: relative;
    width: 100%;
    height: 55vh;
    min-height: 350px;
    max-height: 600px;
    overflow: hidden;
    background: #1a1a1a;
}
.articles-banner__image,
.article-detail-banner__image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.articles-banner__video,
.article-detail-banner__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.articles-banner__placeholder,
.article-detail-banner__placeholder {
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
}
.articles-banner__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 60px;
    background: linear-gradient(transparent, rgba(0,0,0,.45));
    display: flex;
    align-items: flex-end;
}
.articles-banner__overlay h1 {
    color: #fff;
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}
.articles-banner__overlay h1 .amp,
.articles-page__header h2 .amp {
    font-style: normal;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 400;
}

/* ---- Articles Page ---- */
.articles-page {
    max-width: 1320px;
    margin: 0 auto;
    padding: 50px 30px 80px;
}
.articles-page__header {
    text-align: center;
    margin-bottom: 30px;
}
.articles-page__header h2 {
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #222;
    margin: 0 0 15px;
}
.articles-divider {
    width: 60px;
    border: none;
    border-top: 1px solid #999;
    margin: 0 auto 30px;
}

/* ---- Category Dropdown ---- */
.articles-categories {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.articles-categories__dropdown {
    position: relative;
}
.articles-categories__btn {
    background: #fff;
    border: 1px solid #8b2e2e;
    color: #8b2e2e;
    padding: 10px 28px;
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s;
}
.articles-categories__btn:hover {
    background: #8b2e2e;
    color: #fff;
}
.articles-categories__caret {
    margin-left: 8px;
}
.articles-categories__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #ddd;
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    min-width: 220px;
    z-index: 100;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.articles-categories__menu.open {
    display: block;
}
.articles-categories__menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background .15s;
}
.articles-categories__menu li a:hover,
.articles-categories__menu li a.active {
    background: #f5f0ed;
    color: #8b2e2e;
}

/* ---- Article Cards Grid ---- */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.articles-grid--related {
    max-width: 1100px;
    margin: 0 auto;
}
.article-card {
    background: #fff;
}
.article-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.article-card__image-wrap {
    position: relative;
    width: 100%;
    padding-top: 66.66%;
    overflow: hidden;
    background: #eee;
}
.article-card__image {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform .4s ease;
}
.article-card__image--placeholder {
    background: linear-gradient(135deg, #ddd, #bbb);
}
.article-card__link:hover .article-card__image {
    transform: scale(1.05);
}
.article-card__mask {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    background: rgba(0,0,0,.25);
    opacity: 0;
    transition: opacity .3s;
}
.article-card__link:hover .article-card__mask {
    opacity: 1;
}
.article-card__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 14px 15px 0;
}
.article-card__category {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    background: #f5f0ed;
    padding: 3px 10px;
    display: inline-block;
    margin-bottom: 6px;
}
.article-card__date {
    font-size: 0.78rem;
    color: #999;
}
.article-card__title {
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: .5px;
    padding: 10px 15px 8px;
    margin: 0;
    color: #222;
    line-height: 1.4;
}
.article-card__excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: #777;
    text-align: center;
    line-height: 1.55;
    padding: 0 15px 20px;
    margin: 0;
}

/* ---- Infinite Scroll Loader ---- */
.articles-loader {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}
.articles-loader__spinner {
    width: 36px;
    height: 36px;
    border: 3px solid #ddd;
    border-top-color: #8b2e2e;
    border-radius: 50%;
    animation: articlesSpinner .7s linear infinite;
}
@keyframes articlesSpinner {
    to { transform: rotate(360deg); }
}

/* ---- Articles Empty State ---- */
.articles-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 30px 80px;
    text-align: center;
}
.articles-empty__icon {
    font-size: 3rem;
    color: #c9956b;
    margin-bottom: 20px;
    opacity: .6;
}
.articles-empty__title {
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #333;
    letter-spacing: .5px;
    margin: 0 0 10px;
}
.articles-empty__text {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: #999;
    margin: 0;
    line-height: 1.5;
}

/* ---- Article Detail ---- */
.article-detail {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px 80px;
    position: relative;
}

/* Floating Social Share */
.article-share-float {
    position: sticky;
    top: 120px;
    float: left;
    margin-left: -80px;
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 10;
}
.article-share-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #555;
    border: 1px solid #ddd;
    border-bottom: none;
    background: #fff;
    transition: all .2s;
    font-size: 0.95rem;
    text-decoration: none;
}
.article-share-float a:last-child {
    border-bottom: 1px solid #ddd;
}
.article-share-float a:hover {
    background: #8b2e2e;
    color: #fff;
    border-color: #8b2e2e;
}
@media (max-width: 1280px) {
    .article-share-float {
        position: static;
        float: none;
        margin: 0 auto 25px;
        flex-direction: row;
        justify-content: center;
    }
    .article-share-float a {
        border: 1px solid #ddd;
        border-right: none;
    }
    .article-share-float a:last-child {
        border-right: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
    }
}
.article-detail__header {
    text-align: center;
    padding: 50px 0 25px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}
.article-detail__header h1 {
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #222;
    margin: 0 0 12px;
}
.article-detail__date {
    font-size: 0.88rem;
    color: #999;
    letter-spacing: .5px;
}

/* Breadcrumb */
.article-detail__breadcrumb {
    font-size: 0.82rem;
    color: #999;
    margin-bottom: 30px;
    padding: 0 0 15px;
}
.article-detail__breadcrumb a {
    color: #999;
    text-decoration: none;
}
.article-detail__breadcrumb a:hover {
    color: #8b2e2e;
}
.article-detail__breadcrumb span {
    margin: 0 6px;
}
.article-detail__breadcrumb .current {
    color: #555;
}

/* ---- Article Sections ---- */
.article-section {
    margin-bottom: 40px;
}
.article-section__container {
    max-width: 960px;
    margin: 0 auto;
}
.article-section__container--wide {
    max-width: 100%;
}
.article-section__container--narrow {
    max-width: 700px;
}
.article-section h2 {
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #222;
    margin: 0 0 18px;
}
.article-section__title-centered {
    text-align: center;
}
.article-section__body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: #444;
}
.article-section__body p {
    margin: 0 0 16px;
}
.article-section__body img {
    max-width: 100%;
    height: auto;
}

/* Image + Text row */
.article-section__row {
    display: flex;
    gap: 30px;
    align-items: center;
}
.article-section__col-image,
.article-section__col-text {
    flex: 1;
    min-width: 0;
}
.article-section__col-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Full width image */
.article-section__full-image-wrap {
    width: 100%;
}
.article-section__full-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* Gallery */
.article-section__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
    margin-top: 15px;
}
.article-section__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
}

/* Video */
.article-section__video-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}
.article-section__video-wrap video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

/* Footer meta */
.article-detail__footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid #eee;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 15px;
}
.article-detail__category-tag {
    font-size: 0.88rem;
    color: #555;
}
.article-detail__category-tag span {
    color: #999;
}
.article-detail__share {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: #999;
}
.article-detail__share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #ddd;
    color: #555;
    text-decoration: none;
    transition: all .2s;
}
.article-detail__share a:hover {
    border-color: #8b2e2e;
    color: #8b2e2e;
}

/* Related articles */
.article-detail__related {
    margin-top: 60px;
    text-align: center;
}
.article-detail__related h2 {
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #222;
    margin-bottom: 15px;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .article-section__row {
        flex-direction: column;
    }
    .article-section--image-text-right .article-section__row {
        flex-direction: column-reverse;
    }
    .articles-banner__overlay h1 {
        font-size: 1.8rem;
    }
}
@media (max-width: 576px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    .articles-banner,
    .article-detail-banner {
        height: 40vh;
        min-height: 250px;
    }
    .articles-banner__overlay {
        padding: 25px 20px;
    }
    .articles-banner__overlay h1 {
        font-size: 1.4rem;
    }
    .article-detail__header h1 {
        font-size: 1.5rem;
    }
    .articles-page {
        padding: 30px 15px 60px;
    }
    .article-detail {
        padding: 0 15px 60px;
    }
}


/* ======================================================
   BRAND PAGE
   ====================================================== */

/* --- Hero Banner --- */
.brand-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}
.brand-hero__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.brand-hero__image--placeholder {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}
.brand-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.brand-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.15) 100%);
}
.brand-hero__content {
    position: absolute;
    bottom: 80px;
    left: 60px;
    z-index: 2;
    color: #fff;
}
.brand-hero__title {
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin: 0;
    line-height: 1.1;
}
.brand-hero__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-top: 16px;
    opacity: 0.85;
}

/* --- Model Slider Section (Prestige-style) --- */
.brand-models {
    padding: 100px 0 40px;
    background: #f5f5f5;
    text-align: center;
    overflow: hidden;
}
.brand-models__header {
    margin-bottom: 50px;
}
.brand-models__label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8b2e2e;
    margin-bottom: 12px;
}
.brand-models__title {
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 0.05em;
    margin: 0;
}

/* --- Slider track --- */
.brand-slider {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}
.brand-slider__track {
    position: relative;
    height: 480px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
}

/* --- Slider items --- */
.brand-slider__item {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) scale(0.4);
    z-index: 0;
    user-select: none;
}
.brand-slider__item img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
}
.brand-slider__model-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    margin: 12px 0 0;
    transition: all 0.4s;
}

/* Active (center) */
.brand-slider__item.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 5;
    width: 55%;
    max-width: 820px;
    transform: translateX(-50%) scale(1);
}
.brand-slider__item.active .brand-slider__model-name {
    display: none;
}

/* Previous (left) */
.brand-slider__item.prev-slide {
    opacity: 0.5;
    pointer-events: auto;
    z-index: 3;
    width: 30%;
    max-width: 440px;
    transform: translateX(-185%) scale(0.75);
}
.brand-slider__item.prev-slide .brand-slider__model-name {
    color: #999;
    font-size: 0.9rem;
}

/* Next (right) */
.brand-slider__item.next-slide {
    opacity: 0.5;
    pointer-events: auto;
    z-index: 3;
    width: 30%;
    max-width: 440px;
    transform: translateX(85%) scale(0.75);
}
.brand-slider__item.next-slide .brand-slider__model-name {
    color: #999;
    font-size: 0.9rem;
}

/* Far items */
.brand-slider__item.far-prev {
    opacity: 0.15;
    z-index: 1;
    width: 22%;
    max-width: 300px;
    transform: translateX(-320%) scale(0.5);
}
.brand-slider__item.far-next {
    opacity: 0.15;
    z-index: 1;
    width: 22%;
    max-width: 300px;
    transform: translateX(220%) scale(0.5);
}

/* --- Detail section below slider --- */
.brand-slider__detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 50px 40px 60px;
    max-width: 900px;
    margin: 0 auto;
    min-height: 320px;
}

.brand-slider__detail-content {
    text-align: center;
    flex: 1;
    min-width: 0;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.brand-slider__detail-name {
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 8px;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.brand-slider__detail-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    font-style: italic;
    color: #777;
    margin: 0 0 28px;
    letter-spacing: 0.03em;
    min-height: 1.5em;
}

/* Specs row */
.brand-slider__specs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 32px;
    min-height: 48px;
    width: 100%;
}
.brand-slider__spec {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.brand-slider__spec-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #999;
    font-weight: 500;
}
.brand-slider__spec-value {
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #1a1a1a;
}

/* Button */
.brand-slider__link {
    margin-top: 8px;
}
.brand-slider__btn {
    display: inline-block;
    padding: 14px 44px;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8b2e2e;
    background: transparent;
    border: 1px solid #8b2e2e;
    text-decoration: none;
    transition: all 0.3s;
}
.brand-slider__btn:hover {
    background: #8b2e2e;
    color: #fff;
}

/* Arrows */
.brand-slider__arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
    padding: 0;
}
.brand-slider__arrow:hover {
    color: #8b2e2e;
}
.brand-slider__arrow svg {
    width: 28px;
    height: 28px;
}

/* Responsive */
@media (max-width: 1024px) {
    .brand-slider__track {
        height: 360px;
    }
    .brand-slider__item.active {
        width: 60%;
    }
    .brand-slider__item.prev-slide,
    .brand-slider__item.next-slide {
        width: 28%;
    }
    .brand-slider__detail-name {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .brand-models {
        padding: 60px 0 30px;
    }
    .brand-models__title {
        font-size: 1.8rem;
    }
    .brand-slider__track {
        height: 260px;
    }
    .brand-slider__item.active {
        width: 70%;
    }
    .brand-slider__item.prev-slide {
        transform: translateX(-160%) scale(0.6);
        width: 30%;
    }
    .brand-slider__item.next-slide {
        transform: translateX(60%) scale(0.6);
        width: 30%;
    }
    .brand-slider__item.far-prev,
    .brand-slider__item.far-next {
        opacity: 0;
    }
    .brand-slider__detail {
        gap: 16px;
        padding: 30px 20px 40px;
        min-height: 260px;
    }
    .brand-slider__detail-name {
        font-size: 2rem;
    }
    .brand-slider__specs {
        gap: 20px;
    }
    .brand-slider__spec-value {
        font-size: 1rem;
    }
    .brand-slider__btn {
        padding: 12px 30px;
        font-size: 0.65rem;
    }
}

/* ======================================================
   BRAND SECTIONS
   ====================================================== */

/* --- Text Section --- */
.brand-section { overflow: hidden; }
.brand-section__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 40px;
    text-align: center;
}
.brand-section__label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8b2e2e;
    margin-bottom: 16px;
}
.brand-section__title {
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 20px;
    letter-spacing: 0.03em;
    line-height: 1.2;
}
.brand-section__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #666;
    margin: 0 0 24px;
}
.brand-section__content {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}
.brand-section__content p { margin-bottom: 16px; }
.brand-section__btn {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    background: #8b2e2e;
    text-decoration: none;
    transition: background 0.3s;
    border-radius: 2px;
}
.brand-section__btn:hover { background: #a65a49; }

/* --- Image + Text Full Width --- */
.brand-section__fullwidth {
    display: flex;
    min-height: 600px;
}
.brand-section__fullwidth--img-right {
    flex-direction: row-reverse;
}
.brand-section__image-half {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}
.brand-section__image-half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.brand-section__text-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: #f8f6f3;
}
.brand-section__text-half .brand-section__title {
    text-align: left;
}
.brand-section__text-half .brand-section__label {
    text-align: left;
}
.brand-section__text-half .brand-section__content {
    text-align: left;
}
/* Brand image size variants — large is default (50/50) */
.brand-section__fullwidth.img-medium .brand-section__image-half { flex: 0 0 40%; }
.brand-section__fullwidth.img-medium .brand-section__text-half { flex: 0 0 60%; }
.brand-section__fullwidth.img-small .brand-section__image-half { flex: 0 0 30%; }
.brand-section__fullwidth.img-small .brand-section__text-half { flex: 0 0 70%; }

/* --- Characteristics (overlapping images) --- */
.brand-section--characteristics {
    padding: 100px 0;
    background: #fff;
}
.brand-section__characteristics {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    gap: 80px;
}
.brand-section__char-text {
    flex: 0 0 40%;
    max-width: 40%;
}
.brand-section__char-text .brand-section__label,
.brand-section__char-text .brand-section__title,
.brand-section__char-text .brand-section__content {
    text-align: left;
}
.brand-section__char-images {
    flex: 1;
    position: relative;
    min-height: 500px;
}
.brand-section__char-img--main {
    width: 80%;
    position: relative;
    z-index: 1;
}
.brand-section__char-img--main img {
    width: 100%;
    display: block;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.brand-section__char-img--overlap {
    position: absolute;
    bottom: -40px;
    right: -20px;
    width: 55%;
    z-index: 2;
}
.brand-section__char-img--overlap img {
    width: 100%;
    display: block;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* --- Full Image --- */
.brand-section__full-image {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
}
.brand-section__full-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 500px;
}
.brand-section__full-image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    background: rgba(0,0,0,0.3);
    color: #fff;
}
.brand-section__full-image-overlay .brand-section__title { color: #fff; }
.brand-section__full-image-overlay .brand-section__label { color: rgba(255,255,255,0.8); }
.brand-section__full-image-overlay .brand-section__content { color: rgba(255,255,255,0.9); }

/* --- Video Section --- */
.brand-section__video-wrap {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
}
.brand-section__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 500px;
}
.brand-section__video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    color: #fff;
}
.brand-section__video-overlay .brand-section__title { color: #fff; }

/* ======================================================
   MODEL DETAIL PAGE
   ====================================================== */

/* --- Model Hero --- */
.model-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}
.model-hero__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.model-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.model-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.1) 100%);
}
.model-hero__content {
    position: absolute;
    bottom: 60px;
    left: 60px;
    z-index: 2;
    color: #fff;
}
.model-hero__breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}
.model-hero__breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}
.model-hero__breadcrumb a:hover { color: #fff; }
.model-hero__breadcrumb span { color: rgba(255,255,255,0.5); margin: 0 8px; }
.model-hero__title {
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin: 0;
    line-height: 1.1;
}
.model-hero__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-top: 12px;
    opacity: 0.85;
}
.model-hero__badge {
    display: inline-block;
    margin-top: 16px;
    background: #8b2e2e;
    color: #fff;
    padding: 6px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
}

/* --- Specs Bar --- */
.model-specs-bar {
    background: #1a1a1a;
    padding: 0;
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
}
.model-specs-bar__inner {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    flex: 1;
    min-width: 0;
}
.model-specs-bar__item {
    flex: 0 0 auto;
    min-width: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 24px;
    border-right: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}
.model-specs-bar__item:last-child { border-right: none; }
/* When items fit, distribute evenly */
.model-specs-bar--fit .model-specs-bar__item { flex: 1 1 0; }
.model-specs-bar__value {
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 6px;
    white-space: nowrap;
}
.model-specs-bar__label {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
}
/* Carousel arrows */
.specs-carousel__arrow {
    background: rgba(255,255,255,0.08);
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
    z-index: 2;
}
.specs-carousel__arrow:hover { background: rgba(255,255,255,0.18); }

/* --- Model Detail Content --- */
.model-detail {
    padding: 80px 40px;
    background: #fff;
}
.model-detail__container {
    max-width: 900px;
    margin: 0 auto;
}
.model-detail__intro {
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: center;
}
.model-detail__content {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}
.model-detail__content p { margin-bottom: 16px; }
.model-detail__content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 20px 0;
}

/* --- Other Models --- */
.model-others {
    padding: 80px 40px;
    background: #f8f6f3;
}
.model-others__container {
    max-width: 1200px;
    margin: 0 auto;
}
.model-others__title {
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 50px;
    letter-spacing: 0.05em;
}
.model-others__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.model-others__card {
    background: #fff;
    text-decoration: none;
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.model-others__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.model-others__card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: #f5f5f0;
}
.model-others__card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s;
}
.model-others__card:hover .model-others__card-image img {
    transform: scale(1.05);
}
.model-others__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #8b2e2e;
    color: #fff;
    padding: 4px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
}
.model-others__card-info {
    padding: 20px;
}
.model-others__card-info h3 {
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 6px;
}
.model-others__card-info p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}


/* ======================================================
   BRAND & MODEL RESPONSIVE
   ====================================================== */
@media (max-width: 1024px) {
    .brand-hero__content { left: 40px; bottom: 60px; }
    .brand-hero__title { font-size: 3rem; }
    .brand-carousel { padding: 0 40px; }
    .brand-section__characteristics { padding: 0 40px; gap: 40px; }
    .brand-section__char-text { flex: 0 0 45%; max-width: 45%; }
}

@media (max-width: 768px) {
    .brand-hero { height: 70vh; min-height: 400px; }
    .brand-hero__content { left: 24px; bottom: 40px; }
    .brand-hero__title { font-size: 2.2rem; }
    .brand-hero__subtitle { font-size: 0.95rem; }

    .brand-models { padding: 60px 0; }
    .brand-models__title { font-size: 1.8rem; }
    .brand-carousel { padding: 0 20px; }
    .brand-carousel__track { min-height: auto; }
    .brand-carousel__arrow { width: 40px; height: 40px; font-size: 0.85rem; }
    .brand-carousel__arrow--prev { left: 4px; }
    .brand-carousel__arrow--next { right: 4px; }
    .brand-carousel__specs { gap: 20px; flex-wrap: wrap; }
    .brand-carousel__spec-value { font-size: 1.1rem; }

    .brand-section__container { padding: 60px 24px; }
    .brand-section__title { font-size: 1.8rem; }

    .brand-section__fullwidth { flex-direction: column !important; min-height: auto; }
    .brand-section__image-half { min-height: 300px; }
    .brand-section__text-half { padding: 40px 24px; }

    .brand-section__characteristics { flex-direction: column; padding: 0 24px; gap: 40px; }
    .brand-section__char-text { flex: none; max-width: 100%; }
    .brand-section__char-images { min-height: 300px; }
    .brand-section__char-img--overlap { position: relative; bottom: -20px; right: auto; margin-left: auto; width: 70%; }

    /* Model detail responsive */
    .model-hero { height: 55vh; min-height: 350px; }
    .model-hero__content { left: 24px; bottom: 30px; }
    .model-hero__title { font-size: 2.2rem; }
    .model-hero__breadcrumb { font-size: 0.7rem; }

    .model-specs-bar__item { min-width: 110px; padding: 20px 15px; }
    .model-specs-bar__value { font-size: 1.2rem; }

    .model-detail { padding: 50px 24px; }
    .model-detail__intro { font-size: 1.15rem; }

    .model-others { padding: 50px 24px; }
    .model-others__grid { grid-template-columns: 1fr; }
}

/* ========================================
   CONTACT MAP SECTION
   ======================================== */
.section-contact-map { padding: 100px 0; background: #f5f6f8; }

.contact-wrapper {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    max-width: 1200px; margin: 0 auto; padding: 0 24px; align-items: stretch;
}

.contact-content {
    background: #fff; padding: 48px; border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    display: flex; flex-direction: column;
}

.contact-header { margin-bottom: 32px; }
.contact-label {
    display: inline-block; font-size: .75rem; text-transform: uppercase;
    letter-spacing: 3px; color: #0a3d62; margin-bottom: 12px; font-weight: 600;
}
.contact-title {
    font-size: 2rem; font-family: 'Playfair Amp', 'Playfair Display', serif; font-weight: 600;
    margin-bottom: 12px; color: #1a1a1a; line-height: 1.2;
}
.contact-desc { color: #777; margin-bottom: 0; line-height: 1.7; font-size: .95rem; }

.contact-form { flex: 1; display: flex; flex-direction: column; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.contact-form .form-field { display: flex; flex-direction: column; }
.contact-form .form-field:only-child { grid-column: 1 / -1; }
.contact-form label {
    font-size: .8rem; font-weight: 600; color: #0a3d62; margin-bottom: 8px;
    letter-spacing: .5px;
}
.contact-form input,
.contact-form textarea {
    width: 100%; padding: 14px 18px; border: 1.5px solid #e2e5ea; border-radius: 8px;
    font-size: .95rem; font-family: inherit; transition: all .25s ease;
    background: #fafbfc; box-sizing: border-box; color: #333;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #b0b8c4; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: #0a3d62; outline: none; background: #fff; box-shadow: 0 0 0 3px rgba(10,61,98,.08); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form > .form-field { margin-bottom: 20px; }
.contact-form > .form-field:last-of-type { flex: 1; }
.contact-form > .form-field:last-of-type textarea { flex: 1; }

.contact-submit {
    display: inline-flex; align-items: center; gap: 10px;
    width: 100%; justify-content: center;
    padding: 16px 28px; font-size: 1rem; font-weight: 600;
    background: #0a3d62; color: #fff; border: none; border-radius: 8px;
    cursor: pointer; transition: all .3s ease; margin-top: 8px;
    letter-spacing: .3px;
}
.contact-submit:hover { background: #0c4a75; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(10,61,98,.25); }
.contact-submit svg { flex-shrink: 0; }

.form-status { margin-top: 12px; padding: 12px 16px; border-radius: 8px; font-size: .9rem; }
.form-status--ok { background: #d4edda; color: #155724; }
.form-status--err { background: #f8d7da; color: #721c24; }

.contact-map { border-radius: 12px; overflow: hidden; min-height: 100%; }
.map-container { width: 100%; height: 100%; min-height: 500px; }
.map-container iframe { width: 100% !important; height: 100% !important; min-height: 500px; border: 0; border-radius: 12px; }
.map-placeholder {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
    height: 100%; min-height: 500px; background: #e9ecef; color: #888; font-size: .95rem; border-radius: 12px;
}

@media (max-width: 768px) {
    .section-contact-map { padding: 60px 0; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 32px; padding: 0 16px; }
    .contact-content { padding: 32px 24px; }
    .contact-form .form-row { grid-template-columns: 1fr; gap: 16px; }
    .contact-map { min-height: 300px; }
    .map-container { min-height: 300px; }
    .map-container iframe { min-height: 300px; }
    .contact-title { font-size: 1.6rem; }
}

/* ========================================
   DYNAMIC FORM SECTION
   ======================================== */
.section-dynamic-form {
    padding: 80px 0;
    background: #f8f9fa;
}
.dynamic-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}
.df-baseline {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 8px;
}
.df-title {
    font-size: 2rem;
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}
.df-description {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Form layout */
.df-form {
    position: relative;
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.df-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.df-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.df-field--full { flex: 0 0 100%; }
.df-field--half { flex: 0 0 calc(50% - 8px); }
.df-field--third { flex: 0 0 calc(33.333% - 11px); }

/* Labels */
.df-field > label {
    font-size: .9rem;
    font-weight: 500;
    color: #333;
}
.df-required {
    color: #a65a49;
    margin-left: 2px;
}

/* Inputs */
.df-field input[type="text"],
.df-field input[type="email"],
.df-field input[type="tel"],
.df-field input[type="number"],
.df-field input[type="date"],
.df-field select,
.df-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: .95rem;
    font-family: inherit;
    transition: border-color .2s, background .2s;
    background: #fafafa;
    box-sizing: border-box;
}
.df-field input:focus,
.df-field select:focus,
.df-field textarea:focus {
    border-color: #0a3d62;
    outline: none;
    background: #fff;
}
.df-field textarea { resize: vertical; }
.df-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

/* Help text */
.df-help {
    font-size: .8rem;
    color: #999;
    line-height: 1.4;
}

/* Heading & Separator */
.df-field--heading h3 {
    font-size: 1.2rem;
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    font-weight: 600;
    color: #1a1a1a;
    margin: 10px 0 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #a65a49;
}
.df-field--heading .df-help { margin-top: 4px; }
.df-field--separator hr {
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 8px 0;
}

/* Radio & Checkbox groups */
.df-radio-group,
.df-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.df-radio-label,
.df-checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    cursor: pointer;
    font-size: .9rem;
    transition: border-color .2s, background .2s;
}
.df-radio-label:hover,
.df-checkbox-label:hover {
    border-color: #0a3d62;
    background: #f0f4f8;
}
.df-radio-label input:checked + span,
.df-checkbox-label input:checked + span {
    font-weight: 600;
    color: #0a3d62;
}
.df-radio-label input,
.df-checkbox-label input {
    width: auto;
    accent-color: #a65a49;
}

/* File upload */
.df-file-upload {
    position: relative;
}
.df-file-upload input[type="file"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px dashed #ddd;
    border-radius: 6px;
    background: #fafafa;
    cursor: pointer;
    font-size: .9rem;
    transition: border-color .2s;
}
.df-file-upload input[type="file"]:hover {
    border-color: #0a3d62;
}
.df-file-hint {
    font-size: .78rem;
    color: #aaa;
    margin-top: 4px;
}

/* Submit button */
.df-submit-row {
    margin-top: 24px;
    display: flex;
    justify-content: flex-end;
}
.df-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #a65a49;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s, transform .15s;
}
.df-submit-btn:hover {
    background: #8e4a3b;
    transform: translateY(-1px);
}
.df-submit-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
}
.df-submit-btn svg { flex-shrink: 0; }

/* Status message */
.df-status {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: .9rem;
}
.df-status--ok { background: #d4edda; color: #155724; }
.df-status--err { background: #f8d7da; color: #721c24; }

/* Success overlay */
.df-success-overlay {
    position: absolute;
    inset: 0;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    animation: dfFadeIn .5s ease;
}
.df-success-inner {
    text-align: center;
    padding: 40px;
}
.df-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #d4edda;
    border-radius: 50%;
    margin-bottom: 20px;
    color: #28a745;
    animation: dfScaleIn .4s ease .2s both;
}
.df-success-title {
    font-size: 1.2rem;
    font-family: 'Playfair Amp', 'Playfair Display', serif;
    color: #333;
    line-height: 1.5;
}
@keyframes dfFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes dfScaleIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .section-dynamic-form { padding: 50px 0; }
    .dynamic-form-container { padding: 0 16px; }
    .df-title { font-size: 1.6rem; }
    .df-form { padding: 24px 20px; }
    .df-field--half,
    .df-field--third {
        flex: 0 0 100%;
    }
    .df-submit-btn { width: 100%; justify-content: center; }
    .df-radio-group,
    .df-checkbox-group { flex-direction: column; }
}

/* ==========================================================================
   Gallery Lightbox
   ========================================================================== */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}
.gallery-lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}
.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
    z-index: 1;
}
.gallery-lightbox-close:hover {
    opacity: 1;
}
.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    cursor: pointer;
    padding: 20px;
    opacity: 0.7;
    transition: opacity 0.2s;
    z-index: 1;
}
.gallery-lightbox-nav:hover {
    opacity: 1;
}
.gallery-lightbox-prev {
    left: 20px;
}
.gallery-lightbox-next {
    right: 20px;
}
.gallery-item {
    cursor: pointer;
}
