/* ============================================
   Auderio.digital — Ana Stil Dosyası
   Tema: Premium Audio & Multimedia Marketplace
   Geo: Türkiye
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Syne:wght@600;700;800&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:       #FFFFFF;
  --green:       #166534;
  --green-light: #22c55e;
  --green-bg:    #dcfce7;
  --sky:         #38BDF8;
  --sky-dark:    #0ea5e9;
  --slate:       #334155;
  --slate-light: #64748b;
  --sand:        #EAD7B7;
  --sand-dark:   #d4b896;
  --gray:        #F8FAFC;
  --gray-mid:    #e2e8f0;
  --gray-dark:   #cbd5e1;
  --text:        #1e293b;
  --text-muted:  #64748b;
  --border:      #e2e8f0;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.06),0 1px 2px rgba(0,0,0,.04);
  --shadow:      0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.12);
  --font-body:   'Inter', system-ui, sans-serif;
  --font-display:'Syne', 'Inter', sans-serif;
  --transition:  .22s ease;
}

html { scroll-behavior: smooth; font-size: 16px; background: var(--white); }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; outline: none; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); line-height: 1.25; color: var(--text); }
h1 { font-size: clamp(2rem,5vw,3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem,3.5vw,2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem,2.5vw,1.7rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }
p  { color: var(--text-muted); line-height: 1.7; margin-bottom: .75rem; }
p:last-child { margin-bottom: 0; }

/* ── Container ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* ── Section Spacing ── */
.section { padding: 72px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 96px 0; }
.bg-gray { background: var(--gray); }
.bg-white { background: var(--white); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; font-size: .95rem; font-weight: 600;
  border-radius: var(--radius); transition: var(--transition);
  white-space: nowrap; line-height: 1;
}
.btn--primary { background: var(--green); color: var(--white); }
.btn--primary:hover { background: #15803d; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(22,101,52,.3); }
.btn--secondary { background: var(--white); color: var(--green); border: 2px solid var(--green); }
.btn--secondary:hover { background: var(--green-bg); }
.btn--sky { background: var(--sky); color: var(--white); }
.btn--sky:hover { background: var(--sky-dark); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--slate); border: 1.5px solid var(--border); }
.btn--ghost:hover { background: var(--gray); border-color: var(--gray-dark); }
.btn--white { background: var(--white); color: var(--green); font-weight: 700; }
.btn--white:hover { background: var(--sand); }
.btn--sm { padding: 8px 18px; font-size: .85rem; }
.btn--lg { padding: 16px 38px; font-size: 1.05rem; }

/* ── Tags ── */
.tag { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: .78rem; font-weight: 600; letter-spacing: .02em; }
.tag--green  { background: var(--green-bg); color: var(--green); }
.tag--sky    { background: #e0f2fe; color: #0369a1; }
.tag--sand   { background: #fef9ef; color: #92400e; }
.tag--slate  { background: #f1f5f9; color: var(--slate); }

/* ── Breadcrumb ── */
.breadcrumb { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: .85rem; color: var(--text-muted); padding: 14px 0; }
.breadcrumb a { color: var(--green); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--gray-dark); }

/* ── Section Headers ── */
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-header__label { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; display: block; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { max-width: 620px; }
.section-header--center p { margin: 0 auto; }

/* ── TOP BAR ── */
.top-bar { background: var(--green); color: rgba(255,255,255,.9); font-size: .8rem; padding: 7px 0; }
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.top-bar a { color: rgba(255,255,255,.9); }
.top-bar a:hover { color: var(--white); }
.top-bar__links { display: flex; gap: 20px; }

/* ── HEADER ── */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; gap: 32px; height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo__mark { width: 36px; height: 36px; background: var(--green); border-radius: 9px; display: flex; align-items: center; justify-content: center; }
.logo__mark svg { width: 20px; height: 20px; fill: var(--white); }
.logo__text { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--text); letter-spacing: -.03em; }
.logo__text span { color: var(--green); }
.logo__sub { font-size: .65rem; font-weight: 500; color: var(--text-muted); letter-spacing: .08em; text-transform: uppercase; display: block; margin-top: -4px; }

/* Main Nav */
.main-nav { flex: 1; }
.main-nav__list { display: flex; align-items: center; gap: 4px; }
.main-nav__item { position: relative; }
.main-nav__link { display: flex; align-items: center; gap: 4px; padding: 8px 14px; font-size: .9rem; font-weight: 500; color: var(--slate); border-radius: 7px; transition: var(--transition); }
.main-nav__link:hover, .main-nav__link.active { color: var(--green); background: var(--green-bg); }
.main-nav__link svg { width: 14px; height: 14px; transition: transform .2s; }
.main-nav__item:hover > .main-nav__link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown { position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s ease; z-index: 200; padding: 8px; }
.main-nav__item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; font-size: .875rem; font-weight: 500; color: var(--slate); border-radius: 7px; transition: var(--transition); }
.dropdown a:hover { color: var(--green); background: var(--green-bg); }
.dropdown a svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-search { position: relative; display: flex; align-items: center; }
.header-search input { width: 220px; padding: 9px 16px 9px 38px; border: 1.5px solid var(--border); border-radius: 8px; font-size: .875rem; background: var(--gray); color: var(--text); transition: var(--transition); }
.header-search input:focus { border-color: var(--green); background: var(--white); box-shadow: 0 0 0 3px rgba(22,101,52,.1); }
.header-search__icon { position: absolute; left: 10px; color: var(--text-muted); pointer-events: none; }
.header-search__icon svg { width: 16px; height: 16px; }
.icon-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 8px; color: var(--slate); transition: var(--transition); position: relative; }
.icon-btn:hover { background: var(--gray); color: var(--green); }
.icon-btn svg { width: 20px; height: 20px; }
.icon-btn__badge { position: absolute; top: 4px; right: 4px; width: 16px; height: 16px; background: var(--green); color: var(--white); border-radius: 50%; font-size: .65rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }

/* Mobile Menu Toggle */
.menu-toggle { display: none; width: 38px; height: 38px; align-items: center; justify-content: center; border-radius: 8px; color: var(--slate); transition: var(--transition); }
.menu-toggle:hover { background: var(--gray); }
.menu-toggle svg { width: 22px; height: 22px; }

/* Mobile Nav */
.mobile-nav { display: none; }
.mobile-nav.open { display: block; }
.mobile-nav__backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1001; }
.mobile-nav__panel { position: fixed; top: 0; left: 0; bottom: 0; width: 300px; background: var(--white); z-index: 1002; overflow-y: auto; padding: 0 0 32px; box-shadow: var(--shadow-lg); }
.mobile-nav__header { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--border); margin-bottom: 8px; }
.mobile-nav__close { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 7px; color: var(--slate); }
.mobile-nav__close:hover { background: var(--gray); }
.mobile-nav__close svg { width: 20px; height: 20px; }
.mobile-nav a { display: block; padding: 11px 20px; font-size: .9rem; font-weight: 500; color: var(--slate); border-bottom: 1px solid var(--border); transition: var(--transition); }
.mobile-nav a:hover { color: var(--green); background: var(--green-bg); }
.mobile-nav__section-title { padding: 10px 20px 6px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); background: var(--gray); }

/* ── HERO ── */
.hero { background: linear-gradient(135deg, #0f2419 0%, #166534 50%, #1a4d6b 100%); padding: 80px 0 72px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero__content { color: var(--white); }
.hero__eyebrow { font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sky); margin-bottom: 14px; display: block; }
.hero__title { font-size: clamp(2.2rem,5vw,3.4rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.hero__title em { font-style: normal; color: var(--sky); }
.hero__desc { font-size: 1.05rem; color: rgba(255,255,255,.75); margin-bottom: 36px; max-width: 480px; line-height: 1.75; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 32px; margin-top: 44px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.12); }
.hero__stat-number { display: block; font-size: 1.8rem; font-weight: 800; color: var(--white); font-family: var(--font-display); line-height: 1; }
.hero__stat-label { display: block; font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 4px; }
.hero__image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.hero__image img { width: 100%; height: 100%; object-fit: cover; }

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(135deg, #0f2419 0%, #166534 100%); padding: 52px 0; }
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 600px; }
.page-hero .breadcrumb { padding: 0 0 16px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.7); }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero .breadcrumb span { color: rgba(255,255,255,.4); }

/* ── CATEGORY GRID ── */
.cat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.cat-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; }
.cat-card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-3px); }
.cat-card__img { aspect-ratio: 4/3; overflow: hidden; background: var(--gray); }
.cat-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.cat-card:hover .cat-card__img img { transform: scale(1.04); }
.cat-card__body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.cat-card__name { font-size: 1rem; font-weight: 700; color: var(--text); }
.cat-card__count { font-size: .82rem; color: var(--text-muted); }
.cat-card__link { margin-top: auto; padding-top: 12px; font-size: .85rem; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 4px; }
.cat-card__link svg { width: 14px; height: 14px; transition: transform .2s; }
.cat-card:hover .cat-card__link svg { transform: translateX(3px); }

/* ── PRODUCT CARDS ── */
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.product-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; position: relative; }
.product-card:hover { border-color: var(--sky); box-shadow: var(--shadow); transform: translateY(-4px); }
.product-card__img { aspect-ratio: 1/1; overflow: hidden; background: var(--gray); position: relative; }
.product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-card__img img { transform: scale(1.05); }
.product-card__actions { position: absolute; top: 10px; right: 10px; display: flex; flex-direction: column; gap: 6px; opacity: 0; transform: translateX(6px); transition: all .2s ease; }
.product-card:hover .product-card__actions { opacity: 1; transform: translateX(0); }
.product-card__action-btn { width: 34px; height: 34px; background: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--slate); box-shadow: var(--shadow-sm); transition: var(--transition); }
.product-card__action-btn:hover { color: var(--green); background: var(--green-bg); }
.product-card__action-btn svg { width: 16px; height: 16px; }
.product-card__body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-card__brand { font-size: .75rem; font-weight: 700; color: var(--sky-dark); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.product-card__name { font-size: .95rem; font-weight: 600; color: var(--text); line-height: 1.4; margin-bottom: 10px; }
.product-card__specs { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.product-card__spec { font-size: .72rem; padding: 3px 8px; background: var(--gray); border-radius: 5px; color: var(--text-muted); font-weight: 500; }
.product-card__footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-card__price { font-size: 1.2rem; font-weight: 800; color: var(--green); font-family: var(--font-display); }
.product-card__price-old { font-size: .82rem; color: var(--text-muted); text-decoration: line-through; }

/* ── CATALOG LAYOUT ── */
.catalog-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; }
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.catalog-toolbar__left { font-size: .875rem; color: var(--text-muted); }
.catalog-toolbar__left strong { color: var(--text); }
.catalog-toolbar__right { display: flex; align-items: center; gap: 10px; }
.sort-select { padding: 7px 12px; border: 1.5px solid var(--border); border-radius: 6px; font-size: .875rem; background: var(--white); color: var(--text); cursor: pointer; }
.sort-select:focus { border-color: var(--green); }

/* ── FILTER SIDEBAR ── */
.filter-sidebar { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: 90px; }
.filter-sidebar__title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1.5px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.filter-sidebar__title button { font-size: .78rem; font-weight: 600; color: var(--text-muted); padding: 4px 8px; border-radius: 5px; transition: var(--transition); }
.filter-sidebar__title button:hover { background: var(--gray); color: var(--green); }
.filter-group { margin-bottom: 22px; }
.filter-group__title { font-size: .85rem; font-weight: 700; color: var(--text); margin-bottom: 12px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; }
.filter-group__title svg { width: 14px; height: 14px; color: var(--text-muted); transition: transform .2s; }
.filter-group.open .filter-group__title svg { transform: rotate(180deg); }
.filter-group__body { display: flex; flex-direction: column; gap: 8px; }
.filter-check { display: flex; align-items: center; gap: 9px; cursor: pointer; font-size: .85rem; color: var(--slate); transition: color .15s; }
.filter-check:hover { color: var(--green); }
.filter-check input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--green); flex-shrink: 0; }
.filter-check__count { margin-left: auto; font-size: .75rem; color: var(--text-muted); }
.price-range { display: flex; flex-direction: column; gap: 10px; }
.price-range__row { display: flex; gap: 8px; align-items: center; }
.price-range input[type="number"] { flex: 1; padding: 8px 10px; border: 1.5px solid var(--border); border-radius: 7px; font-size: .85rem; color: var(--text); transition: var(--transition); }
.price-range input:focus { border-color: var(--green); }
.filter-apply-btn { width: 100%; padding: 10px; background: var(--green); color: var(--white); border-radius: 8px; font-size: .9rem; font-weight: 600; transition: var(--transition); margin-top: 8px; }
.filter-apply-btn:hover { background: #15803d; }

/* ── SPECS TABLE ── */
.specs-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1.5px solid var(--border); }
.specs-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.specs-table th, .specs-table td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.specs-table th { background: var(--gray); font-weight: 700; color: var(--text); font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; }
.specs-table tbody tr:last-child td { border-bottom: none; }
.specs-table tbody tr:hover { background: var(--gray); }
.specs-table td:first-child { font-weight: 600; color: var(--text); white-space: nowrap; }
.specs-table .check { color: var(--green); font-weight: 700; }
.specs-table .cross { color: #ef4444; font-weight: 700; }

/* ── COMPARISON TABLE ── */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 14px 20px; border: 1px solid var(--border); text-align: center; vertical-align: top; font-size: .875rem; }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; background: var(--gray); font-weight: 600; width: 180px; }
.compare-table thead th { background: var(--green); color: var(--white); font-weight: 700; font-size: .85rem; }
.compare-table thead th:first-child { background: var(--gray); color: var(--text); }
.compare-table tbody tr:nth-child(even) td { background: #fafcff; }
.compare-table .better { color: var(--green); font-weight: 700; }

/* ── BLOG CARDS ── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow); border-color: var(--sky); transform: translateY(-3px); }
.blog-card__img { aspect-ratio: 16/9; overflow: hidden; background: var(--gray); }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.blog-card__meta { display: flex; align-items: center; gap: 12px; font-size: .78rem; color: var(--text-muted); }
.blog-card__cat { color: var(--green); font-weight: 600; }
.blog-card__title { font-size: 1.05rem; font-weight: 700; color: var(--text); line-height: 1.4; }
.blog-card__title a:hover { color: var(--green); }
.blog-card__excerpt { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }
.blog-card__readmore { margin-top: auto; font-size: .85rem; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 4px; }
.blog-card__readmore svg { width: 14px; height: 14px; transition: transform .2s; }
.blog-card:hover .blog-card__readmore svg { transform: translateX(3px); }

/* ── GUIDE CARD (horizontal) ── */
.guide-card { display: flex; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.guide-card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-2px); }
.guide-card__img { width: 200px; flex-shrink: 0; }
.guide-card__img img { width: 100%; height: 100%; object-fit: cover; }
.guide-card__body { padding: 24px; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.guide-card__body h3 { font-size: 1.05rem; margin-bottom: 0; }
.guide-card__body p  { font-size: .875rem; }

/* ── PRODUCT DETAIL ── */
.product-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-gallery__main { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 12px; }
.product-gallery__main img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.product-gallery__thumbs { display: flex; gap: 10px; }
.product-gallery__thumb { width: 70px; height: 70px; border-radius: 8px; overflow: hidden; cursor: pointer; border: 2px solid var(--border); transition: var(--transition); flex-shrink: 0; }
.product-gallery__thumb:hover, .product-gallery__thumb.active { border-color: var(--green); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info__brand { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--sky-dark); margin-bottom: 8px; }
.product-info__title { margin-bottom: 14px; }
.product-info__desc { font-size: .97rem; color: var(--text-muted); margin-bottom: 22px; line-height: 1.75; }
.product-price-block { display: flex; align-items: baseline; gap: 14px; margin-bottom: 22px; }
.product-price { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--green); }
.product-price-old { font-size: 1.2rem; color: var(--text-muted); text-decoration: line-through; }
.product-qty { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 8px; overflow: hidden; width: fit-content; margin-bottom: 18px; }
.qty-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--slate); transition: var(--transition); }
.qty-btn:hover { background: var(--gray); color: var(--green); }
.qty-val { width: 48px; height: 40px; display: flex; align-items: center; justify-content: center; font-weight: 600; border-left: 1px solid var(--border); border-right: 1px solid var(--border); }
.product-add-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.product-meta-block { background: var(--gray); border-radius: var(--radius); padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.product-meta-row { display: flex; gap: 8px; font-size: .875rem; }
.product-meta-row dt { color: var(--text-muted); min-width: 120px; }
.product-meta-row dd { color: var(--text); font-weight: 500; }

/* ── TABS ── */
.tabs-wrapper { margin-top: 40px; }
.tab-nav { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 28px; gap: 0; overflow-x: auto; }
.tab-btn { padding: 12px 22px; font-size: .9rem; font-weight: 600; color: var(--text-muted); border-bottom: 2px solid transparent; margin-bottom: -2px; transition: var(--transition); white-space: nowrap; }
.tab-btn.active { color: var(--green); border-color: var(--green); }
.tab-btn:hover:not(.active) { color: var(--slate); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── INFO BOX ── */
.info-box { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: var(--radius); padding: 16px 20px; font-size: .875rem; color: var(--green); margin-top: 20px; }
.info-box.warning { background: #fffbeb; border-color: #fde68a; color: #92400e; }
.info-box.info { background: #e0f2fe; border-color: #bae6fd; color: #0369a1; }

/* ── NEWSLETTER ── */
.newsletter-section { background: var(--slate); padding: 56px 0; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.newsletter-inner h2 { color: var(--white); margin-bottom: 6px; font-size: clamp(1.3rem,2.5vw,1.8rem); }
.newsletter-inner p  { color: rgba(255,255,255,.7); }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter-form input { padding: 12px 18px; border: none; border-radius: 8px; font-size: .95rem; min-width: 260px; color: var(--text); flex: 1; }
.newsletter-form input:focus { outline: 2px solid var(--sky); }

/* ── TRUST BAR ── */
.trust-bar { background: var(--gray); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; color: var(--slate); }
.trust-item svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 340px 1fr; gap: 40px; align-items: start; }
.contact-info-card { background: var(--slate); border-radius: var(--radius-lg); padding: 40px; }
.contact-info-card h3 { color: var(--white); margin-bottom: 6px; }
.contact-info-card > p { color: rgba(255,255,255,.7); margin-bottom: 32px; font-size: .9rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-detail__icon { width: 42px; height: 42px; background: rgba(255,255,255,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail__icon svg { width: 18px; height: 18px; color: var(--sky); }
.contact-detail__label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); margin-bottom: 3px; }
.contact-detail__value { font-size: .9rem; color: var(--white); }
.contact-detail__value a { color: var(--sky); }
.contact-form-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.contact-form-card h3 { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-control { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: .9rem; color: var(--text); background: var(--gray); transition: var(--transition); }
.form-control:focus { border-color: var(--green); background: var(--white); box-shadow: 0 0 0 3px rgba(22,101,52,.08); }
.form-control::placeholder { color: var(--gray-dark); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }
.form-success { display: none; background: var(--green-bg); border: 1.5px solid var(--green); border-radius: 10px; padding: 18px 22px; text-align: center; font-weight: 600; color: var(--green); margin-top: 16px; }
.form-success.show { display: block; }

/* ── POLICY PAGES ── */
.policy-layout { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; padding: 56px 0; }
.policy-nav { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 20px; position: sticky; top: 90px; }
.policy-nav h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.policy-nav a { display: block; padding: 8px 10px; font-size: .85rem; color: var(--slate); border-radius: 6px; transition: var(--transition); margin-bottom: 2px; }
.policy-nav a:hover, .policy-nav a.active { background: var(--green-bg); color: var(--green); }
.policy-content { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 48px; }
.policy-content h1 { font-size: 1.9rem; margin-bottom: 6px; }
.policy-date { font-size: .82rem; color: var(--text-muted); margin-bottom: 32px; display: block; }
.policy-content h2 { font-size: 1.25rem; margin: 32px 0 12px; padding-top: 20px; border-top: 1px solid var(--border); }
.policy-content h3 { font-size: 1rem; margin: 20px 0 8px; color: var(--green); }
.policy-content p  { font-size: .9rem; margin-bottom: 12px; color: var(--text-muted); }
.policy-content ul, .policy-content ol { padding-left: 20px; margin-bottom: 14px; }
.policy-content li { font-size: .9rem; color: var(--text-muted); margin-bottom: 5px; }
.policy-content ul li { list-style: disc; }
.policy-content ol li { list-style: decimal; }
.policy-content strong { color: var(--text); }
.policy-content table { width: 100%; border-collapse: collapse; font-size: .875rem; margin: 16px 0 22px; }
.policy-content table th { background: var(--slate); color: var(--white); padding: 10px 14px; text-align: left; font-size: .8rem; }
.policy-content table td { padding: 9px 14px; border-bottom: 1px solid var(--border); color: var(--text-muted); vertical-align: top; }
.policy-content table tr:nth-child(even) td { background: var(--gray); }
.policy-alert { background: #fffbeb; border: 1px solid #fde68a; border-radius: 8px; padding: 14px 18px; font-size: .875rem; color: #92400e; margin: 16px 0; }

/* ── FOOTER ── */
.site-footer { background: var(--slate); }
.footer-main { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand__logo-mark { width: 34px; height: 34px; background: var(--green); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.footer-brand__logo-mark svg { width: 18px; height: 18px; fill: var(--white); }
.footer-brand__logo-text { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--white); }
.footer-brand p { color: #94a3b8; font-size: .875rem; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-brand__contact { display: flex; flex-direction: column; gap: 10px; }
.footer-brand__contact a { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: #94a3b8; transition: var(--transition); }
.footer-brand__contact a:hover { color: var(--sky); }
.footer-brand__contact svg { width: 15px; height: 15px; color: var(--sky); flex-shrink: 0; }
.footer-col h5 { font-family: var(--font-display); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--white); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: .875rem; color: #94a3b8; transition: var(--transition); }
.footer-col a:hover { color: var(--sky); }
.footer-bottom { border-top: 1px solid #475569; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .8rem; color: #64748b; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { color: #64748b; transition: var(--transition); }
.footer-legal a:hover { color: var(--sky); }

/* ── COOKIE BANNER ── */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #1e293b; border-top: 1px solid #334155; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; z-index: 9999; transform: translateY(100%); transition: transform .35s ease; }
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: .83rem; color: #94a3b8; flex: 1; min-width: 260px; margin: 0; }
.cookie-banner a { color: var(--sky); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ── FAQ ── */
.accordion-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); font-size: .93rem; font-weight: 600; color: var(--text); transition: var(--transition); text-align: left; margin-bottom: 8px; }
.accordion-btn:hover { background: var(--gray); color: var(--green); }
.accordion-btn.open { background: var(--green-bg); color: var(--green); border-color: var(--green); border-bottom-left-radius: 0; border-bottom-right-radius: 0; margin-bottom: 0; }
.accordion-btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform .25s; }
.accordion-btn.open svg { transform: rotate(45deg); }
.accordion-body { display: none; padding: 16px 20px 20px; border: 1.5px solid var(--green); border-top: none; border-radius: 0 0 var(--radius) var(--radius); background: var(--white); font-size: .9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 8px; }
.accordion-body.open { display: block; }

/* ── PAGINATION ── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 40px; }
.page-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--border); border-radius: 8px; font-size: .875rem; color: var(--text-muted); transition: var(--transition); }
.page-btn:hover, .page-btn.active { background: var(--green); color: var(--white); border-color: var(--green); }

/* ── HAKKIMIZDA ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 420px; object-fit: cover; }
.value-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; }
.value-card:hover { border-color: var(--green); box-shadow: var(--shadow); }
.value-card__icon { width: 48px; height: 48px; background: var(--green-bg); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.value-card__icon svg { width: 22px; height: 22px; color: var(--green); }

/* ── FIYAT TAKİBİ ── */
.price-chart-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.price-bars { display: flex; align-items: flex-end; gap: 8px; height: 120px; margin: 16px 0 8px; }
.price-bar { flex: 1; border-radius: 4px 4px 0 0; background: var(--green-bg); border: 1.5px solid var(--green); transition: var(--transition); cursor: pointer; position: relative; }
.price-bar:hover { background: var(--green); }
.price-bar:hover::after { content: attr(data-price); position: absolute; top: -28px; left: 50%; transform: translateX(-50%); background: var(--slate); color: #fff; font-size: .7rem; padding: 3px 7px; border-radius: 4px; white-space: nowrap; pointer-events: none; }
.price-labels { display: flex; gap: 8px; }
.price-label { flex: 1; text-align: center; font-size: .68rem; color: var(--text-muted); }

/* ── UTILITY ── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.text-center { text-align: center; }
.text-green  { color: var(--green) !important; }
.text-muted  { color: var(--text-muted) !important; }
.fw-700      { font-weight: 700; }
.d-flex-between { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.gap-columns-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.gap-columns-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .cat-grid { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero__image { display: none; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .policy-layout { grid-template-columns: 1fr; padding: 32px 0; }
  .policy-nav { position: static; }
  .product-detail-layout { grid-template-columns: 1fr; }
  .gap-columns-3 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 700px) {
  .top-bar { display: none; }
  .header-search { display: none; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 20px; flex-wrap: wrap; }
  .newsletter-inner { flex-direction: column; }
  .trust-bar-inner { gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .gap-columns-3, .gap-columns-2 { grid-template-columns: 1fr; }
  .guide-card { flex-direction: column; }
  .guide-card__img { width: 100%; height: 180px; }
  .policy-content { padding: 24px 16px; }
  .contact-form-card, .contact-info-card { padding: 24px 16px; }
}
@media (max-width: 480px) {
  .container, .container--narrow { padding: 0 16px; }
  .section { padding: 48px 0; }
  .hero { padding: 48px 0 40px; }
  .products-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
}
