:root {
    --gold: #c8963e;
    --gold-dark: #a87524;
    --gold-soft: #e4c27f;
    --ink: #111722;
    --muted: #6d727c;
    --paper: #f8f8f6;
    --line: #e7e7e4;
    --dark: #0b0e12;
    --dark-2: #12171d;
    --white: #ffffff;
    --max: 1180px;
    --radius: 10px;
    --shadow: 0 18px 45px rgba(18, 24, 33, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { line-height: 1.15; }

.ms-container {
    width: min(var(--max), calc(100% - 48px));
    margin-inline: auto;
}

/* HEADER */
.site-header {
    position: absolute;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;
    color: #fff;
    background: linear-gradient(180deg, rgba(0,0,0,.88), rgba(0,0,0,.42) 68%, rgba(0,0,0,0));
    border-bottom: 1px solid rgba(255,255,255,.09);
}
.header-shell {
    width: min(var(--max), calc(100% - 48px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
}
.logo {
    min-width: 205px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto;
    color: #fff;
}
.logo img {
    width: auto;
    max-width: 205px;
    max-height: 58px;
    object-fit: contain;
}
.logo-mark {
    color: var(--gold);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -.06em;
}
.logo-copy { display: flex; flex-direction: column; line-height: 1.08; }
.logo-copy strong { color: #fff; font-size: .82rem; letter-spacing: .05em; }
.logo-copy small { margin-top: 4px; color: var(--gold-soft); font-size: .55rem; font-weight: 700; letter-spacing: .17em; }
.nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    font-size: .78rem;
    font-weight: 700;
    white-space: nowrap;
}
.nav > a,
.nav-dropdown-toggle {
    position: relative;
    min-height: 82px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    border: 0;
    background: transparent;
    color: #fff;
    font: inherit;
    cursor: pointer;
    transition: color .2s ease;
}
.nav > a::after,
.nav-dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 20px;
    height: 2px;
    background: var(--gold);
    transition: right .22s ease;
}
.nav > a:hover,
.nav-dropdown-toggle:hover,
.nav > a.is-active,
.nav-dropdown.is-active .nav-dropdown-toggle { color: var(--gold-soft); }
.nav > a:hover::after,
.nav > a.is-active::after,
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.is-active .nav-dropdown-toggle::after { right: 0; }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { gap: 5px; }
.nav-dropdown-toggle svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    transition: transform .2s ease;
}
.nav-dropdown-menu {
    position: absolute;
    z-index: 1100;
    top: calc(100% - 7px);
    left: 50%;
    width: 245px;
    padding: 9px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 8px;
    background: rgba(11,14,18,.98);
    box-shadow: 0 18px 45px rgba(0,0,0,.35);
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}
.nav-dropdown-menu a {
    display: block;
    padding: 9px 11px;
    border-radius: 5px;
    color: rgba(255,255,255,.82);
    font-size: .76rem;
    line-height: 1.3;
    white-space: normal;
}
.nav-dropdown-menu a:hover { color: #fff; background: rgba(200,150,62,.16); }
.nav-dropdown-menu .nav-dropdown-all {
    margin-top: 6px;
    padding-top: 11px;
    border-top: 1px solid rgba(255,255,255,.10);
    color: var(--gold-soft);
    font-weight: 800;
}
.header-phone {
    min-height: 39px;
    padding: 8px 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    border: 1px solid rgba(200,150,62,.9);
    border-radius: 7px;
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    white-space: nowrap;
}
.header-phone svg { width: 15px; height: 15px; fill: none; stroke: var(--gold); stroke-width: 1.7; }
.header-phone:hover { background: var(--gold); color: #111; }
.header-phone:hover svg { stroke: #111; }
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    margin-left: auto;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 6px;
    background: rgba(0,0,0,.24);
    cursor: pointer;
}
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: #fff; }

/* HERO */
.ms-hero {
    position: relative;
    height: 650px;
    min-height: 590px;
    overflow: hidden;
    color: #fff;
    background: #151515;
}
.ms-hero-slides, .ms-hero-slide { position: absolute; inset: 0; }
.ms-hero-slide {
    opacity: 0;
    visibility: hidden;
    background-image: var(--hero-image), linear-gradient(135deg, #332d25, #08090a 65%);
    background-size: cover;
    background-position: center;
    transition: opacity .7s ease, visibility .7s ease;
}
.ms-hero-slide.active { opacity: 1; visibility: visible; z-index: 2; }
.ms-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.52) 44%, rgba(0,0,0,.15) 76%),
        linear-gradient(180deg, rgba(0,0,0,.14), rgba(0,0,0,.34));
}
.ms-hero-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 64px;
}
.ms-hero-content { width: min(650px, 65%); }
.ms-hero-kicker, .ms-eyebrow {
    margin-bottom: 10px;
    color: var(--gold);
    font-size: .69rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.ms-hero h1 {
    margin-bottom: 19px;
    font-size: clamp(2.65rem, 4.5vw, 4.75rem);
    font-weight: 800;
    letter-spacing: -.035em;
    max-width: 760px;
}
.ms-hero-description {
    max-width: 565px;
    margin-bottom: 28px;
    color: rgba(255,255,255,.88);
    font-size: 1.02rem;
}
.ms-hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.ms-btn {
    min-height: 44px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 0;
    border-radius: 6px;
    font-size: .78rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}
.ms-btn:hover { transform: translateY(-2px); }
.ms-btn-gold { background: linear-gradient(135deg, #d3a653, #b27d27); color: #fff; }
.ms-btn-gold:hover { background: #e0b25b; }
.ms-btn-white { background: #fff; color: #151922; }
.ms-btn-small { min-height: 38px; padding: 10px 17px; font-size: .72rem; }
.ms-video-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: .79rem;
    font-weight: 700;
}
.ms-play {
    width: 39px;
    height: 39px;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: .65rem;
}
.ms-slider-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 50%;
    background: rgba(0,0,0,.22);
    color: #fff;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
}
.ms-slider-arrow-prev { left: 17px; }
.ms-slider-arrow-next { right: 17px; }
.ms-slider-dots {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 57px;
    transform: translateX(-50%);
}
.ms-slider-dots button {
    width: 28px;
    height: 3px;
    margin: 0 4px;
    border: 0;
    background: rgba(255,255,255,.45);
}
.ms-slider-dots button.active { background: var(--gold); }

/* PREMIUM CATEGORY STRIP */
.ms-category-strip-wrap {
    position: relative;
    z-index: 10;
    margin-top: -46px;
}
.ms-category-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0,1fr));
    background: rgba(255,255,255,.97);
    border: 1px solid rgba(18,22,27,.08);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(10,14,20,.16);
    overflow: hidden;
    backdrop-filter: blur(14px);
}
.ms-category-strip-item {
    position: relative;
    min-height: 110px;
    padding: 18px 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
    text-align: center;
    border-right: 1px solid rgba(18,22,27,.08);
    color: #171b21;
    overflow: hidden;
    transition: transform .28s ease, background .28s ease, color .28s ease, box-shadow .28s ease;
}
.ms-category-strip-item::after {
    content: '';
    position: absolute;
    left: 24%;
    right: 24%;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c89532, transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .28s ease;
}
.ms-category-strip-item:last-child { border-right: 0; }
.ms-category-strip-item:hover {
    z-index: 2;
    color: #b77f1d;
    background: linear-gradient(180deg,#fff,#fbf5e9);
    transform: translateY(-7px);
    box-shadow: 0 16px 30px rgba(34,25,8,.12);
}
.ms-category-strip-item:hover::after { transform: scaleX(1); }
.ms-category-strip-icon {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    color: #1c222a;
    transition: color .28s ease, transform .28s ease;
}
.ms-category-strip-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}
.ms-category-strip-item:hover .ms-category-strip-icon {
    color: #c89532;
    transform: translateY(-2px) scale(1.06);
}
.ms-category-strip-item strong {
    font-size: .76rem;
    font-weight: 750;
    letter-spacing: .01em;
}

/* GENERAL SECTIONS */
.ms-section { padding: 72px 0; }
.ms-section-heading { margin-bottom: 30px; }
.ms-heading-center { text-align: center; }
.ms-section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(1.75rem, 2.7vw, 2.55rem);
    font-weight: 800;
    letter-spacing: -.025em;
}
.ms-title-line {
    width: 34px;
    height: 2px;
    display: block;
    margin: 14px auto 0;
    background: var(--gold);
}
.ms-heading-light h2 { color: #fff; }
.ms-center-action { margin-top: 27px; text-align: center; }

/* CATEGORY CARDS */
.ms-categories-section { padding-top: 66px; background: #fff; }
.ms-category-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 14px;
}
.ms-category-card {
    position: relative;
    min-height: 220px;
    border-radius: 7px;
    overflow: hidden;
    background: linear-gradient(135deg, #8d877d, #272829);
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.ms-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.62));
    transition: background .3s ease;
}
.ms-category-card:hover .ms-card-shade { background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.48)); }
.ms-category-card-content {
    position: absolute;
    z-index: 2;
    inset: auto 20px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: #fff;
    text-align: center;
}
.ms-category-card-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: #d5a341;
}
.ms-category-card-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.ms-category-card strong { font-size: 1rem; }

/* BRAND LOGOS */
.ms-brands-logo-section { padding-top: 42px; padding-bottom: 62px; }
.ms-brand-logo-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0,1fr));
    gap: 14px;
}
.ms-brand-logo-card {
    height: 92px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e7e7e7;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,.03);
    transition: box-shadow .2s ease, transform .2s ease;
}
.ms-brand-logo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.ms-brand-logo-card img { max-height: 48px; max-width: 88%; object-fit: contain; }
.ms-brand-logo-card strong { font-size: 1.25rem; letter-spacing: .04em; }

/* FEATURED BRANDS */
.ms-featured-brands {
    padding: 57px 0 63px;
    background: radial-gradient(circle at 50% 0, #192029, #090c10 70%);
}
.ms-featured-brand-slider { position: relative; }
.ms-featured-brand-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 20px;
}
.ms-featured-brand-card {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: 7px;
    background: linear-gradient(135deg, #423e37, #17191c);
    background-size: cover;
    background-position: center;
}
.ms-featured-brand-card .ms-card-shade { background: rgba(0,0,0,.42); }
.ms-featured-brand-content {
    position: absolute;
    z-index: 2;
    inset: 0;
    padding: 25px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: center;
}
.ms-featured-brand-content img { max-width: 75%; max-height: 50px; object-fit: contain; filter: brightness(0) invert(1); }
.ms-featured-brand-content h3 { margin: 0; color: #fff; font-size: 1.55rem; }
.ms-collection-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(0,0,0,.25);
    color: #fff;
    font-size: 1.45rem;
}
.ms-collection-prev { left: -52px; }
.ms-collection-next { right: -52px; }

/* BENEFITS */
.ms-why-section { padding-top: 62px; padding-bottom: 58px; background: #fff; }
.ms-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 18px;
}
.ms-benefit-card {
    min-height: 125px;
    padding: 20px 18px;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: start;
    border: 1px solid #ececec;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 5px 16px rgba(0,0,0,.035);
}
.ms-benefit-icon {
    color: var(--gold);
    font-size: 2rem;
    line-height: 1;
}
.ms-benefit-card h3 { margin: 0 0 7px; font-size: .86rem; }
.ms-benefit-card p { margin: 0; color: var(--muted); font-size: .71rem; line-height: 1.55; }

/* PROJECTS */
.ms-projects-section { padding-top: 30px; padding-bottom: 70px; }
.ms-project-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 16px;
}
.ms-project-card {
    position: relative;
    min-height: 205px;
    border-radius: 6px;
    overflow: hidden;
    background: #d7d4cd;
}
.ms-project-card img, .ms-project-placeholder { width: 100%; height: 100%; object-fit: cover; }
.ms-project-card img { transition: transform .4s ease; }
.ms-project-card:hover img { transform: scale(1.04); }
.ms-project-overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 35px 16px 14px;
    display: flex;
    flex-direction: column;
    color: #fff;
    background: linear-gradient(transparent, rgba(0,0,0,.75));
    opacity: 0;
    transition: opacity .25s ease;
}
.ms-project-card:hover .ms-project-overlay { opacity: 1; }
.ms-project-overlay small { opacity: .8; }

/* CTA */
.ms-home-cta {
    padding: 60px 0;
    color: #fff;
    background: linear-gradient(135deg, #12171d, #080a0d);
}
.ms-home-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}
.ms-home-cta h2 { max-width: 720px; margin: 0; font-size: clamp(1.7rem, 3vw, 2.65rem); }

/* GENERIC INNER PAGES */
.section { padding: 90px max(24px, calc((100vw - var(--max))/2)); }
.section.dark { background: var(--dark); color: #fff; }
.section-head { margin-bottom: 35px; }
.section-head h2 { font-size: clamp(2rem,4vw,3rem); }
.eyebrow { color: var(--gold); font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.btn { display: inline-flex; align-items:center; justify-content:center; padding: 13px 22px; border:0; border-radius:5px; background:var(--gold); color:#fff; font-weight:700; cursor:pointer; }
.btn.ghost { background:transparent; border:1px solid rgba(255,255,255,.6); }
.cards { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:24px; }
.card { overflow:hidden; border:1px solid var(--line); border-radius:8px; background:#fff; box-shadow:0 8px 22px rgba(0,0,0,.04); }
.card-image { height:280px; background:#d8d4cc center/cover no-repeat; }
.card>div:last-child { padding:22px; }
.page-hero { padding: 150px max(24px, calc((100vw - var(--max))/2)) 80px; background:linear-gradient(135deg,#171b20,#090b0e); color:#fff; }
.page-hero h1 { margin:0; font-size:clamp(2.6rem,6vw,4.8rem); }
.detail-hero { min-height:560px; padding:130px max(24px,calc((100vw - var(--max))/2)) 70px; display:flex; align-items:flex-end; background:#111 center/cover no-repeat; color:#fff; }
.detail-grid,.contact-grid { width:min(var(--max),calc(100% - 48px)); margin:0 auto; padding:75px 0; display:grid; grid-template-columns:2fr 1fr; gap:65px; }
.prose { width:min(900px,calc(100% - 48px)); margin:auto; padding:75px 0; }
.specs { display:grid; grid-template-columns:180px 1fr; }
.specs dt,.specs dd { margin:0; padding:13px; border-bottom:1px solid var(--line); }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:17px; }
.form-grid label { display:flex; flex-direction:column; gap:6px; font-weight:700; font-size:.84rem; }
.form-grid input,.form-grid textarea,.form-grid select { width:100%; padding:12px 13px; border:1px solid #d6d6d2; border-radius:4px; background:#fff; }
.form-grid .full { grid-column:1/-1; }
.check { flex-direction:row!important; align-items:center; }
.hp { position:absolute; left:-9999px; }
.notice,.success { padding:14px; background:#eaf5e8; }
.error { padding:14px; background:#ffe5e5; color:#9d2525; }
.installer { min-height:100vh; padding:55px 20px; background:#111; }
.panel { max-width:850px; margin:auto; padding:45px; background:#fff; border-radius:10px; }

/* FOOTER */
footer {
    padding: 60px max(24px, calc((100vw - var(--max))/2)) 25px;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.35fr;
    gap: 45px;
    color: #aeb3ba;
    background: radial-gradient(circle at 45% 0, #151b22, #080b0e 70%);
}
footer .logo { margin-bottom: 18px; }
footer h3 { margin-bottom: 16px; color:#fff; font-size:.95rem; }
footer p { font-size:.79rem; }
footer a { display:block; margin:7px 0; font-size:.78rem; transition:color .2s ease; }
footer a:hover { color:var(--gold); }
.copyright { grid-column:1/-1; padding-top:20px; border-top:1px solid rgba(255,255,255,.12); font-size:.72rem; }
.whatsapp {
    position: fixed;
    z-index: 80;
    right: 22px;
    bottom: 22px;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 9px 24px rgba(0,0,0,.24);
}

@media (max-width: 1220px) {
    .ms-collection-prev { left: 8px; }
    .ms-collection-next { right: 8px; }
    .ms-featured-brand-slider { padding-inline: 50px; }
    .nav { gap: 16px; font-size: .73rem; }
}

@media (max-width: 980px) {
    .site-header { height: 72px; position:absolute; }
    .menu-toggle { display:block; }
    .nav {
        display:none;
        position:absolute;
        top:72px;
        left:0;
        right:0;
        padding:22px 24px;
        flex-direction:column;
        align-items:stretch;
        gap:16px;
        background:rgba(10,12,15,.98);
        border-top:1px solid rgba(255,255,255,.08);
    }
    .nav.open { display:flex; }
    .nav a::after { display:none; }
    .nav-cta { text-align:center; }
    .ms-hero { height:620px; }
    .ms-hero-content { width:78%; }
    .ms-category-strip { grid-template-columns:repeat(3,1fr); }
    .ms-category-strip-item:nth-child(3n) { border-right:0; }
    .ms-category-strip-item:nth-child(-n+3) { border-bottom:1px solid #ececec; }
    .ms-category-cards { grid-template-columns:repeat(2,1fr); }
    .ms-brand-logo-grid { grid-template-columns:repeat(3,1fr); }
    .ms-featured-brand-track { grid-template-columns:repeat(2,1fr); }
    .ms-benefit-grid { grid-template-columns:repeat(2,1fr); }
    .ms-project-grid { grid-template-columns:repeat(2,1fr); }
    .detail-grid,.contact-grid { grid-template-columns:1fr; }
    footer { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 640px) {
    .ms-container { width:min(100% - 30px,var(--max)); }
    .logo img { max-width:165px; }
    .ms-hero { height:590px; min-height:540px; }
    .ms-hero-inner { align-items:flex-end; padding-bottom:105px; }
    .ms-hero-content { width:100%; }
    .ms-hero h1 { font-size:2.45rem; }
    .ms-hero-description { font-size:.92rem; }
    .ms-slider-arrow { top:auto; bottom:32px; }
    .ms-slider-dots { bottom:47px; }
    .ms-category-strip-wrap { margin-top:-28px; }
    .ms-category-strip { grid-template-columns:repeat(2,1fr); }
    .ms-category-strip-item { min-height:82px; }
    .ms-category-strip-item:nth-child(3n) { border-right:1px solid #ececec; }
    .ms-category-strip-item:nth-child(2n) { border-right:0; }
    .ms-category-strip-item:nth-child(-n+4) { border-bottom:1px solid #ececec; }
    .ms-section { padding:55px 0; }
    .ms-category-cards,.ms-featured-brand-track,.ms-benefit-grid,.ms-project-grid { grid-template-columns:1fr; }
    .ms-category-card { min-height:210px; }
    .ms-brand-logo-grid { grid-template-columns:repeat(2,1fr); }
    .ms-featured-brand-slider { padding-inline:0; }
    .ms-collection-arrow { display:none; }
    .ms-featured-brand-card { height:210px; }
    .ms-home-cta-inner { flex-direction:column; align-items:flex-start; }
    .cards { grid-template-columns:1fr; }
    .form-grid { grid-template-columns:1fr; }
    .form-grid .full { grid-column:auto; }
    .specs { grid-template-columns:1fr; }
    footer { grid-template-columns:1fr; gap:28px; }
    .panel { padding:28px 20px; }
}


/* HEADER RESPONSIVE FIX */
@media (max-width: 1120px) {
    .header-shell { width: min(var(--max), calc(100% - 32px)); gap: 18px; }
    .logo { min-width: 175px; }
    .logo img { max-width: 175px; }
    .nav { gap: 15px; font-size: .72rem; }
    .header-phone { display: none; }
}
@media (max-width: 900px) {
    .site-header { height: 72px; }
    .header-shell { width: calc(100% - 30px); }
    .logo { min-width: 0; }
    .logo img { max-width: 170px; max-height: 49px; }
    .menu-toggle { display: block; }
    .nav {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        margin: 0;
        padding: 14px 18px 22px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(9,12,16,.99);
        border-top: 1px solid rgba(255,255,255,.08);
        box-shadow: 0 18px 35px rgba(0,0,0,.3);
    }
    .nav.open { display: flex; }
    .nav > a, .nav-dropdown-toggle { width: 100%; min-height: 45px; justify-content: space-between; }
    .nav > a::after, .nav-dropdown-toggle::after { display: none; }
    .nav-dropdown-menu {
        position: static;
        width: 100%;
        padding: 0 0 7px 12px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        border: 0;
        background: transparent;
        box-shadow: none;
    }
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu { display: block; transform: none; }
    .nav-dropdown-menu a { padding: 8px 10px; }
}
@media (max-width: 520px) {
    .logo-copy strong { font-size: .7rem; }
    .logo-copy small { font-size: .48rem; }
    .logo-mark { font-size: 1.7rem; }
}
/* Header logo boyutu */
.site-header .logo,
.site-header .site-logo,
.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-header .logo img,
.site-header .site-logo img,
.header-logo img {
    width: 300px !important;
    height: auto !important;
    max-width: none !important;
    max-height: 86px !important;
    object-fit: contain;
    object-position: left center;
    display: block;
}

@media (max-width: 1200px) {
    .site-header .logo img,
    .site-header .site-logo img,
    .header-logo img {
        width: 245px !important;
        max-height: 72px !important;
    }
}

@media (max-width: 768px) {
    .site-header .logo img,
    .site-header .site-logo img,
    .header-logo img {
        width: 360px !important;
        max-height: 100px !important;
    }
}
/* =========================================================
   ÜRÜN DETAY SAYFASI
   Galeri, teknik bilgiler ve mobil uyumluluk
========================================================= */

.product-detail {
    width: min(var(--max), calc(100% - 48px));
    margin: 0 auto;
    padding: 80px 0;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
    gap: 64px;
    align-items: start;
}

/* Ürün galerisi */

.product-gallery {
    min-width: 0;
    position: sticky;
    top: 30px;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #f2f1ed;
    box-shadow: var(--shadow);
}

.product-main-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition:
        opacity .2s ease,
        transform .35s ease;
}

.product-main-image:hover img {
    transform: scale(1.015);
}

.product-thumbnails {
    width: 100%;
    margin-top: 15px;
    padding-bottom: 5px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 11px;
}

.product-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 0;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 7px;
    background: #f2f1ed;
    cursor: pointer;
    transition:
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.product-thumbnail:hover {
    transform: translateY(-2px);
    border-color: rgba(200, 150, 62, .55);
    box-shadow: 0 7px 16px rgba(0, 0, 0, .10);
}

.product-thumbnail.active {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px rgba(200, 150, 62, .18);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Ürün bilgi alanı */

.product-information {
    min-width: 0;
}

.product-meta {
    margin-bottom: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.product-meta-item {
    min-height: 76px;
    padding: 15px 17px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--paper);
    transition:
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.product-meta-item:hover {
    transform: translateY(-2px);
    border-color: rgba(200, 150, 62, .55);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
}

.product-meta-item span {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.product-meta-item strong {
    color: var(--ink);
    font-size: .98rem;
}

.product-description.prose {
    width: 100%;
    margin: 0;
    padding: 0;
    color: #4e545d;
}

.product-description.prose p:last-child {
    margin-bottom: 0;
}

.product-specification-section,
.product-technical-text {
    margin-top: 34px;
}

.product-specification-section h2,
.product-technical-text h2 {
    margin-bottom: 18px;
    padding-bottom: 12px;
    position: relative;
    font-size: 1.35rem;
}

.product-specification-section h2::after,
.product-technical-text h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 2px;
    background: var(--gold);
}

.product-specification-section .specs {
    display: grid;
    grid-template-columns: minmax(135px, .7fr) minmax(0, 1.3fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-bottom: 0;
    border-radius: 8px;
    background: #fff;
}

.product-specification-section .specs dt,
.product-specification-section .specs dd {
    min-width: 0;
    margin: 0;
    padding: 13px 15px;
    border-bottom: 1px solid var(--line);
    overflow-wrap: anywhere;
}

.product-specification-section .specs dt {
    color: #343a43;
    background: var(--paper);
    font-size: .82rem;
    font-weight: 800;
}

.product-specification-section .specs dd {
    color: #5d626b;
    background: #fff;
    font-size: .86rem;
}

.product-technical-text .prose {
    width: 100%;
    margin: 0;
    padding: 0;
    color: #555b64;
}

.product-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.product-actions .btn {
    min-height: 47px;
    padding-inline: 22px;
}

/* Detay üst alanı */

.detail-hero > div {
    width: min(var(--max), 100%);
}

.detail-hero h1 {
    max-width: 850px;
    margin-bottom: 16px;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.detail-hero p:not(.eyebrow) {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .86);
    font-size: 1rem;
}

/* Benzer ürünler */

.product-detail + .section {
    border-top: 1px solid var(--line);
    background: var(--paper);
}

.product-detail + .section .card-image {
    height: 260px;
}

/* Tablet */

@media (max-width: 1024px) {
    .product-detail {
        gap: 38px;
        grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
    }

    .product-thumbnails {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Mobil ve küçük tablet */

@media (max-width: 820px) {
    .detail-hero {
        min-height: 460px;
        padding-top: 120px;
        padding-bottom: 52px;
    }

    .product-detail {
        width: min(var(--max), calc(100% - 32px));
        padding: 48px 0 58px;
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .product-gallery {
        position: static;
        top: auto;
    }

    .product-main-image {
        aspect-ratio: 4 / 3;
    }

    .product-thumbnails {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        overscroll-behavior-inline: contain;
        scrollbar-width: thin;
    }

    .product-thumbnail {
        width: 82px;
        min-width: 82px;
        flex: 0 0 82px;
        scroll-snap-align: start;
    }

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

    .product-detail + .section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* Telefon */

@media (max-width: 560px) {
    .detail-hero {
        min-height: 390px;
        padding:
            110px 18px
            38px;
    }

    .detail-hero h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .detail-hero p:not(.eyebrow) {
        font-size: .9rem;
        line-height: 1.6;
    }

    .product-detail {
        width: calc(100% - 28px);
        padding: 34px 0 48px;
        gap: 30px;
    }

    .product-main-image {
        aspect-ratio: 1 / 1;
        border-radius: 8px;
    }

    .product-thumbnail {
        width: 70px;
        min-width: 70px;
        flex-basis: 70px;
    }

    .product-meta {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .product-meta-item {
        min-height: 64px;
        padding: 12px 14px;
    }

    .product-specification-section,
    .product-technical-text {
        margin-top: 28px;
    }

    .product-specification-section h2,
    .product-technical-text h2 {
        font-size: 1.2rem;
    }

    .product-specification-section .specs {
        display: block;
        border-bottom: 1px solid var(--line);
    }

    .product-specification-section .specs dt,
    .product-specification-section .specs dd {
        display: block;
        width: 100%;
    }

    .product-specification-section .specs dt {
        padding-bottom: 6px;
        border-bottom: 0;
    }

    .product-specification-section .specs dd {
        padding-top: 5px;
    }

    .product-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .product-actions .btn {
        width: 100%;
        text-align: center;
    }

    .product-detail + .section {
        padding:
            48px 16px;
    }
}
.product-main-image img.changing {
    opacity: .35;
}
/* =========================================================
   EVZ ÜRÜN DETAY — KESİN DÜZELTME
   Bu bölüm site.css dosyasının EN ALTINDA bulunmalıdır.
========================================================= */

body.page-urun {
    background: #f5f3ee;
}

/* Üst kapak */

body.page-urun .detail-hero {
    position: relative;
    min-height: 520px;
    padding: 150px 24px 70px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
    background-color: #15181d;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

body.page-urun .detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(
            180deg,
            rgba(5, 7, 10, .14) 0%,
            rgba(5, 7, 10, .42) 50%,
            rgba(5, 7, 10, .9) 100%
        );
    pointer-events: none;
}

body.page-urun .detail-hero > div {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    margin: 0 auto;
}

body.page-urun .detail-hero .eyebrow {
    margin: 0 0 14px;
    color: var(--gold-soft);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}

body.page-urun .detail-hero h1 {
    max-width: 900px;
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(2.7rem, 6vw, 5.2rem);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: .98;
}

body.page-urun .detail-hero p:not(.eyebrow) {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 1.04rem;
    line-height: 1.75;
}

/* Ana ürün düzeni */

body.page-urun .product-detail {
    width: min(1180px, calc(100% - 48px)) !important;
    margin: 0 auto !important;
    padding: 76px 0 90px !important;
    display: grid !important;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(360px, .92fr) !important;
    gap: 64px !important;
    align-items: start !important;
}

/* Galeri */

body.page-urun .product-gallery {
    min-width: 0;
    display: block !important;
}

body.page-urun .product-main-image {
    position: relative;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 3;
    margin: 0 !important;
    overflow: hidden;
    border: 1px solid rgba(17, 23, 34, .1);
    border-radius: 14px;
    background: #e9e7e1;
    box-shadow: 0 22px 55px rgba(17, 23, 34, .13);
}

body.page-urun .product-main-image img {
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    margin: 0 !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
    transition:
        opacity .22s ease,
        transform .4s ease;
}

body.page-urun .product-main-image:hover img {
    transform: scale(1.02);
}

body.page-urun .product-main-image img.changing {
    opacity: .3;
}

/* Küçük görseller masaüstünde yan yana */

body.page-urun .product-thumbnails {
    width: 100%;
    margin: 14px 0 0 !important;
    padding: 0 0 4px !important;
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 11px !important;
    align-items: stretch;
}

body.page-urun .product-thumbnail {
    position: relative;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    overflow: hidden;
    appearance: none;
    border: 2px solid transparent;
    border-radius: 9px;
    outline: none;
    background: #e7e5df;
    cursor: pointer;
    box-shadow: none;
    transition:
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

body.page-urun .product-thumbnail:hover {
    transform: translateY(-2px);
    border-color: rgba(200, 150, 62, .55);
    box-shadow: 0 9px 20px rgba(17, 23, 34, .12);
}

body.page-urun .product-thumbnail.active {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 150, 62, .14);
}

body.page-urun .product-thumbnail img {
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    margin: 0 !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
}

/* Sağ bilgi kartı */

body.page-urun .product-information {
    min-width: 0;
    padding: 38px;
    border: 1px solid rgba(17, 23, 34, .09);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 20px 48px rgba(17, 23, 34, .08);
}

body.page-urun .product-meta {
    margin: 0 0 30px;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
}

body.page-urun .product-meta-item {
    min-width: 0;
    min-height: 78px;
    padding: 15px 17px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--paper);
    transition:
        border-color .2s ease,
        transform .2s ease;
}

body.page-urun .product-meta-item:hover {
    transform: translateY(-2px);
    border-color: rgba(200, 150, 62, .65);
}

body.page-urun .product-meta-item span {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

body.page-urun .product-meta-item strong {
    color: var(--ink);
    font-size: .95rem;
    line-height: 1.35;
}

/* Açıklama metni */

body.page-urun .product-description,
body.page-urun .product-description.prose {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #555c66;
    font-size: .96rem;
    line-height: 1.85;
}

body.page-urun .product-description p {
    margin: 0 0 16px;
}

body.page-urun .product-description p:first-child::first-letter {
    color: var(--gold-dark);
    font-size: 2.7rem;
    font-weight: 800;
    line-height: .8;
}

body.page-urun .product-description h2,
body.page-urun .product-description h3,
body.page-urun .product-description h4 {
    margin: 28px 0 12px;
    color: var(--ink);
}

body.page-urun .product-description ul,
body.page-urun .product-description ol {
    margin: 18px 0;
    padding-left: 22px;
}

body.page-urun .product-description li {
    margin-bottom: 7px;
}

/* Bölüm başlıkları */

body.page-urun .product-specification-section,
body.page-urun .product-technical-text {
    margin-top: 38px;
}

body.page-urun .product-specification-section h2,
body.page-urun .product-technical-text h2 {
    position: relative;
    margin: 0 0 20px;
    padding: 0 0 14px;
    color: var(--ink);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -.02em;
}

body.page-urun .product-specification-section h2::after,
body.page-urun .product-technical-text h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    border-radius: 20px;
    background: var(--gold);
}

/* Teknik özellik tablosu */

body.page-urun .product-specification-section .specs {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns:
        minmax(130px, .75fr)
        minmax(0, 1.25fr) !important;
    overflow: hidden;
    border: 1px solid var(--line);
    border-bottom: 0;
    border-radius: 10px;
    background: #fff;
}

body.page-urun .product-specification-section .specs dt,
body.page-urun .product-specification-section .specs dd {
    min-width: 0;
    margin: 0 !important;
    padding: 14px 16px !important;
    border-bottom: 1px solid var(--line);
    overflow-wrap: anywhere;
    line-height: 1.55;
}

body.page-urun .product-specification-section .specs dt {
    color: #313741;
    background: #f5f3ee;
    font-size: .79rem;
    font-weight: 800;
}

body.page-urun .product-specification-section .specs dd {
    color: #606670;
    background: #fff;
    font-size: .86rem;
}

body.page-urun .product-technical-text .prose {
    width: 100% !important;
    margin: 0 !important;
    padding: 19px 20px !important;
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
    background: #f7f5f0;
    color: #59606a;
    line-height: 1.8;
}

/* Butonlar */

body.page-urun .product-actions {
    margin-top: 36px;
    display: flex !important;
    flex-wrap: wrap;
    gap: 11px;
}

body.page-urun .product-actions .btn {
    min-height: 48px;
    padding: 13px 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    text-align: center;
}

/* Benzer ürünler */

body.page-urun .product-detail + .section {
    margin: 0;
    padding-top: 78px;
    padding-bottom: 88px;
    border-top: 1px solid var(--line);
    background: #fff;
}

/* Orta ekran */

@media (max-width: 1024px) {
    body.page-urun .product-detail {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(320px, .86fr) !important;
        gap: 36px !important;
    }

    body.page-urun .product-information {
        padding: 30px;
    }

    body.page-urun .product-thumbnails {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

/* Tablet ve mobil */

@media (max-width: 820px) {
    body.page-urun .detail-hero {
        min-height: 440px;
        padding: 125px 20px 48px;
    }

    body.page-urun .detail-hero h1 {
        font-size: clamp(2.4rem, 10vw, 4rem);
    }

    body.page-urun .product-detail {
        width: min(100% - 32px, 700px) !important;
        padding: 46px 0 64px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 34px !important;
    }

    body.page-urun .product-gallery {
        width: 100%;
    }

    body.page-urun .product-main-image {
        width: 100% !important;
        aspect-ratio: 4 / 3;
    }

    /*
     * Mobilde görseller alt alta değil,
     * yatay kaydırılabilir tek sıra olur.
     */
    body.page-urun .product-thumbnails {
        width: 100%;
        margin-top: 12px !important;
        padding: 2px 2px 9px !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }

    body.page-urun .product-thumbnail {
        width: 86px !important;
        min-width: 86px !important;
        max-width: 86px !important;
        flex: 0 0 86px !important;
        scroll-snap-align: start;
    }

    body.page-urun .product-information {
        width: 100%;
        padding: 30px;
    }
}

/* Telefon */

@media (max-width: 560px) {
    body.page-urun .detail-hero {
        min-height: 380px;
        padding: 110px 16px 35px;
    }

    body.page-urun .detail-hero h1 {
        margin-bottom: 13px;
        font-size: clamp(2rem, 11vw, 3rem);
        line-height: 1.02;
    }

    body.page-urun .detail-hero p:not(.eyebrow) {
        font-size: .9rem;
        line-height: 1.65;
    }

    body.page-urun .product-detail {
        width: calc(100% - 24px) !important;
        padding: 30px 0 50px !important;
        gap: 25px !important;
    }

    body.page-urun .product-main-image {
        aspect-ratio: 1 / 1;
        border-radius: 10px;
    }

    body.page-urun .product-thumbnail {
        width: 72px !important;
        min-width: 72px !important;
        max-width: 72px !important;
        flex-basis: 72px !important;
        border-radius: 7px;
    }

    body.page-urun .product-information {
        padding: 23px 18px;
        border-radius: 11px;
    }

    body.page-urun .product-meta {
        grid-template-columns: 1fr !important;
        gap: 8px;
        margin-bottom: 24px;
    }

    body.page-urun .product-meta-item {
        min-height: 63px;
        padding: 12px 14px;
    }

    body.page-urun .product-description,
    body.page-urun .product-description.prose {
        font-size: .91rem;
        line-height: 1.78;
    }

    body.page-urun .product-description p:first-child::first-letter {
        font-size: 2.2rem;
    }

    body.page-urun .product-specification-section,
    body.page-urun .product-technical-text {
        margin-top: 29px;
    }

    body.page-urun .product-specification-section h2,
    body.page-urun .product-technical-text h2 {
        font-size: 1.2rem;
    }

    /*
     * Telefonda teknik özellikler iki sütun yerine
     * başlık ve değer şeklinde alt alta gelir.
     */
    body.page-urun .product-specification-section .specs {
        display: block !important;
        border-bottom: 1px solid var(--line);
    }

    body.page-urun .product-specification-section .specs dt,
    body.page-urun .product-specification-section .specs dd {
        display: block !important;
        width: 100% !important;
    }

    body.page-urun .product-specification-section .specs dt {
        padding: 12px 14px 4px !important;
        border-bottom: 0;
        background: #f5f3ee;
    }

    body.page-urun .product-specification-section .specs dd {
        padding: 5px 14px 13px !important;
        background: #f5f3ee;
    }

    body.page-urun .product-actions {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 9px;
    }

    body.page-urun .product-actions .btn {
        width: 100% !important;
    }

    body.page-urun .product-detail + .section {
        padding-top: 48px;
        padding-bottom: 55px;
    }
}
/* =========================================================
   EVZ PREMIUM LİSTELEME KARTLARI
========================================================= */

.cards {
    width: 100%;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    align-items: stretch;
}

.listing-card {
    min-width: 0;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(17, 23, 34, .09);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 13px 36px rgba(17, 23, 34, .07);
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.listing-card:hover {
    transform: translateY(-7px);
    border-color: rgba(200, 150, 62, .42);
    box-shadow: 0 24px 55px rgba(17, 23, 34, .14);
}

.listing-card-link {
    height: 100%;
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}

.listing-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    isolation: isolate;
    background: #e9e7e1;
}

.listing-card-image {
    position: absolute;
    inset: 0;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    margin: 0 !important;
    display: block;
    object-fit: cover;
    object-position: center;
    transition:
        opacity .55s ease,
        transform .7s cubic-bezier(.2, .7, .2, 1);
}

.listing-card-image--primary {
    z-index: 1;
}

.listing-card-image--secondary {
    z-index: 2;
    opacity: 0;
    transform: scale(1.04);
}

.listing-card:hover .listing-card-image--primary {
    transform: scale(1.06);
}

.listing-card.has-secondary-image:hover
.listing-card-image--primary {
    opacity: 0;
}

.listing-card.has-secondary-image:hover
.listing-card-image--secondary {
    opacity: 1;
    transform: scale(1.01);
}

.listing-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        linear-gradient(
            180deg,
            rgba(8, 11, 16, .15) 0%,
            transparent 42%,
            rgba(8, 11, 16, .65) 100%
        );
    pointer-events: none;
}

.listing-card-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    z-index: 4;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    pointer-events: none;
}

.listing-card-type,
.listing-card-badge {
    min-height: 28px;
    padding: 6px 10px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    color: #fff;
    background: rgba(12, 15, 20, .68);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
}

.listing-card-badge {
    margin-left: auto;
    border-color: rgba(218, 178, 98, .4);
    color: #19150d;
    background: rgba(224, 187, 112, .94);
}

.listing-card-view {
    position: absolute;
    right: 17px;
    bottom: 16px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .04em;
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity .25s ease,
        transform .25s ease;
}

.listing-card:hover .listing-card-view {
    opacity: 1;
    transform: translateY(0);
}

.listing-card-placeholder {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    place-items: center;
    background:
        linear-gradient(
            135deg,
            #e9e6df,
            #d9d5cc
        );
}

.listing-card-placeholder span {
    color: rgba(17, 23, 34, .2);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
}

.listing-card-content {
    min-height: 230px;
    padding: 23px 23px 21px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.listing-card-brand,
.listing-card-eyebrow {
    margin-bottom: 9px;
    color: var(--gold-dark);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.listing-card-content h3 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: clamp(1.15rem, 2vw, 1.42rem);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.2;
}

.listing-card-content p {
    margin: 0 0 21px;
    color: #646a73;
    font-size: .88rem;
    line-height: 1.72;
}

.listing-card-footer {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-top: 1px solid var(--line);
}

.listing-card-code {
    min-width: 0;
    color: #777d85;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .025em;
    overflow-wrap: anywhere;
}

.listing-card-arrow {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--ink);
    font-size: 1rem;
    transition:
        color .25s ease,
        background .25s ease,
        transform .25s ease;
}

.listing-card:hover .listing-card-arrow {
    color: #17130b;
    background: var(--gold);
    transform: translateX(3px);
}

/* Boş liste */

.listing-empty {
    grid-column: 1 / -1;
    padding: 70px 25px;
    border: 1px dashed rgba(17, 23, 34, .18);
    border-radius: 14px;
    background: #f8f6f1;
    text-align: center;
}

.listing-empty-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--ink);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.listing-empty h3 {
    margin: 0 0 8px;
    color: var(--ink);
}

.listing-empty p {
    margin: 0;
    color: var(--muted);
}

/* Orta ekran */

@media (max-width: 1024px) {
    .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 21px;
    }
}

/* Telefon */

@media (max-width: 620px) {
    .cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .listing-card {
        border-radius: 11px;
    }

    .listing-card-media {
        aspect-ratio: 4 / 3;
    }

    .listing-card-content {
        min-height: 0;
        padding: 19px 18px 18px;
    }

    .listing-card-content h3 {
        font-size: 1.18rem;
    }

    .listing-card-content p {
        margin-bottom: 17px;
        font-size: .85rem;
    }

    .listing-card-view {
        display: none;
    }

    .listing-card-badges {
        top: 11px;
        left: 11px;
        right: 11px;
    }
}
/* =========================================================
   ÜRÜN FİLTRELEME VE SIRALAMA
========================================================= */

.product-listing-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.product-filter-column {
    min-width: 0;
}

.product-filter-details {
    width: 100%;
}

.product-filter-details > summary {
    list-style: none;
}

.product-filter-details > summary::-webkit-details-marker {
    display: none;
}

.product-filter-toggle {
    display: none;
}

.product-filter-panel {
    padding: 24px;
    border: 1px solid rgba(17, 23, 34, .1);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(17, 23, 34, .06);
}

.product-filter-heading {
    margin-bottom: 24px;
    padding-bottom: 17px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid var(--line);
}

.product-filter-heading h2 {
    margin: 4px 0 0;
    color: var(--ink);
    font-size: 1.35rem;
    line-height: 1.2;
}

.product-filter-eyebrow {
    color: var(--gold-dark);
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.product-filter-clear {
    color: #777d85;
    font-size: .72rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.product-filter-clear:hover {
    color: var(--gold-dark);
}

.product-filter-group {
    margin-bottom: 20px;
}

.product-filter-group label {
    margin-bottom: 8px;
    display: block;
    color: var(--ink);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .025em;
}

.product-filter-group input,
.product-filter-group select,
.product-sort-form select {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid rgba(17, 23, 34, .14);
    border-radius: 8px;
    outline: none;
    color: var(--ink);
    background: #fff;
    font: inherit;
    font-size: .84rem;
    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.product-filter-group input:focus,
.product-filter-group select:focus,
.product-sort-form select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 150, 62, .14);
}

.product-filter-group input::placeholder {
    color: #9a9da3;
}

.product-filter-submit {
    width: 100%;
    justify-content: center;
    border: 0;
    cursor: pointer;
}

.product-listing-content {
    min-width: 0;
}

.product-listing-toolbar {
    margin-bottom: 22px;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid rgba(17, 23, 34, .09);
    border-radius: 11px;
    background: #fff;
}

.product-result-summary {
    color: #737881;
    font-size: .86rem;
}

.product-result-summary strong {
    color: var(--ink);
    font-size: 1rem;
}

.product-sort-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-sort-form label {
    color: #737881;
    font-size: .75rem;
    font-weight: 700;
}

.product-sort-form select {
    width: auto;
    min-width: 175px;
    min-height: 42px;
}

.product-filter-count {
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    color: #17130b;
    background: var(--gold);
    font-size: .7rem;
    font-weight: 800;
}

/* Tablet */

@media (max-width: 1024px) {
    .product-listing-layout {
        grid-template-columns: 230px minmax(0, 1fr);
        gap: 22px;
    }

    .product-filter-panel {
        padding: 19px;
    }
}

/* Mobil */

@media (max-width: 760px) {
    .product-listing-layout {
        display: block;
    }

    .product-filter-column {
        margin-bottom: 18px;
    }

    .product-filter-toggle {
        width: 100%;
        min-height: 50px;
        padding: 12px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        border: 1px solid rgba(17, 23, 34, .12);
        border-radius: 10px;
        color: var(--ink);
        background: #fff;
        font-size: .85rem;
        font-weight: 800;
        cursor: pointer;
    }

    .product-filter-toggle::after {
        content: "+";
        margin-left: auto;
        font-size: 1.25rem;
        font-weight: 400;
        line-height: 1;
    }

    .product-filter-details[open]
    .product-filter-toggle::after {
        content: "−";
    }

    .product-filter-details:not([open])
    > .product-filter-panel {
        display: none;
    }

    .product-filter-panel {
        margin-top: 10px;
        padding: 18px;
    }

    .product-listing-toolbar {
        padding: 13px 14px;
    }
}

@media (max-width: 520px) {
    .product-listing-toolbar {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .product-sort-form {
        width: 100%;
        justify-content: space-between;
    }

    .product-sort-form select {
        min-width: 0;
        flex: 1;
    }
}

/* Masaüstünde panel details kapalı olsa da görünür */

@media (min-width: 761px) {
    .product-filter-details > .product-filter-panel {
        display: block !important;
    }
}
/* =========================================================
   ÜRÜN DETAY EK GELİŞTİRMELERİ
========================================================= */

.detail-breadcrumb {
    width: min(1180px, calc(100% - 40px));
    margin: 22px auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #777d85;
    font-size: .78rem;
}

.detail-breadcrumb a {
    color: #565c65;
    text-decoration: none;
    transition: color .2s ease;
}

.detail-breadcrumb a:hover {
    color: var(--gold-dark);
}

.detail-breadcrumb [aria-current="page"] {
    color: var(--ink);
    font-weight: 700;
}

.product-specification-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.product-specification-card {
    min-width: 0;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    border: 1px solid rgba(17, 23, 34, .09);
    border-radius: 10px;
    background: #f8f7f3;
}

.product-specification-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #17130b;
    background: var(--gold);
    font-size: .76rem;
    font-weight: 800;
}

.product-specification-card div {
    min-width: 0;
}

.product-specification-card div > span {
    margin-bottom: 5px;
    display: block;
    color: #787e86;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.product-specification-card strong {
    display: block;
    color: var(--ink);
    font-size: .9rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.product-whatsapp-button {
    border-color: #1f9e58;
    background: #1f9e58;
}

.product-whatsapp-button:hover {
    border-color: #178348;
    background: #178348;
}

.related-products-section {
    padding-top: 70px;
}

@media (max-width: 620px) {
    .detail-breadcrumb {
        width: min(100% - 28px, 1180px);
        margin: 15px auto;
        gap: 6px;
        font-size: .7rem;
    }

    .product-specification-cards {
        grid-template-columns: 1fr;
    }

    .product-specification-card {
        padding: 14px;
    }
}
.detail-breadcrumb--hero {
    width: auto;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, .62);
}

.detail-breadcrumb--hero a {
    color: rgba(255, 255, 255, .78);
}

.detail-breadcrumb--hero a:hover {
    color: var(--gold);
}

.detail-breadcrumb--hero [aria-current="page"] {
    color: #fff;
}
.product-specification-icon {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    line-height: 1;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .35),
        0 6px 16px rgba(181, 132, 28, .18);
}

.product-specification-card {
    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.product-specification-card:hover {
    transform: translateY(-3px);
    border-color: rgba(181, 132, 28, .38);
    box-shadow: 0 14px 30px rgba(17, 23, 34, .08);
}
/*=========================
PRODUCT LIGHTBOX
==========================*/

.product-main-image{
    position:relative;
    overflow:hidden;
}

.product-main-image img{
    cursor:zoom-in;
}

.product-lightbox-trigger{
    position:absolute;
    top:16px;
    right:16px;
    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.55);
    color:#fff;
    font-size:20px;
    cursor:pointer;
    z-index:5;
    transition:.25s;
}

.product-lightbox-trigger:hover{
    background:var(--gold);
    color:#111;
}

.product-lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.94);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:99999;
}

.product-lightbox.open{
    opacity:1;
    visibility:visible;
}

.product-lightbox img{
    max-width:92%;
    max-height:88%;
    border-radius:8px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next{
    position:absolute;
    width:54px;
    height:54px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    color:#fff;
    cursor:pointer;
    font-size:30px;
    transition:.25s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover{
    background:var(--gold);
    color:#111;
}

.lightbox-close{
    top:30px;
    right:30px;
}

.lightbox-prev{
    left:30px;
    top:50%;
    transform:translateY(-50%);
}

.lightbox-next{
    right:30px;
    top:50%;
    transform:translateY(-50%);
}

@media(max-width:768px){

    .lightbox-prev,
    .lightbox-next{
        display:none;
    }

    .product-lightbox img{
        max-width:96%;
    }

}
