/* ====================================================
   Oto Elektronik Market — Tasarım Sistemi
   Tema: Açık / Beyaz · Katalog & Teknik Estetik
   Vurgu: Kırmızı (#E1342B) · Mürekkep (#16181C)
   ==================================================== */

/* ---- CSS Variables ---- */
:root {
    /* Marka */
    --red:        #E1342B;
    --red-dark:   #B82920;
    --red-light:  #FCEAE8;
    --green:      #1FAA59;
    --wa-green:   var(--red);
    --wa-green-d: var(--red-dark);

    /* Nötrler — beyaz tema */
    --ink:        #16181C;
    --ink-soft:   #5B5F67;
    --gray:       #9498A0;
    --line:       #E7E6E2;
    --line-2:     #D9D8D3;
    --paper:      #F7F6F2;
    --white:      #FFFFFF;

    /* Yarıçaplar */
    --r-xs:  4px;
    --r-sm:  8px;
    --r-md:  12px;
    --r-lg:  18px;

    /* Gölgeler — minimal */
    --shadow-xs: 0 1px 3px rgba(22,24,28,0.05);
    --shadow-sm: 0 4px 14px rgba(22,24,28,0.06);
    --shadow-md: 0 14px 36px rgba(22,24,28,0.08);

    --tr:      0.2s ease;
    --tr-slow: 0.4s cubic-bezier(0.22,1,0.36,1);

    --font:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-head: 'Space Grotesk', var(--font);
    --font-mono: 'JetBrains Mono', 'SFMono-Regular', Menlo, monospace;

    --container: 1240px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

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

/* Teknik köşe işaretleri — tekrarlayan "çerçeve" motifi */
.frame-marks { position: relative; }
.frame-marks::before,
.frame-marks::after {
    content: '';
    position: absolute;
    width: 18px; height: 18px;
    border: 0;
    pointer-events: none;
    z-index: 2;
}
.frame-marks::before { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.frame-marks::after  { bottom: -2px; right: -2px; border-left: none; border-top: none; }
.frame-marks.frame-marks--red::before,
.frame-marks.frame-marks--red::after { border-color: var(--red); }

/* ====================================================
   TOPBAR
   ==================================================== */
.topbar {
    display: none;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 12.5px;
    font-weight: 400;
    padding: 9px 0;
    letter-spacing: 0.01em;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-left a, .topbar-left span { color: var(--ink-soft); display: flex; align-items: center; gap: 6px; transition: color var(--tr); }
.topbar-left a:hover { color: var(--ink); }
.topbar-left i { font-size: 11px; color: var(--red); }
.topbar-sep { width: 1px; height: 14px; background: var(--line-2); }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-wa {
    display: flex; align-items: center; gap: 6px;
    color: var(--ink) !important;
    font-weight: 700;
    font-size: 12px;
    transition: color var(--tr);
}
.topbar-wa i { color: var(--wa-green); font-size: 13px; }
.topbar-wa:hover { color: var(--red) !important; }

/* ====================================================
   HEADER
   ==================================================== */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    position: sticky; top: 0; z-index: 500;
    transition: box-shadow var(--tr);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
}
.logo img { height: 50px; width: auto; object-fit: contain; }
.header-search {
    flex: 1;
    display: flex;
    background: var(--white);
    border: 1.5px solid var(--line-2);
    border-radius: var(--r-sm);
    overflow: hidden;
    transition: border-color var(--tr), box-shadow var(--tr);
    min-width: 260px;
}
.header-search:focus-within {
    border-color: var(--red);
}
.header-search input {
    flex: 1; border: none; background: transparent;
    padding: 12px 18px; font-size: 14px; outline: none;
    color: var(--ink);
}
.header-search input::placeholder { color: var(--gray); }
.header-search button {
    background: var(--ink); color: #fff;
    padding: 0 22px; font-size: 15px;
    transition: background var(--tr);
}
.header-search button:hover { background: var(--red); }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-info-pill {
    display: flex; align-items: center; gap: 7px;
    min-height: 46px;
    background: var(--paper);
    color: var(--ink-soft);
    border: 1px solid var(--line);
    padding: 9px 12px;
    border-radius: var(--r-sm);
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    transition: border-color var(--tr), color var(--tr), background var(--tr);
}
.header-info-pill i { color: var(--red); font-size: 13px; }
a.header-info-pill:hover { border-color: var(--red); color: var(--ink); background: var(--white); }
.btn-wa-header {
    display: flex; align-items: center; gap: 8px;
    background: var(--white); color: var(--ink);
    border: 1.5px solid var(--ink);
    padding: 11px 20px; border-radius: var(--r-sm);
    font-size: 13.5px; font-weight: 700; white-space: nowrap;
    transition: background var(--tr), color var(--tr), border-color var(--tr), transform var(--tr);
}
.btn-wa-header:hover {
    background: var(--wa-green); color: #fff; border-color: var(--wa-green);
    transform: translateY(-1px);
}
.btn-wa-header i { font-size: 17px; }

/* Mobile Toggle */
.mobile-toggle {
    display: none; flex-direction: column; gap: 5px;
    padding: 8px; border-radius: var(--r-xs);
    transition: background var(--tr);
}
.mobile-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; display: block; transition: all var(--tr); }
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ====================================================
   MAIN NAV
   ==================================================== */
.main-nav {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: stretch; }
.nav-link {
    color: var(--ink-soft);
    font-size: 13.5px; font-weight: 600;
    padding: 13px 18px;
    display: flex; align-items: center; gap: 7px;
    transition: color var(--tr), border-color var(--tr);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    letter-spacing: 0.01em;
}
.nav-link:hover, .nav-link.active { color: var(--ink); border-bottom-color: var(--red); }
.nav-link i { font-size: 12px; opacity: 0.55; }
.nav-cat-btn {
    display: flex; align-items: center; gap: 8px;
    background: var(--ink); color: #fff;
    padding: 13px 20px; font-size: 13.5px; font-weight: 700;
    border-bottom: 2px solid transparent; margin-bottom: -1px;
    transition: background var(--tr);
}
.nav-cat-btn:hover { background: var(--red); }
.nav-cat-btn .arr { font-size: 11px; margin-left: 4px; transition: transform var(--tr); }
.nav-item.open .arr { transform: rotate(180deg); }

/* Mega Dropdown */
.has-dropdown { position: relative; }
.mega-dropdown {
    position: absolute; top: calc(100% + 1px); left: 0;
    background: var(--white);
    border: 1.5px solid var(--ink);
    border-radius: 0 var(--r-md) var(--r-md) var(--r-md);
    box-shadow: var(--shadow-md);
    width: 600px; max-height: 440px; overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity var(--tr), transform var(--tr), visibility var(--tr);
    z-index: 600;
}
.has-dropdown.open .mega-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-inner {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px; padding: 12px;
}
.mega-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: var(--r-xs);
    font-size: 13px; color: var(--ink-soft);
    transition: background var(--tr), color var(--tr);
}
.mega-item:hover { background: var(--paper); color: var(--red); }
.mega-item i { font-size: 13px; color: var(--red); width: 16px; flex-shrink: 0; }
.mega-item span { line-height: 1.3; }

/* ====================================================
   MOBILE MENU
   ==================================================== */
.mobile-overlay {
    position: fixed; inset: 0; background: rgba(22,24,28,0.45);
    z-index: 700; opacity: 0; visibility: hidden;
    transition: opacity var(--tr-slow), visibility var(--tr-slow);
}
.mobile-overlay.show { opacity: 1; visibility: visible; }
.mobile-menu {
    position: fixed; top: 0; left: 0; width: 300px; height: 100%;
    background: var(--white); z-index: 800; overflow-y: auto;
    border-right: 1px solid var(--line);
    transform: translateX(-100%); transition: transform var(--tr-slow);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px; border-bottom: 2px solid var(--ink);
}
.mobile-close {
    color: var(--ink); font-size: 18px; padding: 6px;
    border-radius: var(--r-xs); transition: background var(--tr);
}
.mobile-close:hover { background: var(--paper); }
.mobile-search { padding: 16px 20px; border-bottom: 1px solid var(--line); }
.mobile-search form { display: flex; background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r-xs); overflow: hidden; }
.mobile-search input {
    flex: 1; background: transparent; border: none; padding: 10px 14px;
    color: var(--ink); font-size: 13px; outline: none;
}
.mobile-search input::placeholder { color: var(--gray); }
.mobile-search button { padding: 0 14px; color: var(--ink-soft); font-size: 14px; }
.mobile-nav { padding: 8px 0; }
.mobile-nav-link {
    display: flex; align-items: center; gap: 10px;
    padding: 13px 20px; color: var(--ink-soft);
    font-size: 14px; width: 100%; text-align: left;
    transition: background var(--tr), color var(--tr);
}
.mobile-nav-link:hover { background: var(--paper); color: var(--ink); }
.mobile-nav-link i { width: 16px; color: var(--red); flex-shrink: 0; }
.mobile-cat-list { display: none; background: var(--paper); }
.mobile-cat-list.open { display: block; }
.mobile-cat-link {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 20px 10px 36px; color: var(--ink-soft);
    font-size: 13px; transition: color var(--tr), background var(--tr);
}
.mobile-cat-link:hover { color: var(--ink); background: var(--white); }
.mobile-cat-link i { color: var(--line-2); font-size: 10px; }
.mobile-wa-link { color: var(--ink) !important; font-weight: 700; background: var(--red-light); }
.mobile-wa-link i { color: var(--wa-green) !important; }

/* ====================================================
   PAGE BANNER
   ==================================================== */
.page-banner {
    background: var(--paper);
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
}
.page-banner h1 {
    font-family: var(--font-head);
    font-size: clamp(20px, 2.6vw, 30px);
    color: var(--ink); font-weight: 700;
    margin-top: 10px;
    letter-spacing: -0.02em;
}
.page-banner p { color: var(--ink-soft); font-size: 14px; margin-top: 4px; }
.breadcrumb,
.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray); font-size: 13px; transition: color var(--tr); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb li { display: flex; align-items: center; line-height: 1.2; }
.breadcrumb .sep,
.breadcrumb-sep { color: var(--line-2); font-size: 12px; }
.breadcrumb li:last-child span,
.breadcrumb-current { color: var(--ink); font-size: 13px; font-weight: 600; }

/* ====================================================
   BUTTONS
   ==================================================== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: var(--r-sm);
    font-size: 14px; font-weight: 700; white-space: nowrap;
    transition: all var(--tr); cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.005em;
}
.btn-red {
    background: var(--red); color: #fff; border-color: var(--red);
}
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(225,52,43,0.22); }
.btn-dark {
    background: var(--ink); color: #fff; border-color: var(--ink);
}
.btn-dark:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-2px); }
.btn-outline {
    background: transparent; color: var(--ink);
    border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-white {
    background: transparent; color: #fff;
    border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.12); }
.btn-wa {
    background: var(--wa-green);
    color: #fff;
    border-color: var(--wa-green);
}
.btn-wa:hover {
    background: var(--wa-green-d);
    border-color: var(--wa-green-d);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(225,52,43,0.25);
}
.btn-lg { padding: 15px 30px; font-size: 15px; }
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* ====================================================
   SECTIONS
   ==================================================== */
.section { padding: 84px 0; }
.section-alt { background: var(--paper); }
.section-header { max-width: 580px; margin: 0 auto 50px; text-align: center; }
.section-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-mono);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--red); margin-bottom: 14px;
}
.section-eyebrow::before {
    content: ''; display: inline-block;
    width: 24px; height: 2px; background: var(--red);
}
.section-title {
    font-family: var(--font-head);
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 700; line-height: 1.2;
    letter-spacing: -0.02em; color: var(--ink);
}
.section-sub {
    margin-top: 12px; font-size: 15px; color: var(--ink-soft); line-height: 1.65;
}
.section-dark .section-title { color: #fff; }
.section-dark .section-sub { color: rgba(255,255,255,0.65); }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }

/* ====================================================
   HERO
   ==================================================== */
.hero {
    position: relative;
    background: var(--white);
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    padding-top: 56px;
}
.hero-bg-type {
    position: absolute;
    top: -0.18em; right: -0.05em;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(130px, 17vw, 280px);
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--paper);
    z-index: 0;
    user-select: none; pointer-events: none;
    white-space: nowrap;
}
.hero-grid {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 56px;
    align-items: center;
    padding-bottom: 56px;
}

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-mono);
    font-size: 12.5px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--red); margin-bottom: 22px;
}
.hero-eyebrow::before {
    content: ''; width: 28px; height: 2px; background: var(--red);
}
.hero-title {
    font-family: var(--font-head);
    font-size: clamp(32px, 4.6vw, 56px);
    font-weight: 800; color: var(--ink); line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.hero-title em {
    font-style: normal;
    color: var(--red);
}
.hero-desc {
    font-size: clamp(14.5px, 1.5vw, 16px);
    color: var(--ink-soft); line-height: 1.75;
    margin-bottom: 32px; max-width: 480px;
}
.hero-btns {
    display: flex; gap: 14px; flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Stats row */
.hero-stats {
    display: flex; flex-wrap: wrap;
    border-top: 1px solid var(--line);
    padding-top: 26px;
}
.hero-stat {
    flex: 1; min-width: 110px;
    padding-right: 22px; margin-right: 22px;
    border-right: 1px solid var(--line);
}
.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-stat-num {
    display: block;
    font-family: var(--font-head);
    font-size: clamp(20px, 2.4vw, 28px); font-weight: 800; color: var(--ink); letter-spacing: -0.02em;
    line-height: 1;
}
.hero-stat-label {
    display: block; margin-top: 6px;
    font-family: var(--font-mono);
    font-size: 10.5px; color: var(--gray);
    text-transform: uppercase; letter-spacing: 0.08em;
}

/* Right panel — category preview */
.hero-panel {
    position: relative;
    background: var(--paper);
    border: 1px solid var(--line-2);
    border-radius: var(--r-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}
.hero-panel::before,
.hero-panel::after {
    content: none;
}
.hero-panel::before { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.hero-panel::after  { bottom: -2px; right: -2px; border-left: none; border-top: none; }
.hero-panel-head {
    display: flex; align-items: baseline; justify-content: space-between;
    margin-bottom: 18px; gap: 10px;
}
.hero-panel-head h3 {
    font-family: var(--font-head);
    font-size: 16px; font-weight: 700; color: var(--ink);
}
.hero-panel-head span {
    font-family: var(--font-mono);
    font-size: 11px; color: var(--gray);
    text-transform: uppercase; letter-spacing: 0.06em;
    white-space: nowrap;
}
.hero-panel-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.hero-panel-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    padding: 18px 10px 14px;
    display: flex; flex-direction: column; align-items: center; gap: 9px;
    text-align: center;
    transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
}
.hero-panel-item:hover {
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}
.hero-panel-item i { font-size: 19px; color: var(--red); }
.hero-panel-item span {
    font-size: 11px; font-weight: 600; color: var(--ink-soft);
    line-height: 1.3;
}

/* ====================================================
   TRUST STRIP
   ==================================================== */
.trust-strip {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}
.trust-strip-inner {
    display: flex; align-items: stretch;
}
.trust-item {
    flex: 1; display: flex; align-items: center; gap: 14px;
    padding: 22px 24px;
    border-right: 1px solid var(--line);
    transition: background var(--tr);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--paper); }
.trust-icon {
    width: 42px; height: 42px; border-radius: var(--r-sm);
    background: var(--white);
    border: 1.5px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: border-color var(--tr), color var(--tr);
}
.trust-item:hover .trust-icon { border-color: var(--red); }
.trust-icon i { color: var(--red); font-size: 17px; }
.trust-text strong { display: block; color: var(--ink); font-size: 13.5px; font-weight: 700; }
.trust-text span { color: var(--gray); font-size: 12px; }

/* ====================================================
   CATEGORY GRID
   ==================================================== */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.cat-card {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 26px 14px 22px;
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    text-align: center;
    transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
    gap: 12px;
}
.cat-card:hover {
    border-color: var(--ink);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}
.cat-icon {
    width: 52px; height: 52px; border-radius: var(--r-sm);
    background: var(--paper);
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    transition: background var(--tr), border-color var(--tr);
}
.cat-card:hover .cat-icon { background: var(--red); border-color: var(--red); }
.cat-card:hover .cat-icon i { color: #fff; }
.cat-icon i { font-size: 20px; color: var(--red); transition: color var(--tr); }
.cat-name { font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.cat-count { font-family: var(--font-mono); font-size: 11px; color: var(--gray); }

/* ====================================================
   PRODUCT GRID
   ==================================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    display: flex; flex-direction: column;
    position: relative;
}
.product-card:hover {
    border-color: var(--ink);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.product-img-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--paper);
    border-bottom: 1.5px solid var(--line);
    display: block;
    transition: border-color 0.25s ease;
}
.product-card:hover .product-img-wrap { border-color: var(--ink); }
.product-img-wrap img {
    width: 100%; height: 100%;
    object-fit: contain; padding: 14px;
    transition: transform 0.4s ease;
}
.product-img-wrap img[src$="no-image.svg"],
.product-main-img img[src$="no-image.svg"] {
    padding: 34px;
    opacity: 0.7;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-badge {
    position: absolute; top: 10px; left: 10px;
    background: var(--ink);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 10px; font-weight: 700;
    padding: 5px 10px; border-radius: var(--r-xs);
    letter-spacing: 0.06em; text-transform: uppercase;
    z-index: 2;
}
.product-info {
    padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.product-category {
    font-family: var(--font-mono);
    font-size: 10.5px; color: var(--gray);
    text-transform: uppercase; letter-spacing: 0.07em;
    font-weight: 700;
    display: flex; align-items: center; gap: 5px;
}
.product-category i { color: var(--red); font-size: 9px; }
.product-name {
    font-size: 14px; font-weight: 600; color: var(--ink);
    line-height: 1.4; display: block;
    transition: color 0.2s ease;
}
.product-name:hover { color: var(--red); }
.product-actions {
    display: flex; gap: 8px; margin-top: auto; padding-top: 12px;
    border-top: 1px solid var(--line);
}
.product-actions .btn-wa {
    flex: 1; justify-content: center; font-size: 13px; padding: 10px 14px;
    border-radius: var(--r-sm);
}
.btn-detail {
    width: 40px; height: 40px; border-radius: var(--r-sm);
    background: var(--white); border: 1.5px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    color: var(--ink-soft); font-size: 14px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.btn-detail:hover {
    background: var(--ink); color: #fff;
    border-color: var(--ink);
}

/* ====================================================
   WHY US — Spec sheet style
   ==================================================== */
.why-us {
    position: relative;
    background: var(--white);
    padding: 88px 0;
    border-top: 1px solid var(--line);
}
.why-header {
    max-width: 660px;
    margin: 0 auto 44px;
    text-align: center;
}
.why-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-mono);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--red); margin-bottom: 14px;
}
.why-eyebrow::before {
    content: ''; display: inline-block; width: 24px; height: 2px; background: var(--red);
}
.why-eyebrow-dot { display: none; }
.why-title {
    font-family: var(--font-head);
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 800; color: var(--ink); line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.why-title span { color: var(--red); }
.why-subtitle {
    font-size: 15px;
    color: var(--ink-soft);
    max-width: 560px; margin: 0 auto;
    line-height: 1.7;
}

/* Stats row — spec sheet */
.why-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
    margin-bottom: 48px;
}
.why-stat-item {
    padding: 26px 20px;
    border-right: 1px solid var(--line);
    text-align: center;
}
.why-stat-item:last-child { border-right: none; }
.why-stat-val {
    font-family: var(--font-head);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800; color: var(--ink);
    letter-spacing: -0.02em; line-height: 1;
}
.why-stat-desc {
    margin-top: 8px;
    font-family: var(--font-mono);
    font-size: 11px; color: var(--gray);
    text-transform: uppercase; letter-spacing: 0.08em;
    font-weight: 600;
}

/* Feature cards */
.why-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.why-feat-card {
    position: relative;
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    padding: 26px 22px;
    display: flex; flex-direction: column; gap: 16px;
    overflow: hidden;
    cursor: default;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.why-feat-card:hover {
    border-color: var(--red);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.why-feat-num {
    font-family: var(--font-mono);
    font-size: 12px; font-weight: 700; color: var(--line-2);
    letter-spacing: 0.05em;
}
.why-feat-card:hover .why-feat-num { color: var(--red); }
.why-feat-icon {
    width: 46px; height: 46px; border-radius: var(--r-sm); flex-shrink: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    font-size: 19px; color: var(--red);
    transition: background 0.25s ease, border-color 0.25s ease;
}
.why-feat-card:hover .why-feat-icon {
    background: var(--red); border-color: var(--red); color: #fff;
}
.why-feat-content h3 {
    font-family: var(--font-head);
    font-size: 16px; font-weight: 700; color: var(--ink);
    margin-bottom: 6px; line-height: 1.3;
}
.why-feat-content p {
    font-size: 13.5px; color: var(--ink-soft);
    line-height: 1.6; margin: 0;
}

/* ====================================================
   CTA BANNER
   ==================================================== */
.cta-banner {
    background: var(--red);
    padding: 72px 0;
    position: relative; overflow: hidden;
}
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.cta-inner h2 {
    font-family: var(--font-head);
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800; color: #fff; line-height: 1.18;
    letter-spacing: -0.02em; margin-bottom: 14px;
}
.cta-inner h2 span {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
    text-decoration-color: rgba(255,255,255,0.45);
}
.cta-inner p { color: rgba(255,255,255,0.82); font-size: 15px; margin-bottom: 32px; line-height: 1.6; }
.cta-meta {
    display: flex; gap: 28px; flex-wrap: wrap;
    justify-content: center; margin-top: 22px;
}
.cta-meta-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,0.82); }
.cta-meta-item i { color: #fff; font-size: 12px; }

/* ====================================================
   PRODUCT DETAIL
   ==================================================== */
.product-detail { padding: 48px 0; }
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: start;
}
.product-gallery {
    position: sticky; top: 96px;
}
.product-main-img {
    background: var(--paper);
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden; cursor: zoom-in;
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    transition: border-color var(--tr);
}
.product-main-img:hover { border-color: var(--red); }
.product-main-img img {
    width: 100%; height: 100%;
    object-fit: contain; padding: 24px;
    transition: transform var(--tr-slow);
}
.product-main-img:hover img { transform: scale(1.04); }
.product-img-hint {
    text-align: center; margin-top: 10px;
    font-size: 12px; color: var(--gray);
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.product-detail-info { display: flex; flex-direction: column; gap: 0; }
.product-detail-cat {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--font-mono);
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--red); margin-bottom: 14px;
    border: 1.5px solid var(--red);
    padding: 5px 12px; border-radius: var(--r-xs);
    width: fit-content;
    transition: background var(--tr), color var(--tr);
}
.product-detail-cat:hover { background: var(--red); color: #fff; }
.product-detail-name {
    font-family: var(--font-head);
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 700; color: var(--ink);
    letter-spacing: -0.02em; line-height: 1.25;
    margin-bottom: 16px;
}
.product-detail-brand {
    display: flex; align-items: center; gap: 8px;
    color: var(--ink-soft); font-size: 13.5px;
    padding-bottom: 20px; border-bottom: 1px solid var(--line);
    margin-bottom: 24px;
}
.product-detail-brand i { color: var(--red); }
.product-wa-section {
    background: var(--red-light);
    border: 1.5px solid var(--red);
    border-radius: var(--r-md); padding: 24px;
    margin-bottom: 24px;
}
.product-wa-section h3 {
    font-family: var(--font-head);
    font-size: 16px; font-weight: 700; color: var(--ink);
    margin-bottom: 8px; display: flex; align-items: center; gap: 8px;
}
.product-wa-section h3 i { color: var(--red); }
.product-wa-section p {
    color: var(--ink-soft); font-size: 13.5px; margin-bottom: 18px; line-height: 1.55;
}
.product-wa-section .btn-wa { width: 100%; justify-content: center; margin-bottom: 10px; }
.product-wa-section .btn-outline {
    width: 100%; justify-content: center;
    color: var(--ink-soft); border-color: var(--line-2);
    font-size: 13px; background: var(--white);
}
.product-wa-section .btn-outline:hover { color: var(--ink); border-color: var(--ink); background: var(--white); }
.product-description {
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden; margin-bottom: 12px;
}
.product-desc-title {
    padding: 12px 18px; background: var(--paper);
    border-bottom: 1px solid var(--line);
    font-size: 13px; font-weight: 700; color: var(--ink);
    display: flex; align-items: center; gap: 8px;
}
.product-desc-title i { color: var(--red); }
.product-desc-body { padding: 18px; font-size: 14px; color: var(--ink-soft); line-height: 1.7; }
.product-props { display: flex; flex-direction: column; gap: 10px; }
.product-prop {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 12px 0; border-bottom: 1px solid var(--line);
}
.product-prop:last-child { border-bottom: none; padding-bottom: 0; }
.product-prop i { color: var(--green); font-size: 13px; margin-top: 2px; flex-shrink: 0; }

/* Related */
.related-section { padding: 64px 0; background: var(--paper); }

/* ====================================================
   CATEGORY / LISTING PAGE
   ==================================================== */
.listing-section { padding: 48px 0; }
.listing-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 28px; align-items: start;
}
.listing-sidebar {
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
    position: sticky; top: 96px;
}
.sidebar-header {
    padding: 15px 18px; background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: flex; align-items: center; gap: 8px;
}
.sidebar-header h3 { font-family: var(--font-head); color: var(--ink); font-size: 13.5px; font-weight: 700; }
.sidebar-header i { color: var(--red); font-size: 13px; }
.sidebar-cats a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 11px 18px; font-size: 13px; color: var(--ink-soft);
    border-bottom: 1px solid var(--line);
    transition: all var(--tr);
}
.sidebar-cats a:last-child { border-bottom: none; }
.sidebar-cats a:hover { background: var(--paper); color: var(--ink); }
.sidebar-cats a.active { background: var(--red-light); color: var(--red); font-weight: 700; border-left: 3px solid var(--red); padding-left: 15px; }
.sidebar-cats a .badge {
    background: var(--paper); color: var(--gray);
    font-family: var(--font-mono);
    font-size: 11px; padding: 2px 8px; border-radius: var(--r-xs);
    font-weight: 700; min-width: 28px; text-align: center;
}
.sidebar-cats a.active .badge { background: var(--red); color: #fff; }

.listing-main { min-width: 0; }
.listing-toolbar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 18px; background: var(--white);
    border: 1.5px solid var(--line); border-radius: var(--r-sm);
    margin-bottom: 22px; gap: 12px; flex-wrap: wrap;
}
.listing-count { font-size: 13.5px; color: var(--ink-soft); font-weight: 500; }
.listing-count strong { color: var(--ink); }
.sort-select {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--ink-soft);
}
.sort-select select {
    border: 1.5px solid var(--line); border-radius: var(--r-xs);
    padding: 7px 12px; font-size: 13px; color: var(--ink);
    background: var(--white); cursor: pointer;
    outline: none; transition: border-color var(--tr);
}
.sort-select select:focus { border-color: var(--red); }
.product-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 44px;
    flex-wrap: wrap;
}
.page-btn,
.page-link {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: var(--r-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--white);
    border: 1.5px solid var(--line);
    color: var(--ink-soft);
    font-size: 13.5px;
    font-weight: 700;
    font-family: var(--font-mono);
    line-height: 1;
    transition: border-color var(--tr), background var(--tr), color var(--tr), transform var(--tr);
}
.page-btn:hover,
.page-link:hover {
    border-color: var(--ink);
    color: var(--ink);
    transform: translateY(-2px);
}
.page-btn.active,
.page-link.active {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}
.page-btn-wide {
    padding: 0 16px;
}
.page-dots {
    color: var(--gray);
    font-weight: 800;
    padding: 0 3px;
}
.page-link.disabled { opacity: 0.4; pointer-events: none; }

/* ====================================================
   ARAMA (SEARCH) SAYFASI
   ==================================================== */
.search-header {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 48px 0;
}
.search-form-big {
    display: flex; max-width: 680px; margin: 0 auto;
    border: 2px solid var(--ink); border-radius: var(--r-sm);
    overflow: hidden; background: var(--white);
    transition: border-color var(--tr);
}
.search-form-big:focus-within { border-color: var(--red); }
.search-form-big input {
    flex: 1; border: none; padding: 17px 22px;
    font-size: 15px; outline: none; color: var(--ink);
}
.search-form-big input::placeholder { color: var(--gray); }
.search-form-big button {
    background: var(--ink); color: #fff;
    padding: 0 30px; font-size: 17px;
    transition: background var(--tr);
}
.search-form-big button:hover { background: var(--red); }
.search-query {
    text-align: center; margin-top: 18px;
    font-size: 14px; color: var(--ink-soft);
}
.search-query strong { color: var(--ink); }
.no-results {
    text-align: center; padding: 80px 20px;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.no-results i { font-size: 52px; color: var(--line-2); }
.no-results h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--ink); }
.no-results p { font-size: 14px; color: var(--ink-soft); max-width: 380px; }
.cat-content-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.cat-result-count { font-size: 13.5px; color: var(--ink-soft); font-weight: 500; }
.cat-result-count strong { color: var(--ink); }

/* ====================================================
   ABOUT / CONTACT PAGES
   ==================================================== */
.section-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-mono);
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-label::before {
    content: ''; display: inline-block; width: 24px; height: 2px; background: var(--red);
}
.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: 48px;
    align-items: center;
    overflow: hidden;
}
.about-hero-content {
    min-width: 0;
}
.about-hero-content h2 {
    font-family: var(--font-head);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
    color: var(--ink);
}
.about-hero-content h2 span {
    color: var(--red);
}
.about-hero-content p {
    max-width: 720px;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 14px;
    overflow-wrap: anywhere;
}
.about-hero-img {
    min-width: 0;
    border-radius: var(--r-md);
    background: var(--paper);
    border: 2px solid var(--ink);
    overflow: hidden;
    position: relative;
}
.about-hero-img::before,
.about-hero-img::after {
    content: '';
    position: absolute;
    width: 20px; height: 20px;
    border: 2px solid var(--red);
    z-index: 2;
}
.about-hero-img::before { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.about-hero-img::after  { bottom: -2px; right: -2px; border-left: none; border-top: none; }
.about-hero-img img {
    width: 100%;
    max-height: 380px;
    object-fit: contain;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.stat-card {
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr);
}
.stat-card:hover {
    transform: translateY(-3px);
    border-color: var(--red);
    box-shadow: var(--shadow-sm);
}
.stat-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--r-sm);
    background: var(--red-light);
    border: 1px solid var(--line);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
    gap: 28px;
    align-items: start;
    padding: 56px 0 72px;
}
.contact-info {
    min-width: 0;
}
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    margin-bottom: 14px;
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    transition: border-color var(--tr);
}
.contact-card:hover { border-color: var(--red); }
.contact-card-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--r-sm);
    background: var(--red-light);
    border: 1px solid var(--line);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}
.contact-card-info h4 {
    font-family: var(--font-head);
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}
.contact-card-info p,
.contact-card-info a {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}
.contact-card-info a:hover {
    color: var(--red);
}
.map-embed {
    overflow: hidden;
    border: 1.5px solid var(--line);
    border-radius: var(--r-md) var(--r-md) 0 0;
    background: var(--paper);
}
.map-embed iframe {
    display: block;
}

/* All Categories */
.all-cats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.all-cat-card {
    display: flex; align-items: center; gap: 16px;
    padding: 20px 18px;
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    transition: all var(--tr);
}
.all-cat-card:hover {
    border-color: var(--ink);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.all-cat-icon {
    width: 48px; height: 48px; border-radius: var(--r-sm);
    background: var(--paper); border: 1px solid var(--line);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--tr), border-color var(--tr);
}
.all-cat-card:hover .all-cat-icon { background: var(--red); border-color: var(--red); }
.all-cat-card:hover .all-cat-icon i { color: #fff; }
.all-cat-icon i { font-size: 18px; color: var(--red); transition: color var(--tr); }
.all-cat-info h3 { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.3; margin-bottom: 4px; }
.all-cat-info span { font-family: var(--font-mono); font-size: 12px; color: var(--gray); display: flex; align-items: center; gap: 5px; }

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer { background: var(--paper); color: var(--ink-soft); border-top: 2px solid var(--ink); }
.footer-top { padding: 64px 0 48px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 40px;
}
.footer-brand {}
.footer-logo img { height: 46px; margin-bottom: 18px; }
.footer-desc { font-size: 13.5px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 24px; max-width: 290px; }
.footer-title {
    font-family: var(--font-mono);
    font-size: 11.5px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--ink); margin-bottom: 18px;
    padding-bottom: 10px; border-bottom: 2px solid var(--ink);
    display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
    font-size: 13.5px; color: var(--ink-soft);
    display: flex; align-items: center; gap: 8px;
    transition: color var(--tr);
}
.footer-links a:hover { color: var(--red); }
.footer-links a i { color: var(--red); font-size: 10px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; }
.footer-contact i { color: var(--red); font-size: 14px; margin-top: 2px; flex-shrink: 0; width: 16px; }
.footer-contact span, .footer-contact a {
    font-size: 13.5px; color: var(--ink-soft); line-height: 1.5;
    transition: color var(--tr);
}
.footer-contact a:hover { color: var(--red); }
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--line);
}
.footer-bottom-inner {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 10px;
}
.footer-bottom-inner p { font-size: 12.5px; color: var(--gray); }
.footer-bottom-inner strong { color: var(--ink); }
.footer-seo-text { font-size: 12px; color: var(--gray) !important; }

/* ====================================================
   WHATSAPP FLOAT
   ==================================================== */
.wa-float {
    position: fixed; bottom: 28px; right: 24px; z-index: 999;
    width: 58px; height: 58px; border-radius: 50%;
    background: var(--wa-green);
    border: none;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 27px;
    box-shadow: 0 10px 28px rgba(225,52,43,0.35);
    transition: transform var(--tr), box-shadow var(--tr);
}
.wa-float:hover {
    background: var(--wa-green-d);
    transform: scale(1.08);
    box-shadow: 0 14px 34px rgba(225,52,43,0.42);
}
.wa-tooltip {
    position: absolute; right: 70px;
    background: var(--ink); color: #fff;
    padding: 7px 14px; border-radius: var(--r-xs);
    font-size: 13px; font-weight: 600; white-space: nowrap;
    opacity: 0; pointer-events: none;
    transform: translateX(6px); transition: all var(--tr);
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ====================================================
   EMPTY STATE
   ==================================================== */
.empty-state {
    text-align: center; padding: 80px 20px;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.empty-state i { font-size: 52px; color: var(--line-2); }
.empty-state h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--ink); }
.empty-state p { font-size: 14px; color: var(--ink-soft); max-width: 360px; }

/* ====================================================
   LIGHTBOX
   ==================================================== */
.lightbox {
    position: fixed; inset: 0; background: rgba(15,16,18,0.92);
    z-index: 2000; display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all var(--tr-slow);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; background: #fff; border-radius: var(--r-sm); }
.lightbox-close {
    position: absolute; top: 20px; right: 20px; color: #fff;
    font-size: 22px; width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.12); border-radius: 50%;
    transition: background var(--tr);
}
.lightbox-close:hover { background: var(--red); }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1100px) {
    .cat-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .trust-strip-inner { flex-wrap: wrap; }
    .trust-item { flex: 0 0 50%; }
    .trust-item:nth-child(2) { border-right: none; }
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .hero-panel { max-width: 480px; }
    .hero-bg-type { font-size: clamp(100px, 22vw, 200px); }
    .mega-dropdown { width: 580px; }
}

@media (max-width: 900px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .why-stats-row,
    .why-features { grid-template-columns: repeat(2, 1fr); }
    .why-stat-item:nth-child(2) { border-right: none; }
    .listing-layout { grid-template-columns: 1fr; }
    .listing-sidebar { position: static; }
    .product-detail-grid { grid-template-columns: 1fr; gap: 28px; }
    .product-gallery { position: static; }
    .all-cats-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .about-hero-grid,
    .contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }
    .contact-layout {
        padding: 42px 0 56px;
    }
    .mega-dropdown { width: 100%; max-width: 420px; }
    .mega-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .header-search { display: none; }
    .header-actions { display: none; }
    .main-nav { display: none; }
    .topbar-left { gap: 10px; font-size: 11px; }
    .section { padding: 52px 0; }
    .hero { padding-top: 32px; }
    .hero-grid { padding-bottom: 36px; }
    .hero-title { font-size: 30px; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .hero-stats { gap: 14px; }
    .hero-stat { flex: 0 0 calc(50% - 11px); padding-right: 0; margin-right: 0; border-right: none; }
    .hero-bg-type { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-top { padding: 40px 0 32px; }
    .trust-item { flex: 0 0 100%; border-right: none; border-bottom: 1px solid var(--line); }
    .trust-item:last-child { border-bottom: none; }
    .cta-meta { gap: 14px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .why-features { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .product-grid-3 { grid-template-columns: 1fr 1fr; gap: 10px; }
    .all-cats-grid { grid-template-columns: 1fr; }
    .why-us { padding: 56px 0; }
    .why-header { margin-bottom: 28px; }
    .why-stats-row,
    .why-features { grid-template-columns: 1fr; }
    .why-stat-item { border-right: none !important; border-bottom: 1px solid var(--line); }
    .why-stat-item:last-child { border-bottom: none; }
    .stats-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .about-hero-grid { gap: 24px; }
    .about-hero-img img { max-height: 240px; }
    .contact-card { padding: 15px; }
    .map-embed iframe { height: 300px; }
    .pagination { gap: 6px; }
    .page-btn,
    .page-link {
        min-width: 38px;
        height: 38px;
        padding: 0 11px;
        font-size: 13px;
    }
    .page-btn-wide { padding: 0 13px; }
    .hero-panel-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stat { flex: 0 0 100%; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
