/* ============================================================
   GLOBAL DESIGN SYSTEM
   Inter font, kırmızı aksan, Bootstrap 4 üstü katman
   ============================================================ */

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    color: #1a1a2e;
    background: #fff;
    line-height: 1.65;
    font-size: 16px;
    padding-top: 90px !important;
    margin: 0 !important;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ─── TYPE SCALE ─── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1a1a2e;
}
h1 { font-size: clamp(28px, 5vw, 56px); }
h2 { font-size: clamp(22px, 3.5vw, 40px); }
h3 { font-size: clamp(18px, 2.5vw, 26px); }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
p  { margin-bottom: 1rem; }

/* ─── SECTION SYSTEM ─── */
.sec {
    padding: 80px 0;
}
.sec--sm   { padding: 48px 0; }
.sec--lg   { padding: 100px 0; }
.sec--dark {
    background: #111827;
    color: #f3f4f6;
}
.sec--dark h1,
.sec--dark h2,
.sec--dark h3,
.sec--dark h4 { color: #f9fafb; }
.sec--gray  { background: #f4f4f6; }
.sec--white { background: #fff; }

.sec-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section başlık bloğu */
.sec-head {
    margin-bottom: 52px;
}
.sec-head--center { text-align: center; }
.sec-head--center .sec-rule { margin: 0 auto; }

.sec-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #1565c0;
    margin-bottom: 10px;
}
.sec-title {
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 14px;
    letter-spacing: -0.025em;
    text-wrap: balance;
}
.sec--dark .sec-title { color: #f9fafb; }
.sec--dark .sec-eyebrow { color: #64b5f6; }

.sec-sub {
    font-size: 16px;
    color: #6b7280;
    max-width: 560px;
    line-height: 1.7;
    margin: 0;
}
.sec-head--center .sec-sub { margin: 0 auto; }

.sec-rule {
    width: 44px;
    height: 3px;
    background: #1565c0;
    border-radius: 2px;
    margin-top: 16px;
}

/* ─── BUTTON SYSTEM ─── */
.btn-primary-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1565c0;
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 13px 28px;
    border-radius: 4px;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(21,101,192,0.25);
}
.btn-primary-red:hover {
    background: #0d47a1;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(21,101,192,0.35);
    color: #fff !important;
}
.btn-outline-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #1565c0 !important;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 12px 26px;
    border-radius: 4px;
    border: 2px solid #1565c0;
    text-decoration: none !important;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.btn-outline-red:hover {
    background: #1565c0;
    color: #fff !important;
}
.btn-ghost-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 4px;
    border: 2px solid rgba(255,255,255,0.6);
    text-decoration: none !important;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.btn-ghost-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    color: #fff !important;
}

/* ─── CARD SYSTEM ─── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.card-grid--4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.card-grid--3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.card-grid--2 { grid-template-columns: repeat(auto-fill, minmax(420px, 1fr)); }

/* Base card */
.g-card {
    background: #fff;
    border: 1px solid #e8e8ec;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.g-card:hover {
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

/* Card image */
.g-card-img {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f0f0f4;
    flex-shrink: 0;
}
.g-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.g-card:hover .g-card-img img { transform: scale(1.06); }

/* Card image overlay */
.g-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(21,101,192,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.g-card:hover .g-card-overlay { opacity: 1; }
.g-card-overlay-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.65);
    padding: 10px 22px;
    border-radius: 3px;
    letter-spacing: 0.04em;
}

/* Card body */
.g-card-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}
.g-card-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1565c0;
}
.g-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.35;
}
.g-card-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}
.g-card-title a:hover { color: #1565c0; }
.g-card-desc {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.g-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #1565c0;
    text-decoration: none;
    margin-top: 4px;
    transition: gap 0.2s, color 0.2s;
}
.g-card-link:hover { gap: 10px; color: #0d47a1; }

/* ─── KATEGORİ BÖLÜM SİSTEMİ ─── */
.kat-section         { padding: 72px 0; background: #fff; }
.kat-section--alt    { background: #f4f4f6; }
.kat-section--dark   { background: #111827; }
.kat-section--last   { padding-bottom: 96px; }
.kat-section--first  { padding-top: 80px; }

.kat-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.kat-header {
    text-align: center;
    margin-bottom: 48px;
}
.kat-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #1565c0;
    margin-bottom: 10px;
}
.kat-title {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}
.kat-rule {
    width: 44px;
    height: 3px;
    background: #1565c0;
    border-radius: 2px;
    margin: 0 auto;
}
.kat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.kat-grid--lg {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

/* Kategori kart — g-card sistemine bağlı */
.kat-card { }
.kat-card-img-wrap { }
.kat-card-img      { }
.kat-card-overlay  { }
.kat-card-overlay-btn { }
.kat-card-body     { }
.kat-card-title    { }
.kat-card-desc     { }
.kat-card-link     { }

/* ─── ÜRÜN KARTI (product_view) ─── */
.prd-main    { background: #f4f4f6; }
.prd-hero {
    background: #111827;
    padding: 64px 40px 56px;
    text-align: center;
}
.prd-hero-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #64b5f6;
    margin-bottom: 10px;
}
.prd-hero-title {
    font-size: clamp(26px, 4vw, 48px);
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -0.02em;
}
.prd-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 40px 80px;
}
.prd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.prd-card {
    background: #fff;
    border: 1px solid #e8e8ec;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s, transform 0.25s;
}
.prd-card:hover {
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
.prd-card-img-wrap {
    position: relative;
    display: block;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f0f0f4;
}
.prd-card-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.prd-card:hover .prd-card-img { transform: scale(1.06); }
.prd-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(21,101,192,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.prd-card:hover .prd-card-overlay { opacity: 1; }
.prd-card-overlay span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.65);
    padding: 10px 22px;
    border-radius: 3px;
}
.prd-card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
}
.prd-card-code {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1565c0;
}
.prd-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.35;
}
.prd-card-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.55;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.prd-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #1565c0;
    text-decoration: none;
    transition: gap 0.2s;
}
.prd-card-link:hover { gap: 10px; color: #0d47a1; }

/* ─── HEADER ─── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 90px;
    background: #fff;
    border-bottom: 1px solid #e8e8ec;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    z-index: 9000;
    display: flex;
    align-items: center;
}
.hdr-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 32px;
}
.hdr-logo { flex-shrink: 0; display: flex; align-items: center; }
.hdr-logo img { height: 60px; width: auto; object-fit: contain; }
.hdr-nav { flex: 1; display: flex; justify-content: center; }
.hdr-menu {
    list-style: none; margin: 0; padding: 0;
    display: flex; align-items: center; gap: 2px;
}
.hdr-menu > li { position: relative; }
.hdr-menu > li > a {
    display: flex; align-items: center; gap: 5px;
    padding: 8px 14px;
    font-size: 14px; font-weight: 500;
    color: #1a1a2e;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.18s, color 0.18s;
    white-space: nowrap;
}
.hdr-menu > li > a:hover,
.hdr-menu > li.has-drop:hover > a {
    background: #f4f4f6;
    color: #1565c0;
}
.hdr-menu > li > a i.fa-chevron-down { font-size: 10px; opacity: 0.5; transition: transform 0.2s; }
.hdr-menu > li.has-drop:hover > a i.fa-chevron-down { transform: rotate(180deg); }

.hdr-drop {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #e8e8ec;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    min-width: 220px;
    padding: 6px 0;
    list-style: none; margin: 0;
    z-index: 9001;
}
.hdr-menu > li.has-drop:hover .hdr-drop { display: block; }
.hdr-drop li a {
    display: block;
    padding: 10px 18px;
    font-size: 14px; font-weight: 400;
    color: #374151;
    text-decoration: none;
    border-bottom: 1px solid #f4f4f6;
    transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.hdr-drop li:last-child a { border-bottom: none; }
.hdr-drop li a:hover { background: #fafafa; color: #1565c0; padding-left: 24px; }

.hdr-right { flex-shrink: 0; display: flex; align-items: center; gap: 12px; }

/* Dil seçici */
.lang-picker { position: relative; display: flex; align-items: center; }
.lang-picker-trigger {
    display: flex; align-items: center; gap: 6px;
    cursor: pointer; padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.18s;
    font-size: 13px; font-weight: 600; color: #374151;
    user-select: none;
}
.lang-picker-trigger:hover { background: #f4f4f6; }
.lang-picker-trigger img { width: 22px; border-radius: 2px; }
.lang-picker-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px); right: 0;
    background: #fff;
    border: 1px solid #e8e8ec;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    padding: 6px;
    min-width: 110px;
    z-index: 9002;
}
.lang-picker-menu.open { display: block; }
.lang-picker-menu button {
    display: flex; align-items: center; gap: 8px;
    width: 100%; padding: 8px 10px;
    background: none; border: none; border-radius: 6px;
    cursor: pointer; font-size: 13px; font-weight: 600;
    color: #374151; transition: background 0.15s, color 0.15s;
}
.lang-picker-menu button:hover { background: #f4f4f6; color: #1565c0; }
.lang-picker-menu button img { width: 20px; border-radius: 2px; }

/* Hamburger */
.hdr-burger {
    display: none; width: 40px; height: 40px;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 5px; cursor: pointer; background: none; border: none; padding: 0;
    margin-left: auto;
}
.hdr-burger span {
    display: block; width: 22px; height: 2px;
    background: #1a1a2e; border-radius: 2px; transition: all 0.28s;
}

/* Mobile nav */
.mob-nav {
    display: none;
    position: fixed;
    top: 90px; left: 0; right: 0;
    background: #fff;
    border-top: 1px solid #e8e8ec;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    z-index: 8999;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
}
.mob-nav.open { display: block; }
.mob-nav ul { list-style: none; margin: 0; padding: 10px 0; }
.mob-nav ul li a {
    display: block; padding: 13px 28px;
    font-size: 15px; font-weight: 500;
    color: #1a1a2e; text-decoration: none;
    border-bottom: 1px solid #f4f4f6;
    transition: color 0.15s, background 0.15s;
}
.mob-nav ul li a:hover { color: #1565c0; background: #fafafa; }
.mob-nav ul li.mob-sub > a {
    padding-left: 44px; font-size: 14px;
    font-weight: 400; color: #6b7280;
}

/* ─── PAGE HERO (kurumsal, hakkımızda vb.) ─── */
.page-hero {
    background: #111827;
    padding: 44px 0 40px;
}
.page-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 14px;
}
.page-hero-breadcrumb a { color: #9ca3af; text-decoration: none; transition: color 0.2s; }
.page-hero-breadcrumb a:hover { color: #64b5f6; }
.phb-sep { opacity: 0.4; }
.page-hero-title {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -0.02em;
}
@media (max-width: 768px) {
    .page-hero-inner { padding: 0 24px; }
}

/* ─── CTA BAND ─── */
.cta-band {
    background: #1565c0;
    padding: 56px 0;
}
.cta-band-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.cta-band-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}
.cta-band-title {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.cta-band-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-shrink: 0;
}
.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: #fff;
    color: #1565c0;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.cta-btn-primary:hover { background: #fff7f7; transform: translateY(-2px); color: #0d47a1; }
.cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}
.cta-btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }
@media (max-width: 768px) {
    .cta-band-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
    .cta-band-actions { flex-direction: column; width: 100%; }
    .cta-btn-primary, .cta-btn-ghost { width: 100%; justify-content: center; }
}

/* ─── FOOTER ─── */
footer.footer {
    background: #111827;
    color: #f3f4f6;
    padding: 64px 0 0;
    font-family: 'Inter', sans-serif;
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    padding-bottom: 48px;
}
.footer-col-title {
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: #f9fafb !important;
    margin-bottom: 20px !important;
    letter-spacing: 0.12em;
}
.footer-col-text {
    color: #9ca3af !important;
    font-size: 14px !important;
    line-height: 1.75 !important;
    margin: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}
.footer-links li a:hover { color: #90caf9; }
.footer-links li a i { margin-top: 3px; flex-shrink: 0; width: 14px; font-size: 13px; }
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: #1f2937;
    color: #9ca3af !important;
    text-decoration: none;
    font-size: 15px;
    transition: background 0.2s, color 0.2s;
}
.footer-social-btn:hover { background: #1565c0; color: #fff !important; }
.footer-bottom {
    border-top: 1px solid #1f2937;
    padding: 20px 0;
    text-align: center;
    margin-top: 0;
}
.footer-bottom p {
    color: #4b5563;
    font-size: 13px;
    margin: 0;
}

/* ─── FLOATING ACTION BUTTONS ─── */
.fab-btn {
    position: fixed;
    right: 24px;
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}
.fab-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(0,0,0,0.35); color: #fff; }
.fab-whatsapp { bottom: 90px; background: #25d366; }
.fab-phone    { bottom: 28px; background: #1565c0; }

.back-to-top {
    position: fixed;
    bottom: 24px; left: 24px;
    width: 44px; height: 44px;
    background: #111827;
    color: #fff;
    display: none;
    align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 15px;
    z-index: 999;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: #1565c0; transform: translateY(-3px); color: #fff; }

/* ─── BLOG / HABERLERİ (genel) ─── */
.blog-single img { width: 100% !important; height: auto !important; }
.blog-single-picture img { max-width: 100% !important; }

/* ─── ÜRÜN DETAY ─── */
.product-image {
    position: relative; margin-top: 20px;
    height: 100%; width: 100%; overflow: hidden;
}
.product-thumbnails { margin-top: 10px; }
.product-thumbnails img {
    height: 5vw; border-radius: 0;
    cursor: pointer; position: relative;
}
.product-thumbnails img:hover { opacity: 0.6; }
.product-details { margin-top: 30px; }
.product-details p { margin-top: 20px; }

/* ─── KATEGORİ SLİDER (eski) ─── */
.kategoriSlider #slider-text { padding-top: 40px; display: block; }
.kategoriSlider #slider-text .col-md-6 { overflow: hidden; }
.kategoriSlider #slider-text h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 600; font-size: 28px;
    letter-spacing: 1px; margin: 30px auto; padding-left: 40px;
}
.kategoriSlider .badge {
    background: #1565c0; position: absolute;
    height: 40px; width: 40px; border-radius: 50%;
    line-height: 31px; font-size: 14px;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #1565c0;
    top: 5px; right: 25%;
}
.kategoriSlider .carousel-showmanymoveone .carousel-control {
    width: 4%; background-image: none;
}
.kategoriSlider .carousel-showmanymoveone .carousel-control.left  { margin-left: -30px; }
.kategoriSlider .carousel-showmanymoveone .carousel-control.right { margin-right: -30px; }

/* ─── COOKIE BANNER ─── */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: rgba(17,24,39,0.97);
    backdrop-filter: blur(12px);
    color: #fff; padding: 18px 0;
    z-index: 999999;
    border-top: 2px solid #1565c0;
    transform: translateY(100%);
    transition: transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 40px;
    display: flex; justify-content: space-between;
    align-items: center; gap: 40px;
}
.cookie-inner p { margin: 0; font-size: 14px; color: #d1d5db; line-height: 1.5; }
.cookie-inner a { color: #fff; text-decoration: underline; font-weight: 600; }
.cookie-actions { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
.cookie-btn-reject {
    background: transparent; border: 1px solid rgba(255,255,255,0.3);
    color: #9ca3af; padding: 9px 20px; border-radius: 5px;
    font-size: 13px; font-weight: 600; cursor: pointer;
    transition: all 0.2s;
}
.cookie-btn-reject:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: #fff; }
.cookie-btn-accept {
    background: #1565c0; border: none; color: #fff;
    padding: 9px 24px; border-radius: 5px;
    font-size: 13px; font-weight: 600; cursor: pointer;
    transition: background 0.2s;
}
.cookie-btn-accept:hover { background: #0d47a1; }

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
    .sec-wrap { padding: 0 24px; }
    .kat-container { padding: 0 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cookie-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .cookie-actions { width: 100%; justify-content: flex-end; }
}
@media (max-width: 768px) {
    body { padding-top: 90px; }
    .hdr-nav { display: none; }
    .hdr-right .lang-picker { display: none; }
    .hdr-burger { display: flex; }
    .hdr-inner { padding: 0 20px; }
    .sec { padding: 52px 0; }
    .sec-wrap { padding: 0 20px; }
    .kat-section { padding: 48px 0; }
    .kat-container { padding: 0 20px; }
    .kat-grid, .kat-grid--lg { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
    .prd-section { padding: 32px 20px 56px; }
    .prd-hero { padding: 48px 20px 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-inner { padding: 0 24px; }
}
@media (max-width: 480px) {
    .kat-grid, .kat-grid--lg,
    .prd-grid, .card-grid { grid-template-columns: 1fr; }
}
