/* ──────────────────────────────────────────────────────────────
   Active İş Elbiseleri — Public Site CSS
   Yeşil (#2D6A4F) + Beyaz, kurumsal, premium, mobile-first
────────────────────────────────────────────────────────────── */

:root {
    --green-dark:    #1B4332;
    --green-primary: #2D6A4F;
    --green-mid:     #40916C;
    --green-light:   #95D5B2;
    --green-pale:    #D8F3DC;
    --white:         #FFFFFF;
    --gray-50:       #F8F9FA;
    --gray-100:      #F1F3F5;
    --gray-200:      #E9ECEF;
    --gray-400:      #ADB5BD;
    --gray-600:      #6C757D;
    --gray-800:      #2B2D42;
    --gold:          #D4AC0D;
    --font:          'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --radius:        6px;
    --radius-lg:     10px;
    --shadow-sm:     0 1px 4px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.05);
    --shadow:        0 4px 16px rgba(0,0,0,.09);
    --shadow-lg:     0 8px 32px rgba(0,0,0,.13);
    --container:     1240px;
    --transition:    .20s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font); font-size: 16px; line-height: 1.65; color: var(--gray-800); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--gray-800); letter-spacing: -.3px; }
h1 { font-size: clamp(26px, 5vw, 48px); letter-spacing: -.5px; }
h2 { font-size: clamp(20px, 4vw, 34px); letter-spacing: -.4px; }
h3 { font-size: clamp(17px, 3vw, 22px); letter-spacing: -.2px; }
h4 { font-size: 17px; }
p  { line-height: 1.75; }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 24px; border-radius: var(--radius);
    font-size: 14px; font-weight: 600; letter-spacing: .1px;
    transition: all var(--transition); border: 2px solid transparent; white-space: nowrap;
}
.btn--primary { background: var(--green-primary); color: var(--white); border-color: var(--green-primary); }
.btn--primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(45,106,79,.28); }
.btn--outline { background: transparent; color: var(--green-primary); border-color: var(--green-primary); }
.btn--outline:hover { background: var(--green-primary); color: var(--white); }
.btn--whatsapp { background: #25D366; color: var(--white); border-color: #25D366; }
.btn--whatsapp:hover { background: #1EBE5A; border-color: #1EBE5A; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,.30); }
.btn--lg { padding: 14px 32px; font-size: 15px; }

/* ── Header / Nav ── */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: var(--white); border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}
.site-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
}
.logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name { font-size: 17px; font-weight: 800; color: var(--green-dark); letter-spacing: -.4px; }
.logo__sub { font-size: 10px; color: var(--green-mid); font-weight: 600; letter-spacing: .8px; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
    padding: 7px 13px; color: var(--gray-800); font-size: 13.5px; font-weight: 500;
    border-radius: var(--radius); transition: all var(--transition); letter-spacing: .05px;
}
.nav a:hover, .nav a.active { color: var(--green-primary); background: var(--green-pale); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-whatsapp {
    background: var(--green-primary); color: var(--white);
    padding: 8px 16px; border-radius: var(--radius);
    font-size: 12.5px; font-weight: 600; letter-spacing: .1px; transition: all var(--transition);
}
.header-whatsapp:hover { background: var(--green-dark); color: var(--white); }

.header-instagram {
    display: inline-flex; align-items: center; gap: 6px;
    background: transparent; color: var(--gray-700);
    border: 1.5px solid var(--gray-300);
    padding: 7px 14px; border-radius: var(--radius);
    font-size: 12.5px; font-weight: 600; letter-spacing: .1px;
    transition: all var(--transition);
}
.header-instagram:hover { border-color: var(--gray-500); color: var(--gray-900); background: var(--gray-100); }

.hamburger { display: none; background: none; border: none; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gray-800); margin: 5px 0; border-radius: 2px; transition: all var(--transition); }

/* ── Hero ── */
.hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 60%, var(--green-mid) 100%);
    color: var(--white);
    min-height: calc(100vh - 68px);
    display: flex; align-items: center;
    padding: 72px 0;
    position: relative; overflow: hidden;
}
.hero .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; width: 100%; }
.hero__inner { flex: 1; min-width: 0; }
.hero__eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green-light); margin-bottom: 16px; }
.hero__title { font-size: clamp(32px, 6vw, 60px); line-height: 1.1; margin-bottom: 20px; color: var(--white); }
.hero__title span { color: var(--green-light); }
.hero__subtitle { font-size: 18px; opacity: .9; margin-bottom: 36px; max-width: 560px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__badge {
    flex-shrink: 0;
    background: rgba(255,255,255,.12); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius-lg);
    padding: 28px 32px; text-align: center; min-width: 180px;
}
.hero__badge-stat { font-size: 48px; font-weight: 800; color: var(--green-light); line-height: 1; }
.hero__badge-text { font-size: 14px; opacity: .90; margin-top: 6px; line-height: 1.4; }

/* ── Section generic ── */
.section { padding: 80px 0; }
.section--alt { background: var(--gray-50); }
.section__header { text-align: center; margin-bottom: 52px; }
.section__header h2 { margin-bottom: 14px; }
.section__header p { color: var(--gray-600); font-size: 17px; max-width: 560px; margin: 0 auto; }
.section__eyebrow {
    display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.8px;
    text-transform: uppercase; color: var(--green-primary);
    background: var(--green-pale); padding: 4px 11px; border-radius: 4px; margin-bottom: 14px;
}

/* ── Category Cards ── */
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.category-card {
    border-radius: var(--radius-lg); overflow: hidden;
    background: var(--white); box-shadow: var(--shadow-sm);
    transition: all var(--transition); display: flex; flex-direction: column;
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.category-card__img { aspect-ratio: 16/9; overflow: hidden; background: var(--green-pale); }
.category-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.category-card:hover .category-card__img img { transform: scale(1.04); }
.category-card__body { padding: 20px 24px; flex: 1; }
.category-card__name { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--green-dark); }
.category-card__desc { color: var(--gray-600); font-size: 14px; line-height: 1.6; }
.category-card__footer { padding: 0 24px 20px; }
.category-card__link { color: var(--green-primary); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 4px; }
.category-card__link::after { content: '→'; transition: transform var(--transition); }
.category-card:hover .category-card__link::after { transform: translateX(4px); }

/* ── Product Cards ── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.product-card {
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); overflow: hidden;
    transition: all var(--transition); display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card__img { aspect-ratio: 1/1; overflow: hidden; background: var(--gray-50); position: relative; display: flex; align-items: center; justify-content: center; }
.product-card__img img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s; }
.product-card:hover .product-card__img img { transform: scale(1.04); }
.product-card__badges { position: absolute; top: 10px; right: 10px; display: flex; flex-direction: column; gap: 4px; }
.badge-tag {
    display: inline-block; padding: 3px 9px; border-radius: 20px;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px;
}
.badge-tag--new      { background: #2196F3; color: var(--white); }
.badge-tag--campaign { background: #FF7043; color: var(--white); }
.badge-tag--featured { background: var(--green-primary); color: var(--white); }
.badge-tag--popular  { background: var(--gold); color: var(--white); }
.product-card__body { padding: 16px 18px; flex: 1; }
.product-card__name { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--gray-800); }
.product-card__price { font-size: 17px; font-weight: 700; color: var(--green-primary); }
.product-card__price-note { font-size: 12px; color: var(--gray-600); margin-top: 2px; }
.product-card__footer { padding: 0 18px 16px; }

/* ── Product Detail ── */
.product-detail { padding: 48px 0; }
.product-detail__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.product-detail__gallery { position: sticky; top: 88px; }
.product-detail__main-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1/1; background: var(--gray-50); display: flex; align-items: center; justify-content: center; }
.product-detail__main-img img { width: 100%; height: 100%; object-fit: contain; }
.product-detail__thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.product-detail__thumb { width: 68px; height: 68px; border-radius: var(--radius); overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color var(--transition); }
.product-detail__thumb.active, .product-detail__thumb:hover { border-color: var(--green-primary); }
.product-detail__thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-detail__category { font-size: 13px; color: var(--green-mid); font-weight: 600; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .5px; }
.product-detail__name { font-size: clamp(22px, 4vw, 34px); margin-bottom: 16px; }
.product-detail__price { font-size: 28px; font-weight: 800; color: var(--green-primary); margin-bottom: 8px; }
.product-detail__price-note { background: var(--green-pale); border-radius: var(--radius); padding: 12px 16px; font-size: 13px; color: var(--green-dark); margin-bottom: 20px; }
.product-detail__desc { color: var(--gray-600); line-height: 1.8; margin-bottom: 28px; font-size: 15px; }
.product-detail__whatsapp-cta { background: var(--green-pale); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px; }
.product-detail__whatsapp-cta p { font-size: 14px; color: var(--green-dark); margin-bottom: 14px; font-weight: 500; line-height: 1.6; }

/* ── Gallery ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--gray-100); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; cursor: pointer; }
.gallery-item:hover img { transform: scale(1.04); }

/* ── Premium galeri fotoğraf grid ── */
.gallery-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}
.gallery-photo-card {
    border-radius: var(--radius-lg); overflow: hidden;
    background: var(--gray-100); box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}
.gallery-photo-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.gallery-photo-card__media {
    position: relative; overflow: hidden; aspect-ratio: 3/2;
}
.gallery-photo-card__media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .45s ease; cursor: pointer; display: block;
}
.gallery-photo-card:hover .gallery-photo-card__media img { transform: scale(1.05); }
.gallery-photo-card__overlay {
    position: absolute; inset: 0;
    background: rgba(27,67,50,.38);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity var(--transition);
}
.gallery-photo-card:hover .gallery-photo-card__overlay { opacity: 1; }
.gallery-photo-card__zoom {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,.92); color: var(--green-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 400; line-height: 1;
}

/* legacy selector — korunuyor */
.gallery-photo-item { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/2; background: var(--gray-50); }
.gallery-photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; cursor: pointer; }
.gallery-photo-item:hover img { transform: scale(1.05); }

/* ── Lightbox ── */
#galleryLightbox {
    display: none; position: fixed; inset: 0; z-index: 9000; overflow: hidden;
}
#galleryLightbox.lb-open { display: flex; align-items: center; justify-content: center; }
.lb-backdrop {
    position: absolute; inset: 0; background: rgba(0,0,0,.88);
    cursor: pointer;
}
.lb-content {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: center; gap: 16px;
    width: 100%; max-width: 92vw;
    padding: 0 8px;
}
.lb-img-wrap {
    position: relative; display: flex; flex-direction: column; align-items: center;
    min-width: 0; flex: 1;
}
.lb-img {
    max-width: 100%; max-height: 80vh;
    width: auto; height: auto;
    object-fit: contain; border-radius: var(--radius-lg);
    display: block; box-shadow: 0 12px 48px rgba(0,0,0,.6);
    user-select: none; margin: auto;
}
.lb-caption {
    margin-top: 10px; color: rgba(255,255,255,.75);
    font-size: 13px; text-align: center; max-width: 600px;
    word-break: break-word;
}
.lb-close {
    position: fixed; top: 20px; right: 24px;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.20);
    color: var(--white); font-size: 22px; line-height: 1;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background var(--transition); z-index: 2;
    touch-action: manipulation;
}
.lb-close:hover { background: rgba(255,255,255,.22); }
.lb-nav {
    width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.20);
    color: var(--white); font-size: 26px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition), opacity var(--transition);
    user-select: none; touch-action: manipulation;
}
.lb-nav:hover { background: rgba(255,255,255,.22); }
.lb-counter {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,.60); font-size: 13px; letter-spacing: .5px;
}
/* iOS scroll lock */
.lb-body-lock {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
}

/* ── Contact ── */
.contact-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
}

/* Contact card (sol panel) */
.contact-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 36px;
    box-shadow: var(--shadow-sm);
}
.contact-card__header { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-200); }
.contact-card__header h2 { margin-bottom: 10px; }
.contact-card__header p { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin: 0; }
.contact-card__items { display: flex; flex-direction: column; gap: 8px; }

.contact-card__item {
    display: flex; align-items: center; gap: 16px;
    padding: 14px 16px; border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
    text-decoration: none; color: inherit;
}
.contact-card__item:hover {
    border-color: var(--green-light);
    background: var(--gray-50);
    box-shadow: var(--shadow-sm);
}
.contact-card__item--static { cursor: default; }
.contact-card__item--static:hover { border-color: var(--gray-200); background: var(--white); box-shadow: none; }

.contact-card__item--whatsapp { border-color: rgba(37,211,102,.25); }
.contact-card__item--whatsapp:hover { border-color: #25D366; background: rgba(37,211,102,.04); }

.contact-card__item-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--green-pale); border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--green-primary);
}
.contact-card__item-icon--wa {
    background: rgba(37,211,102,.12); color: #25D366;
}
.contact-card__item-body { flex: 1; min-width: 0; }
.contact-card__item-label {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .6px; color: var(--gray-600); margin-bottom: 2px;
}
.contact-card__item-value {
    font-size: 15px; font-weight: 500; color: var(--gray-800);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.contact-card__item--whatsapp .contact-card__item-value { color: #1a9b48; }
.contact-card__item-arrow {
    color: var(--gray-400); flex-shrink: 0;
    transition: transform var(--transition), color var(--transition);
}
.contact-card__item:hover .contact-card__item-arrow { transform: translateX(3px); color: var(--green-primary); }

/* Map panel (sağ panel) */
.contact-map-panel { display: flex; flex-direction: column; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; background: var(--gray-100); }
.map-embed iframe { width: 100%; height: 460px; border: none; display: block; }

.map-placeholder {
    background: var(--gray-50); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); height: 460px;
    display: flex; align-items: center; justify-content: center;
}
.map-placeholder__inner {
    text-align: center; padding: 24px;
}
.map-placeholder__inner svg { margin: 0 auto 16px; display: block; }
.map-placeholder__inner p { font-size: 15px; color: var(--gray-600); font-weight: 500; margin-bottom: 6px; }
.map-placeholder__inner span { font-size: 13px; color: var(--gray-400); }

/* legacy — kullanılıyorsa korunuyor */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info__item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-info__icon { width: 44px; height: 44px; background: var(--green-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--green-primary); }
.contact-info__label { font-size: 12px; color: var(--gray-600); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.contact-info__value { font-size: 16px; color: var(--gray-800); font-weight: 500; }

/* ── WhatsApp floating ── */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 99;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366; color: var(--white);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.50);
    transition: all var(--transition); font-size: 26px;
    text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.10); box-shadow: 0 6px 28px rgba(37,211,102,.60); color: var(--white); }

/* ── Features strip ── */
.features-strip { background: var(--green-dark); color: var(--white); padding: 36px 0; }
.features-strip__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; }
.feature-item { text-align: center; }
.feature-item__icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px; color: var(--green-light);
    transition: background var(--transition), border-color var(--transition);
}
.feature-item:hover .feature-item__icon { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.28); }
.feature-item__title { font-size: 14px; font-weight: 700; margin-bottom: 4px; letter-spacing: .1px; }
.feature-item__text { font-size: 12.5px; opacity: .70; line-height: 1.5; }

/* ── Footer ── */
.site-footer { background: var(--gray-800); color: rgba(255,255,255,.80); padding: 56px 0 28px; }
.site-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand__name { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.footer-brand__desc { font-size: 14px; line-height: 1.7; opacity: .75; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.10); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; transition: background var(--transition);
}
.footer-social a:hover { background: var(--green-primary); }
.footer-col__title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--white); margin-bottom: 16px; }
.footer-col li + li { margin-top: 8px; }
.footer-col a { font-size: 14px; opacity: .75; transition: opacity var(--transition); }
.footer-col a:hover { opacity: 1; color: var(--green-light); }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.10); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; opacity: .60; }
.site-footer__developer {
    margin-top: 12px; padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.06);
    font-size: 12px; color: rgba(255,255,255,.35);
    text-align: center; line-height: 1.6;
}
.site-footer__developer a {
    color: rgba(255,255,255,.55);
    font-weight: 600;
    transition: color var(--transition);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.20);
}
.site-footer__developer a:hover { color: var(--green-light); border-bottom-color: var(--green-light); }

/* ── Breadcrumb ── */
.breadcrumb { padding: 14px 0; font-size: 13px; color: var(--gray-600); }
.breadcrumb a { color: var(--green-primary); }
.breadcrumb span + span::before { content: ' / '; margin: 0 6px; }

/* ── Page hero (iç sayfa başlık bantı) ── */
.page-hero { background: var(--green-dark); color: var(--white); padding: 40px 0; margin-bottom: 0; }
.page-hero h1 { color: var(--white); font-size: clamp(24px, 4vw, 40px); }
.page-hero p { opacity: .80; margin-top: 8px; }

/* ── SSS ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item summary { padding: 20px 0; font-weight: 600; cursor: pointer; font-size: 16px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::after { content: '+'; font-size: 22px; color: var(--green-primary); flex-shrink: 0; transition: transform var(--transition); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding-bottom: 18px; color: var(--gray-600); line-height: 1.8; }

/* ── Logo image ── */
.logo__img { max-height: 44px; max-width: 160px; width: auto; object-fit: contain; }

/* ── Hero — arka plan görsel desteği ── */
.hero--has-image {
    background-size: cover; background-position: center; background-repeat: no-repeat;
    position: relative;
}
.hero--has-image::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15,50,35,.72) 0%, rgba(27,67,50,.58) 50%, rgba(45,106,79,.38) 100%);
}
.hero--has-image .container { position: relative; z-index: 1; }

/* ── About split layout ── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stat-card {
    background: var(--green-pale); border-radius: var(--radius-lg);
    padding: 24px; text-align: center;
}
.about-stat-card__num { font-size: 36px; font-weight: 800; color: var(--green-primary); }
.about-stat-card__label { font-size: 14px; color: var(--gray-600); margin-top: 4px; }

/* ── Category placeholder ── */
.category-card__img-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--green-pale), var(--green-light));
    color: var(--green-primary);
}

/* ── Product card no image ── */
.product-card__no-img {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    background: var(--gray-100);
}

/* ── Müşterilerimiz slider ── */
.customers-section { overflow: hidden; padding-bottom: 0; }
.customers-section .section__header p { font-size: 16px; color: var(--gray-600); }
.customers-track-wrapper {
    overflow: hidden; padding: 20px 0 28px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.customers-track { display: flex; gap: 20px; width: max-content; will-change: transform; align-items: center; }
.customer-logo-card {
    flex-shrink: 0; width: 176px; height: 88px;
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: 0 2px 12px rgba(0,0,0,.07); border: 1px solid var(--gray-200);
    display: flex; align-items: center; justify-content: center;
    padding: 14px 18px; transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.customer-logo-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--green-light); }
.customer-logo-card img { max-width: 130px; max-height: 52px; width: auto; height: auto; object-fit: contain; filter: grayscale(50%) opacity(0.80); transition: filter var(--transition); }
.customer-logo-card:hover img { filter: grayscale(0%) opacity(1); }
.customer-logo-name { font-size: 13px; font-weight: 700; color: var(--gray-600); text-align: center; letter-spacing: .2px; }

/* ── WhatsApp CTA section ── */
.whatsapp-cta-section {
    background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
    color: var(--white); text-align: center;
}
.whatsapp-cta-section h2 { color: var(--white); margin-bottom: 12px; }
.whatsapp-cta-section p { opacity: .90; font-size: 17px; margin-bottom: 32px; }

/* ── Ürünler filtre + grid layout ── */
.products-layout { display: grid; grid-template-columns: 240px 1fr; gap: 36px; align-items: start; padding-top: 32px; padding-bottom: 64px; }
.filter-sidebar { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 20px; position: sticky; top: 84px; }
.filter-sidebar__title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--gray-600); margin-bottom: 12px; }
.filter-cat-btn {
    display: block; width: 100%; text-align: left;
    padding: 9px 12px; border-radius: var(--radius);
    font-size: 14px; font-weight: 500; color: var(--gray-800);
    background: none; border: none; cursor: pointer;
    transition: all var(--transition); text-decoration: none;
}
.filter-cat-btn:hover { background: var(--green-pale); color: var(--green-primary); }
.filter-cat-btn.active { background: var(--green-primary); color: var(--white); font-weight: 600; box-shadow: 0 2px 8px rgba(45,106,79,.25); }
.filter-subcats { margin-left: 12px; margin-top: 4px; border-left: 2px solid var(--gray-200); padding-left: 10px; overflow: hidden; transition: max-height .22s ease; }
.filter-subcats--hidden { display: none; }
.filter-subcat-btn {
    display: block; width: 100%; text-align: left;
    padding: 7px 10px; border-radius: var(--radius);
    font-size: 13px; color: var(--gray-600);
    background: none; border: none; cursor: pointer;
    transition: all var(--transition); text-decoration: none;
}
.filter-subcat-btn:hover { color: var(--green-primary); background: var(--green-pale); }
.filter-subcat-btn.active { color: var(--green-primary); font-weight: 600; background: var(--green-pale); }
.filter-sep { border: none; border-top: 1px solid var(--gray-200); margin: 8px 0; }

/* ── Ürün detay galeri nav butonları ── */
.product-detail__main-img { position: relative; }
.gallery-nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,.92); border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--gray-800); z-index: 2;
    transition: all var(--transition);
}
.gallery-nav-btn:hover { background: var(--green-primary); color: var(--white); border-color: var(--green-primary); box-shadow: 0 4px 14px rgba(45,106,79,.35); }
.gallery-nav-btn--prev { left: 10px; }
.gallery-nav-btn--next { right: 10px; }
.gallery-nav-btn.hidden { opacity: 0; pointer-events: none; }
.gallery-dots { display: flex; gap: 6px; justify-content: center; margin-top: 10px; }
.gallery-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gray-300); cursor: pointer; transition: all var(--transition);
}
.gallery-dot.active { background: var(--green-primary); transform: scale(1.3); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero .container { flex-direction: column; gap: 28px; align-items: flex-start; }
    .hero__badge { min-width: 0; width: 100%; max-width: 280px; padding: 20px 24px; display: flex; align-items: center; gap: 16px; text-align: left; }
    .hero__badge-stat { font-size: 36px; }
    .products-layout { grid-template-columns: 200px 1fr; gap: 24px; }
    .product-detail__grid { grid-template-columns: 1fr; }
    .product-detail__gallery { position: static; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .about-split { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .nav {
        display: none; position: fixed; top: 68px; left: 0; right: 0;
        background: var(--white); padding: 16px 20px; flex-direction: column;
        align-items: flex-start; border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow); z-index: 99;
    }
    .nav.open { display: flex; }
    .nav a { width: 100%; padding: 11px 14px; font-size: 15px; }
    .hamburger { display: block; }
    .header-whatsapp { font-size: 12px; padding: 8px 12px; }
    .header-instagram { font-size: 0; padding: 7px 10px; }
    .header-instagram svg { width: 18px; height: 18px; }
    .logo__name { font-size: 16px; }
    .hero { padding: 52px 0 44px; min-height: calc(100vh - 68px); }
    .hero .container { flex-direction: column; gap: 20px; }
    .hero__badge { max-width: 100%; }
    .hero__title { font-size: clamp(26px, 8vw, 40px); }
    .hero__subtitle { font-size: 15px; }
    .hero__actions { flex-direction: column; align-items: flex-start; }
    .hero__actions .btn { width: 100%; justify-content: center; }
    .section { padding: 48px 0; }
    .section__header { margin-bottom: 36px; }
    .section__header h2 { font-size: clamp(20px, 5vw, 28px); }
    .site-footer__grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .category-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .about-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
    .about-stat-card { padding: 16px 12px; }
    .about-stat-card__num { font-size: 28px; }
    .customer-logo-card { width: 130px; height: 68px; }
    .features-strip { padding: 28px 0; }
    .features-strip__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; }
    .products-layout { grid-template-columns: 1fr; }
    .filter-sidebar { position: static; }
    .contact-card { padding: 20px; }
    .contact-card__item { gap: 12px; padding: 12px 14px; }
    .contact-card__item-value { white-space: normal; word-break: break-word; overflow-wrap: break-word; }
    .map-embed iframe { height: 260px; }
    .map-placeholder { height: 260px; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .site-header__inner { height: 60px; }
    .hero { padding: 40px 0 36px; min-height: calc(100vh - 60px); }
    .hero__eyebrow { font-size: 11px; }
    .hero__title { font-size: clamp(22px, 7vw, 32px); }
    .hero__subtitle { font-size: 14px; margin-bottom: 24px; }
    .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .product-card__name { font-size: 13px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .category-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .features-strip__grid { grid-template-columns: 1fr 1fr; }
    .feature-item__title { font-size: 13px; }
    .whatsapp-cta-section p { font-size: 15px; }
    .contact-card { padding: 16px; }
    .contact-card__header { margin-bottom: 20px; padding-bottom: 16px; }
    .contact-card__item { gap: 10px; padding: 10px 12px; }
    .contact-card__item-icon { width: 36px; height: 36px; }
    .contact-card__item-value { font-size: 14px; }
}

/* ── Hero — video arka plan ── */
.hero--has-video { position: relative; overflow: hidden; }
.hero__video-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
    pointer-events: none;
}
.hero__video-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(15,50,35,.70) 0%, rgba(27,67,50,.55) 50%, rgba(45,106,79,.35) 100%);
}

/* ── Galeri sekmeleri ── */
.gallery-tabs {
    display: flex; gap: 8px; margin-bottom: 28px;
    border-bottom: 2px solid var(--gray-200); padding-bottom: 4px;
}
.gallery-tab {
    background: none; border: none; cursor: pointer;
    font-size: 15px; font-weight: 600; padding: 8px 16px;
    color: var(--gray-600); border-bottom: 3px solid transparent;
    margin-bottom: -6px; transition: color var(--transition), border-color var(--transition);
    display: flex; align-items: center; gap: 6px;
}
.gallery-tab:hover { color: var(--green-primary); }
.gallery-tab--active { color: var(--green-dark); border-bottom-color: var(--green-primary); }
.gallery-tab__count {
    background: var(--gray-200); color: var(--gray-700);
    font-size: 11px; font-weight: 700; padding: 1px 6px; border-radius: 10px;
}
.gallery-tab--active .gallery-tab__count { background: var(--green-light); color: var(--green-dark); }
.gallery-tab-content--hidden { display: none; }

/* Galeri video grid */
.gallery-grid--video { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.gallery-item--video {
    border-radius: var(--radius-lg); overflow: hidden; background: #111;
    aspect-ratio: 16/9; position: relative;
}
.gallery-item--video video { width: 100%; height: 100%; display: block; object-fit: cover; }
.gallery-item__caption {
    font-size: 12px; color: var(--gray-600); padding: 8px 12px 4px;
    text-align: center; letter-spacing: .1px;
}

/* ── Hakkımızda — Premium Sayfası ── */
.about-hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 70%, var(--green-mid) 100%);
    color: var(--white); padding: 72px 0 64px;
}
.about-hero__inner { max-width: 700px; }
.about-hero__title { font-size: clamp(28px, 5vw, 48px); color: var(--white); margin: 12px 0 18px; letter-spacing: -.5px; }
.about-hero__lead { font-size: 18px; line-height: 1.75; opacity: .88; max-width: 620px; }

.about-stats-section { background: var(--white); padding: 0; border-bottom: 1px solid var(--gray-200); }
.about-stats-row {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--gray-200);
}
.about-stat-block {
    padding: 32px 24px; text-align: center;
    border-right: 1px solid var(--gray-200);
}
.about-stat-block:last-child { border-right: none; }
.about-stat-block__num {
    font-size: 36px; font-weight: 800; color: var(--green-primary);
    letter-spacing: -.5px; line-height: 1;
}
.about-stat-block__label { font-size: 13px; color: var(--gray-600); margin-top: 6px; font-weight: 500; }

.about-intro {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.about-intro__text h2 { margin: 12px 0 20px; }
.about-intro__text p { color: var(--gray-600); margin-bottom: 16px; font-size: 15px; line-height: 1.8; }
.about-intro__values { display: flex; flex-direction: column; gap: 16px; }
.about-value-card {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px; border-radius: var(--radius-lg);
    background: var(--gray-50); border: 1px solid var(--gray-200);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.about-value-card:hover { border-color: var(--green-light); box-shadow: var(--shadow-sm); }
.about-value-card__icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: var(--green-pale); border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--green-primary);
}
.about-value-card__title { font-size: 14px; font-weight: 700; color: var(--gray-800); margin-bottom: 4px; }
.about-value-card__desc { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

.about-why-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
}
.about-why-card {
    padding: 32px 28px; border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200); background: var(--white);
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.about-why-card:hover { border-color: var(--green-mid); transform: translateY(-3px); box-shadow: var(--shadow); }
.about-why-card__num {
    font-size: 40px; font-weight: 800; color: var(--green-pale);
    line-height: 1; margin-bottom: 16px; letter-spacing: -1px;
}
.about-why-card__title { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--green-dark); }
.about-why-card__desc { font-size: 14px; color: var(--gray-600); line-height: 1.75; }

.about-services-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px;
}
.about-service-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 18px 20px; border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200); background: var(--white);
    transition: border-color var(--transition), background var(--transition);
}
.about-service-item:hover { background: var(--gray-50); border-color: var(--green-light); }
.about-service-item__icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: var(--green-pale); border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--green-primary); margin-top: 1px;
}
.about-service-item__name { font-size: 14px; font-weight: 700; color: var(--gray-800); margin-bottom: 3px; }
.about-service-item__desc { font-size: 13px; color: var(--gray-600); line-height: 1.55; }

/* Responsive — Hakkımızda */
@media (max-width: 1024px) {
    .about-stats-row { grid-template-columns: repeat(2, 1fr); }
    .about-stat-block:nth-child(2) { border-right: none; }
    .about-stat-block:nth-child(3) { border-top: 1px solid var(--gray-200); }
    .about-stat-block:nth-child(4) { border-top: 1px solid var(--gray-200); border-right: none; }
    .about-intro { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
    .about-hero { padding: 48px 0 40px; }
    .about-hero__lead { font-size: 16px; }
    .about-stats-row { grid-template-columns: repeat(2, 1fr); }
    .about-why-grid { grid-template-columns: 1fr; }
    .about-services-grid { grid-template-columns: 1fr; }
    .gallery-photo-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .lb-content { width: 100%; max-width: 100%; gap: 0; padding: 0; }
    .lb-img-wrap { width: 100%; }
    .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; font-size: 22px; z-index: 10; }
    .lb-nav--prev { left: 8px; }
    .lb-nav--next { right: 8px; }
    .lb-img { max-width: 100%; max-height: 72vh; }
}
@media (max-width: 480px) {
    .about-stats-row { grid-template-columns: 1fr 1fr; }
    .about-stat-block { padding: 20px 12px; }
    .about-stat-block__num { font-size: 26px; }
    .gallery-photo-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .lb-content { gap: 0; padding: 0; }
    .lb-nav { width: 40px; height: 40px; font-size: 20px; }
    .lb-img { max-height: 65vh; }
}
.gallery-photo-card__media {
    cursor: zoom-in;
}

.gallery-photo-card__overlay {
    pointer-events: none;
}

/* ── Lightbox — landscape mobil ── */
@media (max-height: 480px) and (orientation: landscape) {
    .lb-content { padding: 0; gap: 0; }
    .lb-img { max-height: 80vh; max-width: 100%; }
}