/*
Theme Name: HASTAŞ
Theme URI: http://localhost/eticaret/
Author: HASTAŞ
Author URI: http://localhost/eticaret/
Description: HASTAŞ - Sağlam Zeminler, Estetik Mekanlar. Yüksek kaliteli beton ve peyzaj ürünleri kurumsal teması.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hastas
Tags: one-page, custom-colors, custom-menu, responsive-layout, translation-ready
*/

:root {
    --charcoal: #0f0f0d;
    --charcoal-2: #171715;
    --ink: #211f1c;
    --muted: #6f6b62;
    --stone: #f3f0ea;
    --stone-2: #ebe6dc;
    --ivory: #fbfaf7;
    --line: rgba(33, 31, 28, 0.12);
    --line-dark: rgba(255, 255, 255, 0.12);
    --copper: #bf673c;
    --copper-2: #d98352;
    --olive: #3f432f;
    --olive-2: #555a3e;
    --radius: 18px;
    --shadow: 0 22px 60px rgba(20, 18, 14, 0.12);
    --container: 1180px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--ivory);
    color: var(--ink);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--copper);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 800;
}

.eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--copper);
    display: inline-block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 4px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--copper), #a84f2e);
    color: #fff;
    box-shadow: 0 14px 34px rgba(191, 103, 60, 0.25);
}

.btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.03);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
}

/* ── Header ── */
.site-header {
    background: #090909;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 20;
}

.nav {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 50px;
    width: auto;
    display: block;
}

.footer-brand .brand-logo {
    height: 44px;
}

.brand-mark {
    width: 54px;
    height: 54px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}

.brand-mark span {
    background: linear-gradient(135deg, #f2f2ee, #5f6462 55%, #d0d0cc);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    opacity: 0.95;
}

.brand-mark span:nth-child(even) {
    transform: rotate(180deg);
    background: linear-gradient(135deg, #3d4140, #e5e5df);
}

.brand-text strong {
    display: block;
    font-size: 25px;
    letter-spacing: 0.06em;
    line-height: 1;
    font-weight: 900;
}

.brand-text small {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 8px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.menu {
    display: flex;
    align-items: center;
    gap: clamp(16px, 1vw, 42px);
    list-style: none;
    margin-left: auto;
}

.menu a {
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.84);
    position: relative;
    padding: 34px 0;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 25px;
    width: 0;
    height: 2px;
    background: var(--copper);
    transition: width 0.25s ease;
}

.menu a.active::after,
.menu a:hover::after {
    width: 100%;
}

/* WordPress menü uyumu */
.site-header nav > ul,
.site-header nav > div > ul {
    display: flex;
    align-items: center;
    gap: clamp(16px, 1vw, 42px);
    list-style: none;
    margin-left: auto;
    margin: 0;
    padding: 0;
}

.site-header nav > ul > li > a,
.site-header nav > div > ul > li > a {
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.84);
    position: relative;
    padding: 34px 0;
}

.site-header nav > ul > li > a::after,
.site-header nav > div > ul > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 25px;
    width: 0;
    height: 2px;
    background: var(--copper);
    transition: width 0.25s ease;
}

.site-header nav > ul > li > a:hover::after,
.site-header nav > div > ul > li > a:hover::after,
.site-header nav > ul > li.current-menu-item > a::after,
.site-header nav > div > ul > li.current-menu-item > a::after {
    width: 100%;
}

.header-cta {
    min-width: 134px;
    min-height: 48px;
    border-radius: 3px;
    flex-shrink: 0;
}

.header-cart { display: none !important; }

/* ── Toast ── */
.hastas-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(16px);
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1c1b18;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.25s, transform 0.25s;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.hastas-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}
.hastas-toast svg { flex-shrink: 0; color: #6fcf7a; }
.hastas-toast-link {
    color: var(--accent, #b08d57);
    text-decoration: none;
    font-weight: 600;
    margin-left: 4px;
}
.hastas-toast-link:hover { text-decoration: underline; }

/* ── Hero ── */
.hero {
    background: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(90deg, black, transparent 78%);
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    width: min(1190px, calc(100% - 80px));
    min-height: 560px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 54px 0 42px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, transparent 95%, #000 100%);
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-copy {
    max-width: 560px;
    padding-left: 6px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(48px, 5.8vw, 82px);
    line-height: 0.96;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: #f4efe6;
}

.hero h1 em {
    font-style: italic;
    font-weight: 600;
    color: #efe6d6;
}

.hero .hero-title {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(48px, 5.8vw, 82px);
    line-height: 0.96;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: #f4efe6;
    margin: 0;
}
.hero .hero-title em {
    font-style: italic;
    font-weight: 600;
    color: #efe6d6;
}
.urunler-baslik {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 700;
    color: #1a1816;
    line-height: 1.15;
    margin: 0 0 12px;
    grid-column: 1 / -1;
}
.urunler-aciklama {
    font-size: 15px;
    color: #5d574f;
    line-height: 1.8;
    margin: 0 0 32px;
    grid-column: 1 / -1;
}

.hero-line {
    width: 38px;
    height: 2px;
    background: var(--copper-2);
    margin: 26px 0 24px;
}

.hero p {
    max-width: 480px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* ── Benefits ── */
.benefits {
    background: #f7f4ef;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 30px 0;
}

.benefit-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 10px;
    align-items: center;
    padding: 0 5px;
    border-right: 1px solid var(--line);
}

.benefit-item:last-child {
    border-right: 0;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #1f1f1d;
}

.benefit-icon svg {
    width: 42px;
    height: 42px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
}

.benefit-item h3 {
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.benefit-item p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

/* ── Products Section ── */
.section {
    padding: 46px 0 0;
    background: var(--stone);
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #292622;
    opacity: 0.9;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    min-height: 250px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: #222;
    box-shadow: var(--shadow);
    isolation: isolate;
}

.category-card::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 46%;
    background: linear-gradient(180deg, rgba(12,12,11,0) 0%, rgba(12,12,11,0.55) 35%, rgba(12,12,11,0.78) 100%);
    z-index: 1;
    pointer-events: none;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.08) 45%, transparent 65%);
    z-index: 1;
    pointer-events: none;
}

.category-card .category-img {
    position: absolute;
    inset: 0;
    transition: transform 0.55s ease;
}

.category-card:hover .category-img {
    transform: scale(1.055);
}

.category-content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 20px;
    z-index: 2;
    color: #fff;
    padding-top: 28px;
}

.category-content .num {
    display: block;
    color: var(--copper-2);
    font-size: 13px;
    letter-spacing: 0.12em;
    font-weight: 800;
    margin-bottom: 4px;
}

.category-content h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 14px;
    text-shadow: 0 2px 18px rgba(0,0,0,0.65);
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 800;
    text-shadow: 0 2px 14px rgba(0,0,0,0.65);
}

/* ── Projects Section ── */
.projects-section {
    padding: 36px 0 42px;
    background: var(--stone);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 14px 38px rgba(26, 24, 20, 0.08);
}

.project-img {
    height: 170px;
    overflow: hidden;
}

.project-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px 16px 20px;
    background: linear-gradient(180deg, #f7f4ee, #eee9de);
}

.project-info h3 {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6d675d;
}

.soft-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(33, 31, 28, 0.18);
    color: rgba(33, 31, 28, 0.68);
    background: rgba(255,255,255,0.35);
    flex: 0 0 auto;
    transition: all 0.25s ease;
}

.project-card:hover .soft-arrow {
    background: rgba(191, 103, 60, 0.12);
    border-color: rgba(191, 103, 60, 0.28);
    color: var(--copper);
}

/* ── Testimonials ── */
.testimonials {
    padding: 50px 0 56px;
    background:
            radial-gradient(circle at 8% 12%, rgba(191, 103, 60, 0.055), transparent 26%),
            linear-gradient(180deg, #f4f0e9 0%, #f8f5ef 100%);
    border-top: 1px solid rgba(33,31,28,0.06);
    border-bottom: 1px solid rgba(33,31,28,0.06);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 0.9fr 2fr;
    gap: 42px;
    align-items: stretch;
}

.testimonial-intro {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 300px;
}

.testimonial-intro h2:not(.eyebrow) {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 40px;
    line-height: 0.98;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: var(--ink);
    margin-top: 14px;
}

.testimonial-intro p {
    max-width: 360px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.trust-stats {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    max-width: 360px;
    margin-top: 30px;
    margin-bottom: 35px;
    background: rgba(255,255,255,0.68);
    border: 1px solid rgba(33,31,28,0.08);
    border-radius: 12px;
    box-shadow: 0 16px 34px rgba(30, 26, 20, 0.06);
    overflow: hidden;
}

.trust-stat {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 18px 13px;
}

.trust-stat + .trust-stat {
    border-left: 1px solid rgba(33,31,28,0.08);
    display: block;
}

.trust-icon {
    width: 40px;
    height: 40px;
    color: var(--copper);
}

.trust-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
}

.trust-stat strong {
    display: block;
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
    color: var(--ink);
}

.trust-stat strong small {
    font-size: 18px;
    font-weight: 600;
    color: var(--muted);
}

.trust-stat span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.testimonial-carousel {
    min-width: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.testimonial-viewport {
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex;
    gap: 18px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 calc((100% - 18px) / 2);
    min-height: 310px;
    padding: 28px 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(33,31,28,0.09);
    border-radius: 12px;
    color: var(--ink);
}

.testimonial-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.testimonial-pill {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(33,31,28,0.055);
    border: 1px solid rgba(33,31,28,0.045);
    color: #5d574e;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.quote-mark {
    display: block;
    margin-bottom: 8px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 48px;
    line-height: 0.7;
    color: rgba(33,31,28,0.18);
}

.testimonial-text {
    color: #3d3933;
    font-size: 15px;
    line-height: 1.78;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(33,31,28,0.085);
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #d9d1c5, #9d9589);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    flex: 0 0 auto;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28);
}

.author-info strong {
    display: block;
    font-size: 13px;
    line-height: 1.2;
    color: var(--ink);
}

.author-info span {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    color: var(--muted);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 18px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background: rgba(33,31,28,0.22);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.testimonial-dot.is-active {
    background: var(--copper);
    transform: scale(1.15);
}

/* ── CTA Band ── */
.cta-band {
    background: linear-gradient(105deg, #3b402b 0%, #4d5338 56%, #333824 100%);
    color: #f8f4ec;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.09);
    border-bottom: 1px solid rgba(0,0,0,0.28);
}

.cta-band::before {
    content: "";
    position: absolute;
    top: 0;
    right: -80px;
    width: 520px;
    height: 100%;
    background:
            radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.12), transparent 45%),
            linear-gradient(120deg, transparent 0 38%, rgba(255,255,255,0.06) 38% 52%, transparent 52%);
    opacity: 0.65;
}

.cta-inner {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1px 310px;
    gap: 34px;
    align-items: center;
    min-height: 138px;
    position: relative;
    z-index: 1;
}

.cta-copy h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 8px;
}

.cta-copy p {
    color: rgba(255,255,255,0.74);
    max-width: 610px;
    font-size: 14px;
}

.cta-divider {
    width: 1px;
    height: 78px;
    background: rgba(255,255,255,0.24);
}

.cta-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.cta-action .btn {
    width: 240px;
    border-color: rgba(255,255,255,0.72);
    color: #fff;
    background: rgba(255,255,255,0.02);
    margin-bottom: 12px;
}

.cta-action small {
    display: block;
    color: rgba(255,255,255,0.62);
    font-size: 11px;
    letter-spacing: 0.02em;
}

/* ── Footer ── */
.footer {
    background: #0d0d0c;
    color: #fff;
    padding-top: 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.9fr 0.9fr 1.2fr;
    gap: 28px;
    padding-bottom: 34px;
}

.footer-brand .brand {
    min-width: auto;
    margin-bottom: 18px;
}

.footer-brand .brand-mark {
    width: 42px;
    height: 42px;
}

.footer-brand .brand-text strong {
    font-size: 19px;
}

.footer-brand p,
.footer a,
.footer li,
.newsletter p,
.contact-line {
    color: rgba(255,255,255,0.62);
    font-size: 12px;
    line-height: 1.75;
}

.socials {
    display: flex;
    gap: 9px;
    margin-top: 16px;
}

.socials a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: grid;
    place-items: center;
    font-size: 11px;
    color: #fff;
}

.footer h4 {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: #fff;
}

.footer ul {
    list-style: none;
    display: grid;
    gap: 7px;
}

.contact-line {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 8px;
    margin-bottom: 10px;
}

.contact-line span:first-child {
    color: var(--copper-2);
}

.newsletter-form {
    display: flex;
    margin-top: 14px;
    border: 1px solid rgba(255,255,255,0.18);
    height: 44px;
    max-width: 250px;
}

.newsletter-form input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    background: rgba(255,255,255,0.03);
    color: #fff;
    padding: 0 13px;
    font: inherit;
    font-size: 12px;
}

.newsletter-form button {
    width: 46px;
    border: 0;
    background: rgba(217, 131, 82, 0.35);
    color: #fff;
    cursor: pointer;
    font-size: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255,255,255,0.52);
    font-size: 11px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

/* ── Mobil Hamburger ── */
.mob-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 4px;
    flex-shrink: 0;
    z-index: 30;
}
.mob-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.mob-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mob-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mob-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobil Overlay ── */
.mob-overlay {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.55);
    z-index: 199;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s ease;
}
.mob-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

/* ── Mobil Drawer Menü ── */
.mob-menu {
    position: fixed;
    top: 76px;
    left: -100%;
    width: 100%;
    height: calc(100dvh - 76px);
    background: #0d0d0b;
    z-index: 200;
    display: flex;
    flex-direction: column;
    transition: left 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.mob-menu.is-open { left: 0; }

.mob-menu nav {
    flex: 1;
    overflow-y: auto;
}
.mob-menu nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
}
.mob-menu nav ul li a {
    display: block;
    padding: 16px 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s, padding-left 0.2s;
}
.mob-menu nav ul li a:hover { color: var(--copper-2); padding-left: 32px; }
.mob-menu-wa {
    padding: 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.mob-menu-wa a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--copper), #a84f2e);
    color: #fff;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .mob-hamburger { display: flex; }
    header nav { display: none; }
    .brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        gap: 0;
    }
    .brand-logo { height: 40px; }

    .header-cta {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        min-height: 42px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        flex-shrink: 0;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .header-cta .cta-text { display: none; }
    .header-cta .cta-icon {
        width: 26px !important;
        height: 26px !important;
        flex-shrink: 0;
    }
}

@media (max-width: 1100px) {
    .menu { display: none; }

    .hero-inner { padding-top: 56px; }

    .benefits-grid,
    .category-grid,
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-item:nth-child(2) { border-right: 0; }
    .benefit-item:nth-child(n+3) { margin-top: 24px; }

    .cta-inner {
        grid-template-columns: 1fr;
        padding: 30px 0;
    }

    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card { flex-basis: calc((100% - 18px) / 2); }
    .testimonial-intro { min-height: auto; }
    .cta-divider { display: none; }

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

@media (max-width: 760px) {
    .container,
    .hero-inner,
    .cta-inner {
        width: min(100% - 32px, var(--container));
    }

    .nav { height: 76px; }
    .brand-text small { display: none; }
    .header-cta { min-width: auto; padding: 0 16px; }
    .hero h1 { font-size: 46px; } .hero .hero-title { font-size: 46px; }
    .hero-inner { min-height: auto; }

    .benefits-grid,
    .category-grid,
    .project-grid,
    .cta-inner {
        grid-template-columns: 1fr;
    }

    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-brand { grid-column: 1 / -1; }
    .footer-brand p { display: none; }
    .footer-brand .socials { display: none; }
    .footer-grid > div:nth-child(2),
    .footer-grid > div:nth-child(3) { margin-top: 40px; }

    .benefit-item {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 20px 0;
    }
    .benefit-item:nth-child(n+3) { margin-top: 0; }

    .section-head,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .cta-action { align-items: flex-start; }

    .testimonial-card {
        flex-basis: 100%;
        min-height: auto;
    }

    .trust-stats { max-width: 100%; }
    .cta-action .btn { width: 100%; }
}

/* ════════════════════════════════════════
   KATEGORİ SAYFASI
════════════════════════════════════════ */
.category-page { background: #fbfaf7; color: var(--ink); }

/* ── Kategori Hero ── */
.category-hero { background: #090909; color: #fff; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.06); }
.category-hero-grid { width: min(1185px, calc(100% - 48px)); margin: auto; min-height: 430px; display: grid; grid-template-columns: .92fr 1.08fr; align-items: stretch; }
.category-hero-copy { padding: 56px 52px 48px 0; display: flex; flex-direction: column; justify-content: center; z-index: 2; }
.breadcrumb { display: flex; gap: 8px; flex-wrap: wrap; color: rgba(255,255,255,.46); font-size: 12px; margin-bottom: 22px; }
.breadcrumb a { color: rgba(255,255,255,.58); }
.category-hero h1 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 55px; line-height: .9; letter-spacing: -.025em; font-weight: 600; color: #f7f1e8; margin-bottom: 18px; }
.category-hero-subtitle { font-family: "Cormorant Garamond", Georgia, serif; color: var(--copper-2); font-size: clamp(22px,2vw,27px); line-height: 1.15; font-weight: 600; margin-bottom: 18px; }
.category-hero-copy p { max-width: 560px; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.85; }
.category-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.category-hero-image { position: relative; min-height: 430px; overflow: hidden; }
.category-hero-image::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg,#090909 0%,rgba(9,9,9,.18) 28%,rgba(9,9,9,0) 56%); pointer-events: none; }
.category-hero-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.95) contrast(1.05); }

/* ── Kategori Benefits ── */
.category-benefits { background: #f4f0ea; border-bottom: 1px solid rgba(33,31,28,.1); box-shadow: 0 1px 0 rgba(255,255,255,.65) inset; }
.category-benefits-grid { display: grid; grid-template-columns: repeat(4,1fr); min-height: 112px; align-items: center; }
.category-benefit-item { display: grid; grid-template-columns: 58px 1fr; gap: 22px; align-items: center; padding: 24px 36px; border-right: 1px solid rgba(33,31,28,.13); }
.category-benefit-item:last-child { border-right: 0; }
.category-benefit-icon { width: 52px; height: 52px; display: grid; place-items: center; color: #1f1f1d; }
.category-benefit-icon svg { width: 48px; height: 48px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.category-benefit-item h3 { font-family: "DM Sans", sans-serif; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; margin-bottom: 7px; }
.category-benefit-item p { color: #6f6b62; font-size: 14px; line-height: 1.5; }

/* ── Ürün Grid ── */
.category-content-wrap { background: linear-gradient(180deg,#fbfaf7 0%,#f6f3ed 100%); padding: 52px 0 0; }
.product-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 26px; }
.product-toolbar-copy { display: flex; flex-direction: column; gap: 8px; }
.category-listing-para { font-size: 14px; color: #676159; line-height: 1.7; margin: 0; }
.category-title { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(34px,3vw,48px); line-height: 1.05; font-weight: 600; letter-spacing: -.02em; }
.filter-row { display: flex; align-items: center; justify-content: flex-end; gap: 12px; flex-wrap: wrap; }
.filter-select { height: 42px; min-width: 112px; padding: 0 16px; border: 1px solid rgba(33,31,28,.14); border-radius: 5px; background: rgba(255,255,255,.72); color: #4b463f; font: 600 12px Inter,sans-serif; appearance: none; background-image: linear-gradient(45deg,transparent 50%,var(--copper) 50%),linear-gradient(135deg,var(--copper) 50%,transparent 50%); background-position: calc(100% - 16px) 18px,calc(100% - 11px) 18px; background-size: 5px 5px; background-repeat: no-repeat; }

/* ── Modern Ürün Listesi ── */
.product-list-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; padding-bottom: 52px; }
.prod-card { display: flex; flex-direction: column; background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 16px rgba(33,31,28,.07); transition: box-shadow .3s ease, transform .3s ease; text-decoration: none; color: var(--ink); }
.prod-card:hover { box-shadow: 0 14px 44px rgba(33,31,28,.14); transform: translateY(-5px); }
.prod-card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #f2ede6; }
.prod-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; display: block; }
.prod-card:hover .prod-card-media img { transform: scale(1.06); }
.prod-card-no-img { width: 100%; height: 100%; background: linear-gradient(135deg,#e8e2d8,#d4cec4); }
.prod-card-tag { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.92); backdrop-filter: blur(6px); color: var(--copper); font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; line-height: 1.6; }
.prod-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.prod-card-name { font-family: "Cormorant Garamond", Georgia, serif; font-size: 22px; font-weight: 600; line-height: 1.15; color: var(--ink); }
.prod-card-excerpt { font-size: 13px; color: var(--muted); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.prod-card-link { margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(33,31,28,.08); display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; color: var(--copper); transition: gap .2s; }
.prod-card:hover .prod-card-link { gap: 11px; }

/* ── Neden Biz ── */
.why-paver { padding: 58px 0 44px; text-align: center; background: linear-gradient(180deg,#f6f3ed 0%,#fbfaf7 100%); }
.why-title { display: inline-block; position: relative; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(32px,3vw,42px); line-height: 1.05; font-weight: 600; margin-bottom: 46px; }
.why-title::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: -16px; width: 86px; height: 2px; background: var(--copper-2); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 36px; }
.why-card { min-height: 202px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 28px 22px; background: rgba(255,255,255,.64); border: 1px solid rgba(33,31,28,.10); border-radius: 8px; box-shadow: 0 14px 30px rgba(26,24,20,.045); }
.why-icon { width: 60px; height: 60px; color: #777259; margin-bottom: 18px; }
.why-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.why-card h3 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 21px; line-height: 1.05; font-weight: 700; margin-bottom: 10px; }
.why-card p { color: #6f6b62; font-size: 13px; line-height: 1.55; max-width: 190px; }

/* ── Teklif Paneli ── */
.quote-panel { background: #11110f; color: #fff; position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(0,0,0,.35); }
.quote-panel::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 18% 18%,rgba(217,131,82,.12),transparent 24%),linear-gradient(135deg,rgba(255,255,255,.04),transparent 48%); opacity: .78; }
.quote-inner { width: min(var(--container),calc(100% - 48px)); margin: auto; min-height: 230px; display: grid; grid-template-columns: .74fr 1px 1.26fr; gap: 36px; align-items: center; position: relative; z-index: 1; padding: 34px 0; }
.quote-copy h2 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 44px; line-height: .98; font-weight: 600; margin-bottom: 18px; }
.quote-copy h2::after { content: ""; display: block; width: 70px; height: 2px; background: var(--copper-2); margin-top: 14px; }
.quote-copy p { color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.75; max-width: 360px; }
.quote-whatsapp { display: inline-flex; align-items: center; gap: 13px; margin-top: 24px; color: #fff; font-size: 13px; font-weight: 700; line-height: 1.35; }
.quote-whatsapp-icon { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(114,197,94,.55); color: #72c55e; font-size: 24px; }
.quote-divider { width: 1px; height: 132px; background: rgba(217,131,82,.42); }
.quote-form { display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; align-items: end; }
.quote-field { display: flex; flex-direction: column; gap: 7px; color: rgba(255,255,255,.82); font-size: 12px; font-weight: 700; }
.quote-field input,
.quote-field select,
.quote-field textarea { width: 100%; min-height: 45px; padding: 0 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 4px; background: rgba(255,255,255,.035); color: #fff; font: 12px Inter,sans-serif; outline: none; }
.quote-field input::placeholder,
.quote-field textarea::placeholder { color: rgba(255,255,255,.45); }
.quote-field select option { color: #2a2824; background: #fff; }
.quote-message { grid-column: span 2; }
.quote-field textarea { min-height: 60px; padding-top: 14px; resize: vertical; }
.quote-submit { align-self: end; min-height: 60px; font-weight: 800; width: 100%; font-family: Inter, sans-serif; }

/* ── Kategori Testimonials ── */
.category-testimonials { padding: 56px 0; background: linear-gradient(180deg,#f8f5ef 0%,#fbfaf7 100%); border-bottom: 1px solid rgba(33,31,28,.08); }
.category-testimonial-head { display: grid; grid-template-columns: .85fr 1.15fr; gap: 34px; align-items: end; margin-bottom: 26px; }
.category-testimonial-head h3 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 42px; line-height: 1; font-weight: 600; letter-spacing: -.02em; margin-top: 12px; }
.category-testimonial-head p { max-width: 520px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.category-testimonials .testimonial-card { flex: 0 0 calc((100% - 36px) / 3); }

/* ── SEO Bölümü ── */
.seo-section { padding: 46px 0 54px; background: #fbfaf7; }
.product-seo-section { padding: 0px 0 10px; background: #fbfaf7; }
.seo-section h2 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 40px; line-height: 1.05; font-weight: 600; margin-bottom: 14px; }
.seo-section p { color: black; font-size: 14px; line-height: 1.8; margin-bottom: 20px;  }
.seo-text { color: #000; font-size: 14px!important; line-height: 1.8; width: 100%; }
.seo-text h2 {font-family: "Cormorant Garamond", Georgia, serif;font-size: clamp(34px, 3vw, 48px);line-height: 1.05;font-weight: 600;letter-spacing: -.02em; }
.seo-text p { margin-bottom: 16px; }
.seo-text strong { color: #000; }
.seo-text ul, .seo-text ol { padding-left: 20px; margin-bottom: 16px; }
.seo-text li { margin-bottom: 6px; }

/* ── SSS / FAQ ── */
.faq-section { padding: 52px 0 60px; background: #fff; }
.faq-title { font-family: "Cormorant Garamond", Georgia, serif; font-size: 36px; font-weight: 600; margin-bottom: 32px; color: #1a1816; }
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(33,31,28,.12); }
.faq-item { border-bottom: 1px solid rgba(33,31,28,.12); }
.faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 20px 0; background: none; border: none; cursor: pointer;
    font-family: inherit; font-size: 15px; font-weight: 600; color: #1a1816;
    text-align: left; line-height: 1.4;
}
.faq-question:hover { color: #bc643a; }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform .25s ease; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-answer { overflow: hidden; display: none; }
.faq-answer.is-open { display: block; }
.faq-answer-inner { padding: 0 0 20px; color: black; font-size: 14px; line-height: 1.8; }
.faq-answer-inner p { margin-bottom: 12px; }
.faq-answer-inner p:last-child { margin-bottom: 0; }
.seo-readmore summary { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 40px; padding: 0 20px; border-radius: 4px; border: 1px solid rgba(33,31,28,.16); background: rgba(255,255,255,.72); color: #2b2824; font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; cursor: pointer; list-style: none; }
.seo-readmore summary::-webkit-details-marker { display: none; }
.seo-readmore[open] summary { margin-bottom: 16px; }
.seo-extra { color: #676159; font-size: 13px; line-height: 1.8; max-width: 850px; }

/* ── Kategori Responsive ── */
@media (max-width: 1100px) {
    .category-hero-grid { grid-template-columns: 1fr; }
    .category-hero-copy { padding-right: 0; }
    .category-hero-image { min-height: 320px; }
    .category-benefits-grid, .product-list-grid, .why-grid { grid-template-columns: repeat(2,1fr); }
    .category-benefit-item:nth-child(2) { border-right: 0; }
    .product-toolbar { align-items: flex-start; flex-direction: column; }
    .quote-inner { grid-template-columns: 1fr; }
    .quote-divider { display: none; }
    .quote-form { grid-template-columns: repeat(2,1fr); }
    .category-testimonial-head { grid-template-columns: 1fr; }
    .category-testimonials .testimonial-card { flex-basis: calc((100% - 18px) / 2); }
}

@media (max-width: 760px) {
    .category-hero-grid { width: min(100% - 32px, var(--container)); }
    .category-hero-image { display: none; }
    .category-hero-copy { padding: 25px 0; }
    .category-hero h1 { font-size: 30px; }
    .category-benefits-grid, .why-grid, .quote-form { grid-template-columns: 1fr; }
    .product-list-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
    .category-benefit-item { border-right: 0; border-bottom: 1px solid rgba(33,31,28,.12); padding-inline: 0; }
    .category-benefit-item:last-child { border-bottom: 0; }
    .quote-message { grid-column: span 1; }
    .category-testimonials .testimonial-card { flex-basis: 100%; }
    .category-testimonial-head h3 { font-size: 36px; }
    .seo-section .container { width: min(100% - 32px, var(--container)); }
    .category-hero-grid {
        min-height: 0px!important;
    }
}

/* ════════════════════════════════════════
   ÜRÜN DETAY SAYFASI
════════════════════════════════════════ */
.shop-page { background: linear-gradient(180deg,#fbfaf7 0%,#f4f0e9 100%); color: var(--ink); }

.shop-product {
    padding: 34px 0 46px;
    background: radial-gradient(circle at 86% 8%,rgba(191,103,60,.045),transparent 24%),
                linear-gradient(180deg,#fbfaf7 0%,#f6f2eb 100%);
}

.shop-breadcrumb { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; color: #8a8379; font-size: 12px; margin-bottom: 26px; }
.shop-breadcrumb a { color: #716a61; }
.shop-breadcrumb strong { color: #3b3630; font-weight: 600; }

/* ── Ürün Hero Grid ── */
.shop-hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 30px; align-items: stretch; }

/* ── Galeri ── */
.product-gallery { display: grid; grid-template-columns: 78px 1fr; gap: 24px; min-width: 0; align-items: stretch; }
.product-gallery--single { grid-template-columns: 1fr; }
.product-gallery--single .gallery-thumbs { display: none; }
.gallery-thumbs { display: flex; flex-direction: column; gap: 14px; }
.gallery-thumb {
    width: 78px; height: 88px; border: 1px solid rgba(33,31,28,.10); border-radius: 7px;
    overflow: hidden; background: #ebe6dc; cursor: pointer; padding: 0; position: relative;
    transition: .2s ease;
}
.gallery-thumb.is-active,
.gallery-thumb:hover { border-color: var(--copper); box-shadow: 0 10px 22px rgba(191,103,60,.12); transform: translateY(-1px); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }

.main-product-image {
    height: 100%; min-height: 400px; border-radius: 8px; overflow: hidden; background: #e8e2d8;
    border: 1px solid rgba(33,31,28,.08); position: relative;
}
.main-product-image img { width: 100%; height: 100%; object-fit: cover; transition: opacity .2s ease; }
.zoom-button {
    position: absolute; right: 18px; bottom: 18px; width: 44px; height: 44px;
    border-radius: 50%; border: 1px solid rgba(255,255,255,.55);
    background: rgba(15,15,13,.56); color: #fff; display: grid; place-items: center;
    cursor: pointer; backdrop-filter: blur(10px); z-index: 2;
}

/* ── Ürün Paneli ── */
.product-panel { min-width: 0; position: relative; }
.product-brand { display: inline-flex; color: var(--copper); font-family: "DM Sans",sans-serif; font-size: 13px; letter-spacing: .16em; font-weight: 800; text-transform: uppercase; border-bottom: 1px solid rgba(191,103,60,.38); margin-bottom: 10px; }
.product-title { font-family: "Cormorant Garamond",Georgia,serif; font-size: clamp(48px,5vw,50px); line-height: .96; letter-spacing: -.025em; font-weight: 600; color: #211f1c; margin-bottom: 14px; }
.rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; color: #4b453e; font-size: 13px; }
.stars { color: var(--copper); letter-spacing: 2px; font-size: 17px; line-height: 1; }
.rating-row strong { font-weight: 800; color: #211f1c; }
.price-row { display: flex; align-items: flex-end; gap: 12px; margin-bottom: 10px; }
.product-price { font-size: 38px; line-height: 1; font-weight: 800; color: #181613; letter-spacing: -.035em; }
.tax-note { font-size: 15px; color: #817a70; margin-bottom: 4px; }

.availability-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; padding: 2px 0 18px; margin-bottom: 16px; border-bottom: 1px solid rgba(33,31,28,.10); }
.delivery-chip { display: inline-flex; align-items: center; gap: 10px; min-height: 34px; color: #2f2b26; font-size: 13px; line-height: 1; white-space: nowrap; }
.delivery-chip svg { width: 25px; height: 25px; stroke: #3a352f; fill: none; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.delivery-chip strong { font-weight: 800; color: #241f1b; }
.delivery-chip span { color: #241f1b; font-weight: 700; }
.stock-chip { display: inline-flex; align-items: center; gap: 8px; color: var(--copper); font-weight: 800; font-size: 13px; padding-left: 2px; }
.stock-chip::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--copper); box-shadow: 0 0 0 4px rgba(191,103,60,.10); flex: 0 0 auto; }
.product-summary { color: #5f5a52; font-size: 15px; line-height: 1.85; max-width: 560px; padding-bottom: 20px; }

/* ── Seçenek Blokları ── */
.option-block { padding-bottom: 22px; }
.option-label { display: block; font-size: 13px; color: #34302b; font-weight: 800; margin-bottom: 12px; }
.color-options { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.color-swatch {
    width: 43px; height: 43px; border-radius: 50%; border: 2px solid rgba(33,31,28,.15);
    background: #ccc; cursor: pointer; box-shadow: inset 0 0 0 3px #fbfaf7;
    transition: .2s ease; padding: 0; flex-shrink: 0; overflow: hidden;
}
.color-swatch img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; }
.color-swatch:has(img) { background: none; box-shadow: 0 0 0 1px rgba(33,31,28,.12); }
.color-swatch:hover { transform: translateY(-2px) scale(1.04); box-shadow: inset 0 0 0 3px #fbfaf7, 0 12px 24px rgba(33,31,28,.14); }
.color-swatch:has(img):hover { box-shadow: 0 0 0 1px rgba(33,31,28,.12), 0 12px 24px rgba(33,31,28,.10); }
.color-swatch.is-active { outline: 2px solid var(--copper); outline-offset: 3px; }

.size-options { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.size-options--wide { grid-template-columns: repeat(4,1fr); }
.size-card {
    min-height: 50px; border: 1px solid rgba(33,31,28,.14); background: rgba(255,255,255,.52);
    border-radius: 5px; display: flex; flex-direction: column; justify-content: center;
    align-items: center; gap: 5px; cursor: pointer; transition: .2s ease;
}
.size-card strong { font-size: 14px; color: #1e1b18; line-height: 1; font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;!important;    font-weight: 600;}
.size-card span { font-size: 11px; color: #6f6b62; }
.size-card:hover { border-color: var(--copper); background: #fff; box-shadow: 0 14px 30px rgba(191,103,60,.10); }
.size-card.is-active { border-color: #1f1f1d; background: #fff; box-shadow: inset 0 0 0 1px #1f1f1d, 0 12px 26px rgba(26,24,20,.06); }

/* ── Sepet ── */
.cart-row { display: grid; grid-template-columns: 110px 1fr; gap: 14px; margin-bottom: 20px; }
.qty-control {
    height: 54px; border: 1px solid rgba(33,31,28,.14); background: rgba(255,255,255,.62);
    display: grid; grid-template-columns: 34px 1fr 34px; align-items: center;
    border-radius: 5px; overflow: hidden;
}
.qty-control button { height: 100%; border: 0; background: transparent; cursor: pointer; font-size: 18px; color: #2e2924; }
.qty-control span { text-align: center; font-weight: 700; color: #211f1c; }
.add-cart-btn {
    border: 0; border-radius: 5px; background: linear-gradient(135deg,var(--copper),#a94f2f);
    color: #fff; display: flex; align-items: center; justify-content: center; gap: 12px;
    font-size: 13px; letter-spacing: .08em; text-transform: uppercase; font-weight: 800;
    cursor: pointer; box-shadow: 0 16px 34px rgba(191,103,60,.22); transition: .25s ease;
}
.add-cart-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(191,103,60,.28); }
.add-cart-btn:active { transform: translateY(0) scale(.99); }

/* ── Satın Alma Notları ── */
.purchase-notes { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 14px; }
.purchase-note { display: grid; grid-template-columns: 34px 1fr; gap: 8px; align-items: start; }
.purchase-note svg { width: 28px; height: 28px; stroke: var(--copper); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.purchase-note strong { display: block; font-size: 11px; color: #1f1f1d; line-height: 1.25; margin-bottom: 3px; }
.purchase-note span { display: block; font-size: 12px; color: #70695f; line-height: 1.35; }

/* ── Ürün Hikayesi ── */
.product-story { padding: 54px 0; border-top: 1px solid rgba(33,31,28,.10); background: #fbfaf7; }
.story-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 42px; align-items: stretch; }
.story-grid--full { grid-template-columns: 1fr; }
.story-grid--full .story-copy { padding-right: 0; max-width: 100%; }
.story-grid--full .story-copy p, .story-grid--full .story-extra p { max-width: 100%; }
.story-copy { padding-right: 30px; }
.story-copy h2 { font-family: "Cormorant Garamond",Georgia,serif; font-size: 42px; line-height: .98; font-weight: 600; margin: 12px 0 18px; color: #211f1c; }
.story-copy p { color: #6a635b; font-size: 14px; line-height: 1.78; max-width: 410px; margin-bottom: 22px; }
.story-extra { display: grid; gap: 14px; margin: 2px 0 20px;  padding-top: 17px;}
.story-extra p { margin: 0; color: #5f5a52; font-size: 15px; line-height: 1.78; }
.story-list { display: grid; gap: 10px; list-style: none; color: #4f4942; font-size: 13px; }
.story-list li { display: flex; align-items: center; gap: 10px; }
.story-list li::before { content: '✧'; color: var(--copper); font-size: 14px; }
.story-images { display: grid; grid-template-columns: .9fr 1.15fr .9fr; gap: 8px; min-height: 360px; }
.story-images--single { grid-template-columns: 1fr; }
.story-img { border-radius: 4px; overflow: hidden; background: #e8e3da; height: 100%; position: relative; }
.story-img--zoomable { cursor: zoom-in; }
.story-img--zoomable img { transition: transform .3s ease; }
.story-img--zoomable:hover img { transform: scale(1.03); }
.story-zoom-icon { position: absolute; bottom: 12px; left: 12px; width: 36px; height: 36px; background: rgba(0,0,0,.45); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.story-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-img.tall, .story-img.center { min-height: 360px; }
.story-images--single .story-img { min-height: 420px; border-radius: 10px; }

/* ── Cross-sell ── */
.cross-sell { padding: 40px 0 28px; background: #fbfaf7; border-top: 1px solid rgba(33,31,28,.10); }
.cross-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 22px; }
.cross-head h2 { font-family: "Cormorant Garamond",Georgia,serif; font-size: 36px; line-height: 1; font-weight: 600; color: #211f1c; max-width: 520px; }
.cross-head .view-all { color: var(--copper); }
.recommend-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 22px; }
.recommend-card { background: rgba(255,255,255,.72); border: 1px solid rgba(33,31,28,.10); border-radius: 6px; overflow: hidden; transition: .25s ease; }
.recommend-card:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(28,24,20,.08); }
.recommend-img { height: 150px; background: #eee9df; overflow: hidden; }
.recommend-img img { width: 100%; height: 100%; object-fit: cover; }
.recommend-info { padding: 14px 14px 16px; }
.recommend-info h3 { font-size: 13px; line-height: 1.35; color: #211f1c; margin-bottom: 4px; }
.recommend-info p { font-size: 11px; color: #716a61; margin-bottom: 9px; }
.recommend-price { font-size: 17px; font-weight: 800; color: #1f1f1d; }

/* ── Floating WhatsApp ── */
@keyframes wa-pulse {
    0%   { transform: scale(1); box-shadow: none; }
    50%  { transform: scale(1.08); box-shadow: none; }
    100% { transform: scale(1); box-shadow: none; }
}

/* ── Floating Phone ── */
@keyframes ph-pulse {
    0%   { transform: scale(1); box-shadow: none; }
    50%  { transform: scale(1.08); box-shadow: none; }
    100% { transform: scale(1); box-shadow: none; }
}
@keyframes ph-ring {
    0%   { opacity: .6; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.85); }
}
.floating-phone {
    position: fixed; right: 26px; bottom: 96px; z-index: 80;
    width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
    color: #fff; background: #1976d2; box-shadow: none;
    border: 3px solid rgba(255,255,255,.85);
    animation: ph-pulse 2s ease-in-out infinite;
    text-decoration: none;
}
.floating-phone::before,
.floating-phone::after {
    content: ""; position: absolute; inset: 0; border-radius: 50%;
    background: #1976d2; z-index: -1;
    animation: ph-ring 2s ease-out infinite;
}
.floating-phone::after { animation-delay: .6s; }
.floating-phone:hover { filter: brightness(1.1); }
.floating-phone svg { width: 28px; height: 28px; }
@keyframes ph-label-show {
    0%   { opacity: 0; transform: translateY(-50%) translateX(12px); }
    10%  { opacity: 1; transform: translateY(-50%) translateX(0); }
    85%  { opacity: 1; transform: translateY(-50%) translateX(0); }
    100% { opacity: 0; transform: translateY(-50%) translateX(12px); }
}
.phone-label {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%);
    background: #1976d2;
    color: #fff;
    white-space: nowrap;
    padding: 7px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
    box-shadow: none;
    animation: ph-label-show 4s ease-in-out 1.2s both;
    pointer-events: none;
}
.phone-label::after {
    content: "";
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    border: 7px solid transparent;
    border-right: none;
    border-left-color: #1976d2;
}
@keyframes wa-ring {
    0%   { opacity: .6; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.85); }
}
.floating-whatsapp {
    position: fixed; right: 26px; bottom: 26px; z-index: 80;
    width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
    color: #fff; background: #30c05b; box-shadow: none;
    border: 3px solid rgba(255,255,255,.85);
    animation: wa-pulse 2s ease-in-out infinite;
}
.floating-whatsapp::before,
.floating-whatsapp::after {
    content: ""; position: absolute; inset: 0; border-radius: 50%;
    background: #30c05b; z-index: -1;
    animation: wa-ring 2s ease-out infinite;
}
.floating-whatsapp::after { animation-delay: .6s; }
.floating-whatsapp:hover { filter: brightness(1.1); }
.floating-whatsapp svg { width: 30px; height: 30px; fill: currentColor; }

/* ── Floating Cart ── */
@keyframes fc-pulse {
    0%   { transform: scale(1); box-shadow: 0 0 0 0 rgba(188,100,58,.55); }
    50%  { transform: scale(1.08); box-shadow: 0 0 0 14px rgba(188,100,58,0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(188,100,58,0); }
}
@keyframes fc-ring {
    0%   { opacity: .6; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.85); }
}
.floating-cart {
    display: none;
    position: fixed; left: 26px; bottom: 26px; z-index: 80;
    width: 58px; height: 58px; border-radius: 50%; place-items: center;
    color: #fff; background: #bc643a; box-shadow: 0 18px 42px rgba(188,100,58,.34);
    border: 3px solid rgba(255,255,255,.85);
    text-decoration: none;
    animation: fc-pulse 2s ease-in-out infinite;
}
.floating-cart.has-items { display: grid; }
.floating-cart::before,
.floating-cart::after {
    content: ""; position: absolute; inset: 0; border-radius: 50%;
    background: #bc643a; z-index: -1;
    animation: fc-ring 2s ease-out infinite;
}
.floating-cart::after { animation-delay: .6s; }
.floating-cart:hover { filter: brightness(1.1); }
.floating-cart svg { width: 26px; height: 26px; }
.floating-cart-count {
    position: absolute; top: -4px; right: -4px;
    min-width: 20px; height: 20px; padding: 0 4px;
    border-radius: 10px; background: #fff; color: #bc643a;
    font-size: 11px; font-weight: 700; line-height: 20px; text-align: center;
}
.floating-cart-count:empty { display: none; }

/* ── Ürün Detay Responsive ── */
@media (max-width: 1100px) {
    .shop-hero-grid { grid-template-columns: 1fr; gap: 38px; }
    .main-product-image { min-height: 480px; }
    .story-grid { grid-template-columns: 1fr; }
    .recommend-grid { grid-template-columns: repeat(3,1fr); }
    .purchase-notes { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 760px) {
    .shop-product { padding-top: 24px; }
    .product-gallery { grid-template-columns: 1fr; }
    .gallery-thumbs { order: 2; flex-direction: row; overflow-x: auto; }
    .gallery-thumb { flex: 0 0 74px; height: 78px; }
    .main-product-image { min-height: 410px; }
    .product-title { font-size: 48px; }
    .size-options, .purchase-notes { grid-template-columns: 1fr; }
    .recommend-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
    .cart-row { grid-template-columns: 1fr; }
    .story-images { grid-template-columns: 1fr; }
    .recommend-img { height: 150px; }
    .cross-head { align-items: flex-start; flex-direction: column; }
    .availability-row { align-items: flex-start; gap: 12px; padding-bottom: 16px; }
    .purchase-note { grid-template-columns: 30px 1fr; padding: 12px 0; border-bottom: 1px solid rgba(33,31,28,.08); }
    .purchase-note:last-child { border-bottom: 0; }
}

/* ── Ürünler Sayfası ── */
.products-page { background: #fbfaf7; color: var(--ink); }

.products-hero { background: linear-gradient(180deg,#fbfaf7 0%,#f6f2eb 100%); border-bottom: 1px solid rgba(33,31,28,.08); padding: 34px 0 28px; }
.products-breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; color: #7d766d; font-size: 12px; }
.products-breadcrumb a { color: #6f6b62; }
.products-breadcrumb strong { color: var(--ink); font-weight: 700; }
.products-hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; }
.products-hero-copy { padding: 22px 0 34px; }
.products-hero-copy h1 { font-family: "Cormorant Garamond",Georgia,serif; font-size: clamp(58px,6.4vw,80px); line-height: .92; letter-spacing: -.035em; font-weight: 600; color: #181613; margin: 16px 0 24px; }
.products-hero-copy p { max-width: 520px; color: #5d574f; font-size: 16px; line-height: 1.78; }
.products-hero-copy p strong { color: #211f1c; font-weight: 800; }
.products-hero-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 34px; }
.btn-outline-light { color: #211f1c; border-color: rgba(33,31,28,.38); background: rgba(255,255,255,.34); }
.btn-outline-light:hover { border-color: rgba(33,31,28,.72); background: rgba(255,255,255,.74); }
.products-hero-media { min-height: 430px; border-radius: 9px; overflow: hidden; border: 1px solid rgba(33,31,28,.10); box-shadow: 0 20px 48px rgba(22,20,17,.10); background: #e7e0d6; }
.products-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.product-categories { background: #fbfaf7; padding: 34px 0 30px; }
.product-category-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.product-category-card { min-height: 190px; border-radius: 9px; overflow: hidden; position: relative; isolation: isolate; background: #171715; box-shadow: 0 17px 42px rgba(20,18,14,.13); display: block; }
.product-category-card::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg,rgba(0,0,0,.70) 0%,rgba(0,0,0,.45) 34%,rgba(0,0,0,.14) 72%,rgba(0,0,0,.02) 100%),linear-gradient(180deg,rgba(0,0,0,.04) 0%,rgba(0,0,0,.42) 100%); pointer-events: none; }
.product-category-card img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, filter .55s ease; }
.product-category-card:hover img { transform: scale(1.04); filter: saturate(1.04) contrast(1.02); }
.product-category-content { position: relative; z-index: 2; min-height: 190px; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; padding: 30px; color: #fff; }
.product-category-content h2 { font-family: "Playfair Display",Georgia,serif; font-size: clamp(25px,2.6vw,34px); line-height: 1.08; font-weight: 500; margin-bottom: 13px; color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.55); }
.product-category-link { display: inline-flex; align-items: center; gap: 12px; color: #fff; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; font-weight: 800; text-shadow: 0 2px 14px rgba(0,0,0,.62); transition: gap .24s ease; }
.product-category-card:hover .product-category-link { gap: 16px; }

.shipping-strip { padding: 20px 0 18px; background: #fbfaf7; }
.shipping-panel { display: grid; grid-template-columns: .72fr 1.28fr; gap: 28px; align-items: stretch; padding: 28px; border-radius: 10px; background: rgba(246,242,235,.84); border: 1px solid rgba(33,31,28,.08); box-shadow: 0 16px 42px rgba(30,26,20,.055); }
.shipping-copy { display: flex; flex-direction: column; justify-content: center; padding: 10px 22px 10px 0; }
.shipping-badge { display: inline-flex; align-items: center; width: fit-content; min-height: 28px; padding: 0 12px; border-radius: 5px; background: rgba(191,103,60,.08); color: var(--copper); font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.shipping-copy h2 { font-family: "Cormorant Garamond",Georgia,serif; font-size: clamp(32px,3.4vw,44px); line-height: 1.02; letter-spacing: -.02em; font-weight: 600; color: #211f1c; margin-bottom: 18px; }
.mini-line { width: 34px; height: 2px; background: var(--copper); margin-bottom: 18px; }
.shipping-copy p { color: #5e574f; font-size: 15px; line-height: 1.74; max-width: 410px; }
.shipping-copy p strong { color: var(--copper); font-weight: 800; }
.shipping-features { border-radius: 10px; background: rgba(255,255,255,.66); border: 1px solid rgba(33,31,28,.08); box-shadow: 0 16px 36px rgba(22,20,17,.045); padding: 28px 30px; display: flex; flex-direction: column; justify-content: center; }
.shipping-features-head { display: flex; align-items: center; gap: 15px; margin-bottom: 24px; color: var(--copper); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.shipping-features-head::after { content: ""; height: 1px; flex: 1; background: rgba(33,31,28,.10); }
.shipping-feature-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 0; }
.shipping-feature { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; padding: 4px 22px; border-right: 1px dashed rgba(191,103,60,.28); }
.shipping-feature:first-child { padding-left: 0; }
.shipping-feature:last-child { padding-right: 0; border-right: 0; }
.shipping-feature svg { width: 38px; height: 38px; stroke: #171715; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.shipping-feature strong { display: block; color: #211f1c; font-size: 13px; line-height: 1.25; margin-bottom: 5px; }
.shipping-feature span { display: block; color: #6d665f; font-size: 12px; line-height: 1.55; }

.product-cta-section { background: #fbfaf7; padding: 10px 0 18px; }
.product-cta-panel { position: relative; overflow: hidden; border-radius: 8px; min-height: 120px; padding: 26px 38px; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 26px; color: #fff; background: linear-gradient(90deg,rgba(8,8,7,.92) 0%,rgba(10,10,9,.78) 48%,rgba(10,10,9,.88) 100%), linear-gradient(105deg,#3b402b 0%,#4d5338 56%,#333824 100%); box-shadow: 0 18px 42px rgba(20,18,14,.12); }
.product-cta-copy h2 { font-family: "Cormorant Garamond",Georgia,serif; font-size: clamp(30px,3.1vw,38px); line-height: 1.06; font-weight: 600; letter-spacing: -.015em; margin-bottom: 8px; color: #f7f1e8; }
.product-cta-copy p { color: rgba(255,255,255,.76); font-size: 14px; line-height: 1.65; }
.product-cta-actions { display: flex; justify-content: flex-end; gap: 16px; flex-wrap: wrap; }
.product-cta-actions .btn-outline { border-color: rgba(255,255,255,.60); color: #fff; background: rgba(255,255,255,.035); }

@media (max-width: 1100px) {
    .products-hero-grid, .shipping-panel, .product-cta-panel { grid-template-columns: 1fr; }
    .products-hero-media { min-height: 380px; }
    .shipping-copy { padding-right: 0; }
    .product-cta-actions { justify-content: flex-start; }
}
@media (max-width: 860px) {
    .product-category-grid, .shipping-feature-grid { grid-template-columns: 1fr; }
    .shipping-feature { border-right: 0; border-bottom: 1px dashed rgba(191,103,60,.22); padding: 18px 0; }
    .shipping-feature:last-child { border-bottom: 0; }
}
@media (max-width: 760px) {
    .products-hero { padding-top: 24px; }
    .products-hero-grid { gap: 28px; }
    .products-hero-copy { padding: 8px 0 0; }
    .products-hero-copy h1 { font-size: 52px; }
    .products-hero-media { min-height: 300px; }
    .products-hero-actions, .product-cta-actions { width: 100%; }
    .products-hero-actions .btn, .product-cta-actions .btn { width: 100%; }
    .product-categories { padding-top: 26px; }
    .product-category-card, .product-category-content { min-height: 210px; }
    .shipping-panel { padding: 22px; }
    .shipping-features { padding: 22px; }
    .product-cta-panel { padding: 24px; }
}

/* ── İletişim Sayfası ── */
.contact-page { background: linear-gradient(180deg,#fbfaf7 0%,#f3f0ea 100%); color: var(--ink); }

.contact-hero { position: relative; background: #fbfaf7; overflow: hidden; border-bottom: 1px solid rgba(33,31,28,.08); }
.contact-hero-grid { display: grid; grid-template-columns: .88fr 1.12fr; min-height: 460px;  margin-inline: auto; }
.contact-hero-copy { display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; padding-top: 42px; padding-bottom: 58px; }
.contact-hero-copy-inner { max-width: 560px; }
.contact-breadcrumb { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; color: #7d766d; font-size: 12px; margin-bottom: 54px; }
.contact-breadcrumb a { color: #615b53; }
.contact-hero-copy .eyebrow { margin-bottom: 16px; }
.contact-hero h1 { font-family: "Cormorant Garamond",Georgia,serif; font-size: clamp(56px,6vw,63px); line-height: .92; letter-spacing: -.035em; font-weight: 600; color: #171512; margin-bottom: 28px; }
.contact-hero-line { width: 42px; height: 2px; background: var(--copper); margin-bottom: 24px; }
.contact-hero p { max-width: 500px; color: #4f4942; font-size: 15px; line-height: 1.85; }
.contact-hero-image { position: relative; min-height: 460px; overflow: hidden; background: #d8d0c4; }
.contact-hero-image::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg,#fbfaf7 0%,rgba(251,250,247,.85) 12%,rgba(251,250,247,.18) 38%,rgba(251,250,247,0) 68%); pointer-events: none; }
.contact-hero-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.86) contrast(1.04); }

.contact-quick { position: relative; z-index: 3; margin-top: -46px; }
.contact-quick-grid { display: grid; grid-template-columns: repeat(4,1fr); background: rgba(251,250,247,.92); border: 1px solid rgba(33,31,28,.12); box-shadow: 0 26px 70px rgba(24,20,16,.10); border-radius: 9px; overflow: hidden; backdrop-filter: blur(10px); }
.quick-card { display: grid; grid-template-columns: 44px 1fr; gap: 20px; align-items: center; padding: 30px 34px; border-right: 1px solid rgba(33,31,28,.12); }
.quick-card:last-child { border-right: 0; }
.quick-icon { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: #171512; border: 1px solid rgba(191,103,60,.55); background: rgba(255,255,255,.36); }
.quick-icon svg { width: 27px; height: 27px; }
.quick-card h3 { font-family: "DM Sans",sans-serif; font-size: 13px; letter-spacing: .13em; text-transform: uppercase; font-weight: 800; color: #1d1a17; margin-bottom: 9px; }
.quick-card p { font-size: 14px; line-height: 1.65; color: #2b2824; }
.quick-card small { display: block; color: #6f6b62; font-size: 12px; line-height: 1.55; margin-top: 3px; }
.quick-link { display: inline-flex; align-items: center; gap: 12px; color: var(--copper); font-size: 13px; font-weight: 700; margin-top: 12px; border-bottom: 1px solid rgba(191,103,60,.42); padding-bottom: 2px; }
.whatsapp-card { grid-template-columns: 54px 1fr; gap: 18px; }
.whatsapp-card .quick-link { margin-top: 0; font-weight: 800; }

.contact-main { padding: 34px 0; background: linear-gradient(180deg,#f7f4ef 0%,#fbfaf7 100%); }
.contact-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 28px; align-items: stretch; }
.map-card, .message-card { border: 1px solid rgba(33,31,28,.11); border-radius: 9px; overflow: hidden; background: rgba(255,255,255,.68); box-shadow: 0 18px 48px rgba(28,24,20,.065); }
.map-card { background: linear-gradient(180deg,rgba(255,255,255,.78),rgba(247,244,239,.72)); }
.section-kicker { font-family: "DM Sans",sans-serif; font-size: 15px; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; color: #1e1b18; display: block; }
.section-kicker::after { content: ""; display: block; width: 36px; height: 2px; background: var(--copper); margin-top: 10px; }
.map-card .section-kicker { padding: 28px 30px 0; }
.map-frame { height: 260px; margin-top: 18px; overflow: hidden; }
.map-info { display: grid; grid-template-columns: 72px 1fr 180px; gap: 20px; align-items: center; padding: 26px 30px 30px; background: linear-gradient(135deg,rgba(251,250,247,.92),rgba(240,235,226,.72)); border-top: 1px solid rgba(33,31,28,.10); }
.map-pin { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(191,103,60,.55); color: var(--copper); background: rgba(191,103,60,.055); }
.map-pin svg { width: 28px; height: 28px; }
.map-info h3 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 9px; }
.map-info p { font-size: 13px; color: #5f5a52; line-height: 1.7; }
.map-route { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 48px; border: 1px solid rgba(191,103,60,.46); border-radius: 4px; color: #211f1c; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; background: rgba(255,255,255,.62); padding: 0 18px; transition: .25s ease; }
.map-route:hover { background: rgba(191,103,60,.10); border-color: rgba(191,103,60,.75); transform: translateY(-1px); }

.message-card { padding: 30px; }
.message-card .section-kicker { margin-bottom: 0; }
.contact-form { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-field { width: 100%; height: 54px; border: 1px solid rgba(33,31,28,.12); background: rgba(255,255,255,.62); border-radius: 5px; padding: 0 16px; font: 13px Inter,sans-serif; color: #211f1c; outline: none; transition: .2s ease; }
.contact-field:focus { border-color: rgba(191,103,60,.65); box-shadow: 0 0 0 4px rgba(191,103,60,.08); background: #fff; }
.contact-field::placeholder { color: #746e65; }
select.contact-field { appearance: none; background-image: linear-gradient(45deg,transparent 50%,var(--copper) 50%),linear-gradient(135deg,var(--copper) 50%,transparent 50%); background-position: calc(100% - 18px) 23px,calc(100% - 13px) 23px; background-size: 5px 5px; background-repeat: no-repeat; background-color: rgba(255,255,255,.62); }
.contact-form .full { grid-column: 1 / -1; }
textarea.contact-field { height: 120px; padding-top: 16px; resize: vertical; }
.kvkk-row { grid-column: 1 / -1; display: flex; align-items: center; gap: 10px; color: #625c54; font-size: 12px; }
.kvkk-row input { width: 17px; height: 17px; accent-color: var(--copper); flex-shrink: 0; }
.contact-submit { grid-column: 1 / -1; border: 0; border-radius: 5px; min-height: 56px; background: linear-gradient(135deg,var(--copper),#a84f2e); color: #fff; font-family: Inter, sans-serif; font-size: 17px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 14px; cursor: pointer; box-shadow: 0 16px 34px rgba(191,103,60,.18); transition: .25s ease; }
.contact-submit:hover { transform: translateY(-2px); box-shadow: 0 20px 42px rgba(191,103,60,.26); }
.contact-feedback { grid-column: 1 / -1; padding: 14px 18px; border-radius: 5px; font-size: 13px; margin-top: 16px; }
.contact-success { background: rgba(46,160,67,.10); border: 1px solid rgba(46,160,67,.28); color: #1a6328; }
.contact-error   { background: rgba(192,57,43,.08); border: 1px solid rgba(192,57,43,.22); color: #8b2217; }

.contact-support { padding: 0 0 34px; background: #fbfaf7; }
.support-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid rgba(33,31,28,.12); border-radius: 8px; background: rgba(255,255,255,.56); overflow: hidden; }
.support-item { display: grid; grid-template-columns: 58px 1fr; gap: 18px; align-items: center; padding: 26px 32px; border-right: 1px solid rgba(33,31,28,.12); }
.support-item:last-child { border-right: 0; }
.support-icon { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; color: #1e1b18; background: rgba(33,31,28,.035); }
.support-icon svg { width: 30px; height: 30px; }
.support-item h3 { font-size: 13px; letter-spacing: .11em; text-transform: uppercase; margin-bottom: 6px; }
.support-item p { font-size: 13px; line-height: 1.55; color: #5f5a52; }

@media (max-width: 1100px) {
    .contact-hero-grid { grid-template-columns: 1fr; }
    .contact-hero-copy { padding: 34px 24px 48px; }
    .contact-hero-image { min-height: 340px; }
    .contact-quick { margin-top: 0; }
    .contact-quick-grid { grid-template-columns: repeat(2,1fr); }
    .quick-card:nth-child(2) { border-right: 0; }
    .quick-card:nth-child(-n+2) { border-bottom: 1px solid rgba(33,31,28,.12); }
    .contact-grid { grid-template-columns: 1fr; }
    .map-info { grid-template-columns: 1fr; gap: 14px; }
    .map-route { width: 100%; }
    .support-grid { grid-template-columns: 1fr; }
    .support-item { border-right: 0; border-bottom: 1px solid rgba(33,31,28,.12); }
    .support-item:last-child { border-bottom: 0; }
}

@media (max-width: 760px) {
    .contact-hero h1 { font-size: 52px; }
    .contact-breadcrumb { margin-bottom: 36px; }
    .contact-quick { padding-top: 22px; background: #f7f4ef; }
    .contact-quick-grid { grid-template-columns: 1fr; }
    .quick-card { border-right: 0; border-bottom: 1px solid rgba(33,31,28,.12); padding: 24px 22px; }
    .quick-card:last-child { border-bottom: 0; }
    .contact-main { padding-top: 24px; }
    .message-card { padding: 22px; }
    .contact-form { grid-template-columns: 1fr; }
    .contact-field, .contact-submit { min-height: 52px; }
    .support-item { grid-template-columns: 48px 1fr; padding: 22px; }
}

/* ── Lightbox ── */
.main-product-image { cursor: zoom-in; }
.lb-overlay {
    position: fixed; inset: 0; z-index: 500;
    background: rgba(10,9,8,.92);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity .25s ease;
    backdrop-filter: blur(6px);
}
.lb-overlay.is-open { opacity: 1; pointer-events: all; }
.lb-img-wrap {
    max-width: min(90vw, 1100px);
    max-height: 90vh;
    display: flex; align-items: center; justify-content: center;
}
.lb-img-wrap img {
    width: auto; height: auto;
    max-width: 100%; max-height: 90vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 32px 80px rgba(0,0,0,.5);
    transition: transform .3s ease;
}
.lb-close {
    position: fixed; top: 20px; right: 24px;
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
    color: #fff; display: grid; place-items: center;
    cursor: pointer; transition: background .2s ease;
    z-index: 501;
}
.lb-close:hover { background: rgba(255,255,255,.22); }
.lb-arrow {
    position: fixed; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
    color: #fff; display: grid; place-items: center;
    cursor: pointer; transition: background .2s ease; z-index: 501;
}
.lb-arrow:hover { background: rgba(255,255,255,.22); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-thumbs {
    position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 501;
    max-width: 90vw; overflow-x: auto; padding: 4px;
}
.lb-thumb-btn {
    flex: 0 0 60px; height: 60px; border-radius: 5px; overflow: hidden;
    border: 2px solid rgba(255,255,255,.25); background: rgba(0,0,0,.3);
    cursor: pointer; padding: 0; transition: border-color .2s ease;
}
.lb-thumb-btn img { width: 100%; height: 100%; object-fit: cover; }
.lb-thumb-btn.lb-thumb-active { border-color: var(--copper); }
.lb-thumb-btn:hover { border-color: rgba(255,255,255,.6); }

/* ── Kurumsal Sayfası ── */
.corp-page { background: radial-gradient(circle at 8% 8%, rgba(191,103,60,.055), transparent 26%), linear-gradient(180deg,#fbfaf7 0%,#f5f1ea 48%,#fbfaf7 100%); color: var(--ink); overflow: hidden; }
.corp-shell { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; padding-bottom: 64px; }
.corp-breadcrumb { display: flex; align-items: center; gap: 10px; padding: 24px 0 14px; color: #7b756c; font-size: 12px; }
.corp-breadcrumb a { color: #7b756c; }
.corp-breadcrumb strong { color: var(--copper); }

.corp-hero { min-height: 470px; border-radius: 10px; overflow: hidden; position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: stretch; background: linear-gradient(180deg,#fbfaf7 0%,#f5f1ea 100%); border: 1px solid rgba(33,31,28,.08); box-shadow: 0 24px 70px rgba(24,21,18,.10); isolation: isolate; }
.corp-hero-copy { position: relative; z-index: 2; padding: clamp(36px,5vw,68px); display: flex; flex-direction: column; justify-content: center; color: var(--ink); background: radial-gradient(circle at 0% 0%, rgba(191,103,60,.055), transparent 34%), linear-gradient(90deg,rgba(251,250,247,1) 0%,rgba(251,250,247,.92) 76%,rgba(251,250,247,.62) 100%); }
.corp-hero-media { position: relative; min-height: 470px; z-index: 1; overflow: hidden; background: #e7e0d6; }
.corp-hero-media::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg,rgba(251,250,247,.30),transparent 24%); pointer-events: none; }
.corp-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.corp-kicker { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px; color: var(--copper); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; font-weight: 800; }
.corp-kicker::after { content: ""; width: 34px; height: 2px; background: var(--copper); display: inline-block; }
.corp-hero h1 { max-width: 540px; font-family: "Cormorant Garamond",Georgia,serif; font-size: clamp(52px,5.5vw,82px); line-height: .94; letter-spacing: -.035em; font-weight: 600; color: #181613; margin-bottom: 24px; }
.corp-hero h1 strong { color: var(--copper); font-weight: 600; }
.corp-hero p { max-width: 480px; color: #5d574f; font-size: 15px; line-height: 1.78; margin-bottom: 34px; }
.corp-hero-btn { width: fit-content; min-width: 188px; border-color: rgba(33,31,28,.38) !important; color: #211f1c !important; background: rgba(255,255,255,.40) !important; box-shadow: none !important; }
.corp-hero-btn:hover { border-color: rgba(33,31,28,.72) !important; background: rgba(255,255,255,.80) !important; }

.corp-stats { margin-top: 30px; padding: 35px 22px; display: grid; grid-template-columns: repeat(4,1fr); background: rgba(255,255,255,.72); border: 1px solid rgba(33,31,28,.08); box-shadow: 0 20px 60px rgba(26,24,20,.09); border-radius: 8px; backdrop-filter: blur(10px); }
.corp-stat { text-align: center; padding: 0 24px; border-right: 1px solid rgba(33,31,28,.13); }
.corp-stat:last-child { border-right: 0; }
.corp-stat strong { display: block; font-family: "Cormorant Garamond",Georgia,serif; font-size: clamp(34px,4vw,48px); line-height: 1; font-weight: 600; color: var(--copper); margin-bottom: 12px; }
.corp-stat b { display: block; font-size: 12px; letter-spacing: .09em; text-transform: uppercase; color: var(--ink); margin-bottom: 7px; }
.corp-stat span { display: block; color: var(--muted); font-size: 12px; line-height: 1.55; }

.corp-about { margin-top: 56px; padding-top: 20px; border-top: 1px solid rgba(33,31,28,.09); display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(34px,5vw,72px); align-items: center; }
.corp-about-media { height: 440px; border-radius: 8px; overflow: hidden; box-shadow: 0 22px 60px rgba(26,24,20,.12); background: #ddd; }
.corp-about-media img { width: 100%; height: 100%; object-fit: cover; }
.corp-section-kicker { display: inline-flex; align-items: center; gap: 12px; color: var(--copper); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; font-weight: 800; margin-bottom: 16px; }
.corp-section-kicker::after { content: ""; width: 34px; height: 2px; background: var(--copper); display: inline-block; }
.corp-about h2 { font-family: "Cormorant Garamond",Georgia,serif; font-size: clamp(38px,4vw,54px); line-height: 1.04; font-weight: 600; letter-spacing: -.018em; margin-bottom: 20px; }
.corp-about p { max-width: 590px; color: #5e5952; font-size: 15px; line-height: 1.82; margin-bottom: 24px; }
.corp-checks { display: grid; gap: 14px; margin-top: 26px; }
.corp-check { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: center; color: #3a3630; font-size: 14px; }
.corp-check i { width: 20px; height: 20px; border-radius: 50%; border: 1px solid rgba(191,103,60,.52); color: var(--copper); display: grid; place-items: center; font-style: normal; font-size: 12px; font-weight: 800; }

.corp-mv { margin-top: 54px; padding: 42px 44px; border-radius: 10px; background: linear-gradient(135deg,rgba(255,255,255,.76),rgba(244,239,231,.92)); border: 1px solid rgba(33,31,28,.08); box-shadow: 0 20px 54px rgba(26,24,20,.07); display: grid; grid-template-columns: 1fr 1px 1fr; gap: 40px; }
.corp-mv-item { display: grid; grid-template-columns: 42px 1fr; gap: 22px; align-items: start; }
.corp-mv-icon { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(191,103,60,.22); display: grid; place-items: center; color: var(--copper); background: rgba(191,103,60,.055); }
.corp-mv-icon svg { width: 24px; height: 24px; }
.corp-mv-line { width: 1px; background: rgba(33,31,28,.12); }
.corp-mv-title { font-family: "Cormorant Garamond",Georgia,serif; font-size: 28px; line-height: 1.1; font-weight: 600; letter-spacing: -.018em; margin-bottom: 13px; color: var(--ink); }
.corp-mv p { color: var(--muted); font-size: 14px; line-height: 1.75; }
.corp-mini-line { width: 34px; height: 2px; background: var(--copper); margin-top: 18px; }

.corp-timeline { margin-top: 64px; padding-bottom: 30px; }
.corp-timeline-title { margin-bottom: 40px; }
.corp-timeline-heading { font-family: "Cormorant Garamond",Georgia,serif; font-size: clamp(28px,3vw,40px); font-weight: 600; letter-spacing: -.02em; color: #181613; margin-top: 10px; }

/* Timeline bağlantı çizgisi */
.timeline-row { position: relative; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 0; }
.timeline-row::before { content: ""; position: absolute; top: 54px; left: calc(12.5%); right: calc(12.5%); height: 2px; background: linear-gradient(90deg, transparent, rgba(191,103,60,.25) 8%, rgba(191,103,60,.55) 50%, rgba(191,103,60,.25) 92%, transparent); z-index: 0; }

/* Kart */
.timeline-card { position: relative; padding: 0 20px 0; }
.timeline-card-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }

/* Dekoratif büyük yıl arka plan yazısı */
.timeline-year-bg { display: block; font-family: "Cormorant Garamond",Georgia,serif; font-size: 80px; font-weight: 700; line-height: 1; color: rgba(191,103,60,.07); letter-spacing: -.04em; margin-bottom: -18px; pointer-events: none; user-select: none; }

/* Nokta */
.timeline-dot { position: relative; z-index: 1; width: 22px; height: 22px; border-radius: 50%; background: #fbfaf7; border: 2px solid rgba(191,103,60,.40); display: flex; align-items: center; justify-content: center; margin: 8px 0; transition: border-color .25s, transform .25s; }
.timeline-dot span { width: 8px; height: 8px; border-radius: 50%; background: var(--copper); display: block; transition: transform .25s; }
.timeline-card:hover .timeline-dot { border-color: var(--copper); transform: scale(1.15); }
.timeline-card:hover .timeline-dot span { transform: scale(1.2); }
.timeline-card--active .timeline-dot { border-color: var(--copper); background: var(--copper); box-shadow: 0 0 0 5px rgba(191,103,60,.15); }
.timeline-card--active .timeline-dot span { background: #fff; }

/* İçerik kutusu */
.timeline-body { background: #fff; border: 1px solid rgba(33,31,28,.08); border-radius: 10px; padding: 20px 18px 22px; width: 100%; margin-top: 14px; box-shadow: 0 8px 28px rgba(26,24,20,.07); transition: box-shadow .25s, transform .25s; }
.timeline-card:hover .timeline-body { box-shadow: 0 16px 42px rgba(26,24,20,.12); transform: translateY(-3px); }
.timeline-card--active .timeline-body { border-color: rgba(191,103,60,.22); background: linear-gradient(160deg,#fff 60%,rgba(191,103,60,.04)); }
.timeline-year-label { display: block; font-family: "Cormorant Garamond",Georgia,serif; font-size: 32px; font-weight: 700; color: var(--copper); line-height: 1; margin-bottom: 8px; }
.timeline-body h4 { font-size: 12px; font-weight: 800; letter-spacing: .10em; text-transform: uppercase; color: #1e1b18; margin-bottom: 10px; }
.timeline-body p { color: #5e5952; font-size: 13px; line-height: 1.65; }

.corp-cta { margin-top: 36px; min-height: 170px; border-radius: 8px; overflow: hidden; position: relative; display: grid; grid-template-columns: 1.15fr 1fr; align-items: center; gap: 32px; padding: 38px 56px; color: #fff; background: #0c0c0b; box-shadow: 0 24px 70px rgba(20,18,14,.16); isolation: isolate; }
.corp-cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(5,5,5,.92) 0%,rgba(5,5,5,.80) 34%,rgba(5,5,5,.34) 100%); z-index: -2; }
.corp-cta::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 78% 50%,rgba(191,103,60,.08),transparent 34%); z-index: -1; }
.corp-cta-kicker { margin-bottom: 8px; color: var(--copper-2) !important; }
.corp-cta-kicker::after { background: var(--copper-2) !important; }
.corp-cta h2 { font-family: "Cormorant Garamond",Georgia,serif; font-size: clamp(34px,3.6vw,48px); line-height: 1.05; font-weight: 600; letter-spacing: -.018em; color: #f5eee4; margin-bottom: 12px; }
.corp-cta p { max-width: 470px; color: rgba(255,255,255,.76); font-size: 14px; line-height: 1.75; }
.corp-cta-actions { display: flex; justify-content: flex-end; gap: 18px; flex-wrap: wrap; }
.corp-cta-actions .btn { min-width: 172px; }
.corp-cta-actions .btn-outline { border-color: rgba(255,255,255,.36); }

@media (max-width: 1100px) {
    .corp-hero { grid-template-columns: 1fr; min-height: auto; }
    .corp-hero-media { min-height: 360px; order: 2; }
    .corp-hero-copy { order: 1; }
    .corp-stats { grid-template-columns: repeat(2,1fr); row-gap: 28px; }
    .corp-stat:nth-child(2) { border-right: 0; }
    .corp-about { grid-template-columns: 1fr; }
    .corp-about-media { height: 360px; }
    .corp-mv { grid-template-columns: 1fr; }
    .corp-mv-line { width: 100%; height: 1px; }
    .timeline-row { grid-template-columns: repeat(2,1fr); row-gap: 32px; }
    .timeline-row::before { display: none; }
    .timeline-year-bg { font-size: 60px; }
    .corp-cta { grid-template-columns: 1fr; }
    .corp-cta-actions { justify-content: flex-start; }
}
@media (max-width: 760px) {
    .corp-shell { width: min(100% - 32px, var(--container)); }
    .corp-hero-copy { padding: 32px 24px; }
    .corp-hero-media { min-height: 300px; }
    .corp-hero h1 { font-size: 45px; }
    .corp-stats { grid-template-columns: repeat(2,1fr); padding: 22px 0; row-gap: 0; }
    .corp-stat { border-bottom: 1px solid rgba(33,31,28,.10); padding: 20px 14px; }
    .corp-stat:nth-child(odd) { border-right: 1px solid rgba(33,31,28,.10); }
    .corp-stat:nth-child(even) { border-right: 0; }
    .corp-stat:nth-last-child(-n+2) { border-bottom: 0; }
    .corp-about { margin-top: 34px; }
    .corp-about-media { height: 280px; }
    .corp-mv { margin-top: 34px; padding: 26px 18px; grid-template-columns: 1fr 1px 1fr; gap: 20px; }
    .corp-mv-line { width: 1px; height: auto; }
    .corp-mv-item { grid-template-columns: 1fr; }
    .timeline-row { grid-template-columns: 1fr 1fr; row-gap: 24px; }
    .timeline-year-bg { font-size: 52px; }
    .corp-cta { margin-top: 22px; padding: 30px 24px; }
    .corp-cta-actions .btn { width: 100%; }
}

/* ── Projeler Sayfası ── */
.projects-page-wrap { background: #fbfaf7; }

/* İstatistik bar */
.proj-stats-bar { background: #fff; border-bottom: 1px solid rgba(33,31,28,.08); }
.proj-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.proj-stat { text-align: center; padding: 28px 20px; border-right: 1px solid rgba(33,31,28,.08); }
.proj-stat:last-child { border-right: 0; }
.proj-stat strong { display: block; font-family: "Cormorant Garamond",Georgia,serif; font-size: clamp(32px,4vw,46px); font-weight: 600; color: var(--copper); line-height: 1; margin-bottom: 8px; }
.proj-stat span { font-size: 11px; font-weight: 700; letter-spacing: .10em; text-transform: uppercase; color: #6f6b62; }

/* Projeler bölümü */
.proj-section { padding: 56px 0 72px; }

/* Filtre */
.proj-filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; padding: 6px; background: rgba(33,31,28,.04); border-radius: 8px; width: fit-content; }
.proj-filter-btn { padding: 9px 22px; border: 0; border-radius: 5px; background: transparent; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #6f6b62; cursor: pointer; transition: background .2s, color .2s; }
.proj-filter-btn:hover { color: var(--ink); background: rgba(33,31,28,.06); }
.proj-filter-btn.is-active { background: #fff; color: var(--ink); box-shadow: 0 2px 10px rgba(33,31,28,.10); }

/* Grid */
.proj-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

/* Kart */
.proj-card { position: relative; border-radius: 10px; overflow: hidden; background: #1a1814; min-height: 320px; display: flex; flex-direction: column; justify-content: flex-end; cursor: pointer; isolation: isolate; }
.proj-card--featured { grid-column: span 2; min-height: 400px; }

.proj-card-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .55s ease; z-index: 0; }
.proj-card:hover .proj-card-img { transform: scale(1.06); }

.proj-card-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(12,11,9,.08) 0%, rgba(12,11,9,.22) 35%, rgba(12,11,9,.78) 100%); transition: background .35s; }
.proj-card:hover .proj-card-overlay { background: linear-gradient(180deg, rgba(12,11,9,.12) 0%, rgba(12,11,9,.32) 35%, rgba(12,11,9,.90) 100%); }

/* Üst rozetler */
.proj-card-top { position: absolute; top: 18px; left: 18px; right: 18px; z-index: 2; display: flex; justify-content: space-between; align-items: flex-start; }
.proj-badge { display: inline-flex; align-items: center; min-height: 24px; padding: 0 11px; border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.proj-badge--cat { background: rgba(191,103,60,.85); color: #fff; backdrop-filter: blur(6px); }

/* ── Hizmet Bölgeleri ── */
.hizmet-bolgeleri { background: var(--stone); padding: 88px 0; }
.hizmet-bolgeleri-inner { text-align: center; }
.hizmet-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; color: var(--copper); text-transform: uppercase; margin-bottom: 18px; }
.hizmet-main-title { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 700; color: var(--ink); line-height: 1.2; margin-bottom: 20px; }
.hizmet-desc { max-width: 580px; margin: 0 auto 26px; color: var(--muted); font-size: 0.97rem; line-height: 1.75; }
.hizmet-cta-link { display: inline-flex; align-items: center; gap: 6px; color: var(--copper); font-weight: 600; font-size: 0.9rem; text-decoration: none; margin-bottom: 52px; transition: gap .2s; }
.hizmet-cta-link:hover { gap: 10px; }
.hizmet-grid { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; text-align: left; }
.hizmet-card { flex: 0 0 calc(33.333% - 13px); background: #fff; border: 1px solid var(--stone-2); border-radius: 12px; padding: 26px 28px; min-width: 200px; transition: box-shadow .2s, border-color .2s; }
.hizmet-card:hover { box-shadow: 0 6px 24px rgba(20,18,14,.09); border-color: var(--copper); }
.hizmet-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.hizmet-card-title { font-weight: 700; font-size: 0.97rem; color: var(--ink); }
.hizmet-card-arrow { color: var(--copper); font-size: 1.05rem; transition: transform .2s; }
.hizmet-card:hover .hizmet-card-arrow { transform: translateX(4px); }
.hizmet-card-sub { font-size: 0.8rem; color: var(--muted); margin: 0; line-height: 1.5; }
@media (max-width: 767px) {
    .hizmet-bolgeleri { padding: 60px 0; }
    .hizmet-card { flex: 0 0 100%; }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .hizmet-card { flex: 0 0 calc(50% - 9px); }
}
a.hizmet-card { color: var(--ink); text-decoration: none; display: block; }
.cat-group-label { grid-column: 1 / -1; font-family: "Cormorant Garamond", Georgia, serif; font-weight: 700; text-transform: uppercase; display: flex; align-items: center; gap: 10px; margin-bottom: -6px; }
@media (min-width: 769px) { .cat-group-label ~ .cat-group-label { padding-top: 20px; } }
.sehir-diger-bolge { background: var(--stone-2); }
.proj-badge--year { background: rgba(255,255,255,.15); color: rgba(255,255,255,.90); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.20); }

/* ── Şehir Parke Taşı Sayfası ── */
.sehir-page { background: #fbfaf7; }
.sehir-section-head { text-align:left; margin-bottom: 20px; }
.sehir-section-head h2 { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; color: var(--ink); line-height: 1.15; letter-spacing: -.02em; margin-bottom: 14px; }
.sehir-section-head p { color: var(--muted); font-size: 15px; line-height: 1.65; }
.sehir-section-head--left { text-align: left; }
.sehir-section-head--left p { margin: 0; }

/* Ürünler */
.sehir-products { padding: 72px 0 64px; background: #fbfaf7; }

/* Kullanım Alanları */
.sehir-kullanim { background: var(--stone); padding: 72px 0; }
.sehir-kullanim-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.sehir-kullanim-card { background: #fff; border-radius: 12px; padding: 22px 14px 20px; text-align: center; box-shadow: 0 2px 10px rgba(33,31,28,.06); }
.sehir-kullanim-icon { width: 36px; height: 36px; margin: 0 auto 14px; color: var(--copper); }
.sehir-kullanim-icon svg { width: 100%; height: 100%; }
.sehir-kullanim-card h3 { font-size: 12.5px; font-weight: 700; color: var(--ink); margin-bottom: 5px; line-height: 1.3; }
.sehir-kullanim-card p { font-size: 11.5px; color: var(--muted); line-height: 1.55; }

/* Sevkiyat / SEO */
.sehir-sevkiyat { padding: 72px 0; background: #fff; }
.sehir-seo-content { margin: 0 auto; }

.sehir-seo-content a { font-weight: 700; color: #1a6bbf; text-decoration: underline; }
.sehir-seo-content a:hover { color: #0d4a8a; }
.sehir-seo-content h2 { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.3rem, 2.3vw, 1.85rem); font-weight: 700; color: var(--ink); line-height: 1.2; letter-spacing: -.018em; margin: 42px 0 14px; }
.sehir-seo-content h2:first-child { margin-top: 0; }
.sehir-seo-content p { color: #555049; font-size: 15px; line-height: 1.85; margin-bottom: 18px; }
.sehir-seo-content p:last-child { margin-bottom: 0; }

/* Fiyatlar Accordion */
.sehir-fiyat { padding: 72px 0; background: var(--stone); }
.sehir-accordion { margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.sehir-acc-item { background: #fff; border-radius: 12px; overflow: hidden; }
.sehir-acc-trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; font-size: 15px; font-weight: 600; color: var(--ink); cursor: pointer; background: none; border: none; text-align: left; line-height: 1.4; }
.sehir-acc-trigger svg { flex-shrink: 0; transition: transform .25s ease; color: var(--copper); }
.sehir-acc-item.is-open .sehir-acc-trigger svg { transform: rotate(180deg); }
.sehir-acc-body { padding: 0 24px 22px; display: none; }
.sehir-acc-item.is-open .sehir-acc-body { display: block; }
.sehir-acc-body p { font-size: 14.5px; color: var(--muted); line-height: 1.8; margin: 0; }

/* CTA Bar */
.sehir-cta-bar { background: var(--ink); padding: 72px 0; }
.sehir-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.sehir-cta-copy h2 { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 8px; }
.sehir-cta-copy p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.5; max-width: 460px; }
.sehir-wa-btn { display: inline-flex; align-items: center; gap: 10px; background: #1c8749; color: #fff; padding: 15px 28px; border-radius: 10px; font-weight: 600; font-size: 15px; text-decoration: none; transition: background .2s, transform .15s; white-space: nowrap; }
.sehir-wa-btn:hover { background: #27ae60; transform: translateY(-2px); }

/* Responsive */
@media (max-width: 1024px) { .sehir-kullanim-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
    .sehir-kullanim-grid { grid-template-columns: repeat(2, 1fr); }
    .sehir-cta-inner { flex-direction: column; align-items: flex-start; }
    .sehir-wa-btn { width: 100%; justify-content: center; }
}
@media (max-width: 520px) { .sehir-kullanim-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* Alt içerik */
.proj-card-bottom { position: relative; z-index: 2; padding: 20px 22px 22px; }
.proj-card-info { max-height: 0; overflow: hidden; transition: max-height .38s ease, opacity .3s ease; opacity: 0; }
.proj-card:hover .proj-card-info { max-height: 120px; opacity: 1; }
.proj-card-desc { color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.65; margin-bottom: 10px; }
.proj-card-meta-row { display: flex; gap: 16px; margin-bottom: 12px; }
.proj-card-area { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.55); }

.proj-card-title-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.proj-card-title-row h3 { font-size: 17px; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 5px; }
.proj-card-location { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; color: rgba(255,255,255,.55); font-weight: 500; }
.proj-card-arrow { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.75); display: grid; place-items: center; font-size: 16px; flex-shrink: 0; transition: background .25s, border-color .25s, color .25s, transform .25s; }
.proj-card:hover .proj-card-arrow { background: var(--copper); border-color: var(--copper); color: #fff; transform: rotate(-45deg); }

/* Boş durum */
.proj-empty { text-align: center; padding: 60px 0; color: #8a8379; font-size: 15px; }

/* CTA band */
.proj-cta-band { background: linear-gradient(115deg,#111109 0%,#1c1e12 56%,#0e0e0c 100%); border-top: 1px solid rgba(255,255,255,.06); padding: 64px 0; }
.proj-cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.proj-cta-copy .eyebrow { margin-bottom: 12px; }
.proj-cta-copy h2 { font-family: "Cormorant Garamond",Georgia,serif; font-size: clamp(32px,3.5vw,48px); font-weight: 600; line-height: 1.05; letter-spacing: -.025em; color: #f4ede0; margin-bottom: 14px; }
.proj-cta-copy p { color: rgba(255,255,255,.58); font-size: 15px; line-height: 1.75; max-width: 520px; }
.proj-cta-actions { display: flex; flex-direction: row; gap: 12px; align-items: center; flex-wrap: wrap; }
.proj-cta-outline { color: rgba(255,255,255,.80); border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.04); min-width: 172px; }
.proj-cta-outline:hover { border-color: rgba(255,255,255,.50); background: rgba(255,255,255,.08); color: #fff; }

/* Responsive */
@media (max-width: 1024px) {
    .proj-grid { grid-template-columns: repeat(2,1fr); }
    .proj-card--featured { grid-column: span 2; }
}
@media (max-width: 760px) {
    .proj-stats-grid { grid-template-columns: repeat(2,1fr); }
    .proj-stat:nth-child(2) { border-right: 0; }
    .proj-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(33,31,28,.08); }
    .proj-grid { grid-template-columns: 1fr; gap: 14px; }
    .proj-card--featured { grid-column: span 1; }
    .proj-card-info { max-height: none; opacity: 1; }
    .proj-cta-inner { grid-template-columns: 1fr; }
    .proj-cta-actions { align-items: flex-start; }
    .proj-cta-actions .btn { width: 100%; justify-content: center; }
    .proj-card-desc { display: none; }
    .proj-card-meta-row { display: none; }
}

/* ── Projeler Modal ── */
.proj-modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(10,9,7,.82); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.proj-modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.proj-modal {
  background: #fff; border-radius: 14px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  width: min(980px, 96vw); max-height: 90vh;
  transform: translateY(24px) scale(.97); transition: transform .32s ease;
  position: relative;
}
.proj-modal-overlay.is-open .proj-modal { transform: translateY(0) scale(1); }
.proj-modal-img {
  background: #1a1a15 center/cover no-repeat;
  min-height: 480px;
}
.proj-modal-detail {
  padding: 40px 36px 36px;
  overflow-y: auto; display: flex; flex-direction: column; gap: 16px;
}
.proj-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.45); border: none; cursor: pointer;
  color: #fff; font-size: 20px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.proj-modal-close:hover { background: rgba(0,0,0,.72); }
.proj-modal-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.proj-modal-cat {
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; background: var(--copper); border-radius: 4px; padding: 3px 10px;
}
.proj-modal-year {
  font-size: 10px; font-weight: 700; letter-spacing: .10em; text-transform: uppercase;
  color: var(--copper); border: 1px solid var(--copper); border-radius: 4px; padding: 3px 10px;
}
.proj-modal-title {
  font-family: "Cormorant Garamond",Georgia,serif;
  font-size: clamp(24px,2.8vw,34px); font-weight: 600;
  color: #181613; line-height: 1.1; letter-spacing: -.02em; margin: 0;
}
.proj-modal-desc {
  font-size: 14.5px; line-height: 1.75; color: #555049; margin: 0; flex: 1;
}
.proj-modal-meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  border-top: 1px solid rgba(33,31,28,.1); padding-top: 16px;
}
.proj-modal-meta-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: #211f1c; }
.proj-modal-meta-item svg { flex-shrink: 0; color: var(--copper); }
.proj-modal-wa {
  display: inline-flex; align-items: center; gap: 8px;
  justify-content: center; text-decoration: none; width: 100%;
}
.proj-modal-nav {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(33,31,28,.08); padding-top: 16px;
}
.proj-modal-nav-btn {
  display: flex; align-items: center; gap: 6px;
  background: none; border: 1px solid rgba(33,31,28,.18); border-radius: 8px;
  padding: 8px 16px; font-size: 13px; font-weight: 600; color: #211f1c;
  cursor: pointer; transition: background .2s, border-color .2s;
}
.proj-modal-nav-btn:hover { background: #f7f4ef; border-color: rgba(33,31,28,.32); }
.proj-modal-nav-btn:disabled { opacity: .35; cursor: not-allowed; }
.proj-modal-counter { font-size: 13px; color: #888; font-weight: 500; }
@media (max-width: 720px) {
  .proj-modal { grid-template-columns: 1fr; }
  .proj-modal-img { min-height: 240px; }
  .proj-modal-detail { padding: 24px 20px 20px; }
}

/* ── Sepet Ürün Önerileri ── */
.cart-suggestions { background: #f7f4ef; padding: 56px 0 64px; border-top: 1px solid rgba(33,31,28,.08); }
.cart-suggestions-title { font-family: "Cormorant Garamond",Georgia,serif; font-size: clamp(28px,3vw,40px); font-weight: 600; color: #181613; letter-spacing: -.02em; margin-bottom: 32px; }
.cart-suggestions-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.cart-sug-card { background: #fff; border: 1px solid rgba(33,31,28,.09); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: transform .22s ease, box-shadow .22s ease; }
.cart-sug-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(20,18,14,.11); }
.cart-sug-img { aspect-ratio: 4/3; overflow: hidden; background: #ede8e0; }
.cart-sug-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.cart-sug-card:hover .cart-sug-img img { transform: scale(1.04); }
.cart-sug-img-placeholder { width: 100%; height: 100%; background: #e0d9cf; }
.cart-sug-body { padding: 16px 18px 12px; flex: 1; }
.cart-sug-cat { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--copper); display: block; margin-bottom: 6px; }
.cart-sug-body h3 { font-size: 15px; font-weight: 600; color: #211f1c; line-height: 1.35; margin-bottom: 10px; }
.cart-sug-price { font-size: 14px; font-weight: 700; color: #211f1c; }
.cart-sug-arrow { padding: 10px 18px 14px; font-size: 16px; color: var(--copper); text-align: right; }
@media (max-width: 900px) { .cart-suggestions-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .cart-suggestions-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }

/* ── Boş Sepet ── */
.hastas-cart-empty { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 64px 24px 80px; gap: 16px; }
.hastas-cart-empty svg { color: #c8bfb2; margin-bottom: 8px; }
.hastas-cart-empty h2 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 36px; font-weight: 600; color: var(--ink); }
.hastas-cart-empty p { color: var(--muted); font-size: 14px; line-height: 1.75; max-width: 420px; }
.hastas-cart-empty .btn { margin-top: 8px; }

/* ── Teklif İste (Parke Taşı) ── */
.teklif-cta { display: flex; flex-direction: column; gap: 14px; margin-top: 4px; }
.teklif-note { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; color: #666; line-height: 1.6; margin: 0; background: #f7f4ef; border-radius: 8px; padding: 12px 14px; }
.teklif-note svg { flex-shrink: 0; margin-top: 2px; color: var(--copper); }
.teklif-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 15px 24px; background: #1c8749; color: #fff; border-radius: 10px; font-size: 15px; font-weight: 600; letter-spacing: .02em; text-decoration: none; border: none; cursor: pointer; transition: background .2s, transform .15s; }
.teklif-btn:hover { background: #27ae60; transform: translateY(-1px); }
.teklif-btn:active { transform: translateY(0); }

/* ── Legal Sayfa Başlığı ── */
.legal-page-header { background: #fff; border-bottom: 1px solid rgba(33,31,28,.08); padding: 36px 0 32px; }
.legal-page-header h1 { font-family: "Cormorant Garamond",Georgia,serif; font-size: clamp(28px,3.5vw,42px); font-weight: 600; color: #181613; letter-spacing: -.025em; margin: 10px 0 10px; }
.legal-page-header p { font-size: 15px; color: #666; line-height: 1.65; max-width: 560px; margin: 0; }
.legal-page-header .contact-breadcrumb { margin-bottom: 0; }

/* ── Legal Sayfalar (Gizlilik / Kullanım Koşulları) ── */
.legal-page { background: #f7f4ef; padding-bottom: 80px; }
.legal-shell { max-width: 1190px; margin: 0 auto; padding: 20px 0 0; display: grid; grid-template-columns: 240px 1fr; gap: 20px; align-items: start; }
.legal-toc { position: sticky; top: 100px; background: #fff; border: 1px solid rgba(33,31,28,.09); border-radius: 10px; padding: 24px; }
.legal-toc-title { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--copper); margin-bottom: 14px; }
.legal-toc-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.legal-toc-list a { display: block; font-size: 13px; color: #555049; text-decoration: none; padding: 6px 10px; border-radius: 6px; transition: background .18s, color .18s; line-height: 1.4; }
.legal-toc-list a:hover { background: #f7f4ef; color: #211f1c; }
.legal-toc-list a.is-active { background: #f0ece4; color: var(--copper); font-weight: 600; }
.legal-meta { font-size: 12px; color: #999; margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(33,31,28,.08); }
.legal-content { min-width: 0; }
.legal-section { background: #fff; border: 1px solid rgba(33,31,28,.08); border-radius: 12px; padding: 36px 40px; margin-bottom: 20px; scroll-margin-top: 100px; }
.legal-section-num { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--copper); background: rgba(182,107,62,.08); border-radius: 4px; padding: 3px 10px; margin-bottom: 12px; }
.legal-section h2 { font-family: "Cormorant Garamond",Georgia,serif; font-size: clamp(20px,2.2vw,26px); font-weight: 600; color: #181613; line-height: 1.15; letter-spacing: -.02em; margin: 0 0 16px; }
.legal-section h3 { font-size: 15px; font-weight: 700; color: #211f1c; margin: 20px 0 8px; }
.legal-section p { font-size: 14.5px; line-height: 1.8; color: #555049; margin: 0 0 12px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul, .legal-section ol { padding-left: 20px; margin: 8px 0 12px; }
.legal-section li { font-size: 14.5px; line-height: 1.75; color: #555049; margin-bottom: 6px; }
.legal-section strong { color: #211f1c; font-weight: 600; }
.legal-section a { color: white; text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }
.legal-highlight { background: rgba(182,107,62,.06); border-left: 3px solid var(--copper); border-radius: 0 8px 8px 0; padding: 14px 18px; margin: 16px 0; font-size: 14px; color: #444; line-height: 1.7; }
.legal-contact-box { background: #181613; border-radius: 10px; padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.legal-contact-box p { color: rgba(255,255,255,.75); font-size: 14px; line-height: 1.65; margin: 0; }
.legal-contact-box strong { color: #f4ede0; display: block; font-size: 16px; margin-bottom: 6px; }
@media (max-width: 900px) {
    .legal-shell { grid-template-columns: 1fr; gap: 24px; padding-top: 32px; }
    .legal-toc { position: static; }
    .legal-section { padding: 24px 20px; }
    .legal-contact-box { flex-direction: column; align-items: flex-start; }
}

/* ── WooCommerce Buton Overrides ── */
.wc-proceed-to-checkout a.checkout-button,
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 50px !important;
    padding: 0 24px !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    font-family: inherit !important;
    background: linear-gradient(135deg, var(--copper), #a84f2e) !important;
    color: #fff !important;
    box-shadow: 0 14px 34px rgba(191, 103, 60, 0.25) !important;
    border: 1px solid transparent !important;
    cursor: pointer !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
    text-decoration: none !important;
}
.wc-proceed-to-checkout a.checkout-button:hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 20px 42px rgba(191, 103, 60, 0.35) !important;
    color: #fff !important;
}

@keyframes ring-fadeout {
    from { opacity: .5; transform: scale(1); }
    to   { opacity: 0;  transform: scale(1.85); }
}
.floating-whatsapp.no-pulse,
.floating-phone.no-pulse {
    animation: none !important;
    transition: box-shadow .8s ease, transform .4s ease;
}
.floating-whatsapp.no-pulse::before,
.floating-whatsapp.no-pulse::after,
.floating-phone.no-pulse::before,
.floating-phone.no-pulse::after {
    animation: ring-fadeout .8s ease-out forwards !important;
}

/* ── Mobile Contact Bar ── */
.mobile-contact-bar {
    display: none;
}
@media (max-width: 768px) {
    .floating-whatsapp,
    .floating-phone,
    .phone-label {
        display: none !important;
    }
    .mobile-contact-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        height: 50px;
    }
    .mobile-contact-bar__phone,
    .mobile-contact-bar__whatsapp {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: #fff;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        letter-spacing: .2px;
    }
    .mobile-contact-bar__phone {
        background: var(--copper);
    }
    .mobile-contact-bar__whatsapp {
        background: #0d0d0c;
    }
    .mobile-contact-bar__phone:active,
    .mobile-contact-bar__whatsapp:active {
        filter: brightness(.9);
    }
}

@media (max-width: 768px) {
    .brand-logo {
        width: 157px;
        height: 50px;
        object-fit: contain;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

.brand-logo--desktop + img { display: none; }
@media (max-width: 768px) {
    .brand-logo--desktop { display: none; }
    .brand-logo--desktop + img { display: block; }
}

.coming-soon-card { cursor: default; pointer-events: none; }
.coming-soon-card img { filter: brightness(.6); }
.coming-soon-card .product-category-content {
    position: absolute;
    inset: 0;
    min-height: unset;
}
.coming-soon-badge {
    display: inline-block;
    background: var(--copper);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 20px;
}

/* ── Arama Butonu ── */
.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.72);
    cursor: pointer;
    border-radius: 50%;
    transition: color .18s, background .18s;
    flex-shrink: 0;
}
.search-btn:hover { color: #fff; background: rgba(255,255,255,0.09); }

/* ── Arama Overlay ── */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 400;
    background: rgba(9,9,8,0.84);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}
.search-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}
.search-overlay-inner {
    width: min(680px, calc(100% - 40px));
    text-align: center;
    transform: translateY(20px);
    transition: transform .26s ease;
}
.search-overlay.is-open .search-overlay-inner { transform: translateY(0); }
.search-overlay-close {
    position: fixed;
    top: -10px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255,255,255,0.10);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: background .18s;
}
.search-overlay-close:hover { background: rgba(255,255,255,0.20); }
.search-overlay-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .20em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.40);
    margin-bottom: 26px;
}
.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.13);
    border-radius: 14px;
    padding: 0 14px 0 18px;
    transition: border-color .18s, background .18s;
}
.search-input-wrap:focus-within {
    border-color: var(--copper);
    background: rgba(255,255,255,0.10);
}
.search-input-icon { color: rgba(255,255,255,0.38); flex-shrink: 0; }
.search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: clamp(17px, 2.4vw, 24px);
    font-family: inherit;
    padding: 18px 0;
    caret-color: var(--copper);
    -webkit-appearance: none;
}
.search-input::placeholder { color: rgba(255,255,255,0.28); }
.search-input::-webkit-search-cancel-button { display: none; }
.search-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border: none;
    background: var(--copper);
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: background .18s, transform .15s;
}
.search-submit:hover { background: var(--copper-2); transform: scale(1.05); }
.search-overlay-hint {
    margin-top: 14px;
    font-size: 12px;
    color: rgba(255,255,255,0.28);
}

/* ── Arama Sonuçları ── */
.search-results-header { margin-bottom: 40px; }
.search-results-title { font-size: clamp(20px,2.8vw,30px); font-weight: 700; margin-top: 8px; }
.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.search-result-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    transition: box-shadow .2s, transform .2s;
}
.search-result-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.search-result-img { aspect-ratio: 4/3; overflow: hidden; }
.search-result-img img { width: 100%; height: 100%; object-fit: cover; }
.search-result-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.search-result-type {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--copper);
}
.search-result-body h2 { font-size: 17px; font-weight: 600; color: var(--ink); }
.search-result-body p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.search-no-results { padding: 60px 0; text-align: center; }
.search-no-results p { font-size: 17px; color: var(--muted); margin-bottom: 28px; }

/* ── Home FAQ ── */
.home-faq { padding: 72px 0; background: #f7f6f4; }
.home-faq-title { font-size: 28px; font-weight: 700; color: #1a1a18; margin: 0 0 32px; text-align: center; }
.faq-list { display: flex; flex-direction: column; gap: 10px; border-top: none; }
.faq-item { background: #fff; border: 1px solid #e2e0db; border-radius: 8px; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 600; font-size: 16px; color: #1a1a18; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; font-weight: 300; color: #999; flex-shrink: 0; transition: transform .2s; }
.faq-item[open] > summary::after { content: '−'; }
.faq-a { padding: 0 24px 20px; color: #4a4843; font-size: 15px; line-height: 1.75; }
.faq-a p { margin: 0; }
@media (max-width: 600px) {
  .home-faq { padding: 48px 0; }
  .faq-item summary { font-size: 15px; padding: 16px 18px; }
  .faq-a { padding: 0 18px 16px; }
}

/* ── Home SEO Article ── */
.home-seo-article { padding: 64px 0; }
.home-seo-article h2 { font-size: 22px; font-weight: 700; color: #1a1a18; margin: 32px 0 10px; }
.home-seo-article h2:first-child { margin-top: 0; }
.home-seo-article p { font-size: 15px; color: #4a4843; line-height: 1.75; margin: 0 0 14px; }
.home-seo-article strong { color: #1a1a18; }
.home-seo-article a { font-weight: 700 !important; color: #1a6bbf !important; }

/* ── Product SEO text links ── */
.seo-text a { font-weight: 700; color: #1a6bbf; }

/* ── Sehir Komsular ── */
.sehir-komsular { padding: 48px 0; background: #f7f6f4; }
.sehir-komsular-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; text-align: center; color: var(--text, #1a1a1a); }
.sehir-komsular-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.sehir-komsu-card { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; background: #fff; border: 1px solid #e5e7eb; border-radius: 8px; text-decoration: none; color: #1a1a1a; font-weight: 600; font-size: .95rem; transition: border-color .2s, box-shadow .2s; }
.sehir-komsu-card:hover { border-color: #1a6bbf; box-shadow: 0 2px 8px rgba(26,107,191,.12); color: #1a6bbf; }
.sehir-komsu-arrow { color: #1a6bbf; }

/* Hero desktop / mobil metinleri */
.hero-mobil  { display: none; }
.hero-desktop{ display: block; }
@media (max-width: 767px) {
    .hero-desktop { display: none; }
    .hero-mobil   { display: block; }
}
