/* =========================================
   YOSAMERU.DIGITAL — Ana Stil Dosyası
   ========================================= */

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

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

:root {
  --white:       #FFFFFF;
  --emerald:     #10B981;
  --emerald-dk:  #059669;
  --emerald-lt:  #D1FAE5;
  --navy:        #1E3A8A;
  --navy-dk:     #1e2e6e;
  --slate:       #334155;
  --silver:      #E5E7EB;
  --lightgray:   #F8FAFC;
  --text:        #1F2937;
  --text-muted:  #6B7280;
  --border:      #E5E7EB;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.14);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --font-sans:   'Inter', sans-serif;
  --font-head:   'Manrope', sans-serif;
  --transition:  .22s cubic-bezier(.4,0,.2,1);
}

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

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; }

/* ---- Utility ---- */
.container   { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-sm{ max-width: 900px;  margin: 0 auto; padding: 0 24px; }
.section     { padding: 72px 0; }
.section-sm  { padding: 48px 0; }
.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }
.fw-600      { font-weight: 600; }
.fw-700      { font-weight: 700; }
.grid-2      { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3      { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4      { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.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; }
.mb-48  { margin-bottom:48px; }
.hidden { display: none !important; }
.sr-only{ position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0); }

/* ---- Headings ---- */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); line-height: 1.25; font-weight: 700; color: var(--text); }
h1 { font-size: clamp(2rem,4vw,3rem); }
h2 { font-size: clamp(1.5rem,2.8vw,2.2rem); }
h3 { font-size: clamp(1.15rem,2vw,1.4rem); }
h4 { font-size: 1.1rem; }
h5 { font-size: .95rem; }
p  { line-height: 1.7; color: var(--text-muted); }

.section-title { margin-bottom: 12px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 48px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 600; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary   { background: var(--emerald); color: var(--white); }
.btn-primary:hover { background: var(--emerald-dk); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(16,185,129,.35); }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-secondary:hover { background: var(--navy-dk); transform: translateY(-1px); }
.btn-outline   { border: 2px solid var(--emerald); color: var(--emerald); background: transparent; }
.btn-outline:hover { background: var(--emerald); color: var(--white); }
.btn-outline-navy { border: 2px solid var(--navy); color: var(--navy); background: transparent; }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-ghost  { color: var(--text-muted); padding: 10px 16px; }
.btn-ghost:hover { color: var(--emerald); background: var(--emerald-lt); border-radius: var(--radius-sm); }
.btn-sm { padding: 8px 16px; font-size: .82rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-icon { padding: 10px; border-radius: var(--radius-sm); }
.btn-icon:hover { background: var(--lightgray); }
.btn-full { width: 100%; justify-content: center; }

/* ---- Tags / Badges ---- */
.tag {
  display: inline-block; padding: 4px 10px; border-radius: 100px;
  font-size: .75rem; font-weight: 600; letter-spacing: .3px;
}
.tag-emerald { background: var(--emerald-lt); color: var(--emerald-dk); }
.tag-navy    { background: #DBEAFE; color: var(--navy); }
.tag-slate   { background: var(--silver); color: var(--slate); }
.tag-orange  { background: #FEF3C7; color: #92400E; }

/* ====================================================
   HEADER / NAV
   ==================================================== */
#site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-top {
  background: var(--navy);
  padding: 7px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.8);
}
.header-top .container { display: flex; align-items: center; justify-content: space-between; }
.header-top a { color: rgba(255,255,255,.8); }
.header-top a:hover { color: var(--white); }
.header-top-links { display: flex; gap: 20px; align-items: center; }

.header-main { padding: 14px 0; }
.header-main .container { display: flex; align-items: center; gap: 28px; }

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--emerald), var(--navy)); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 22px; height: 22px; fill: white; }
.logo-text { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--navy); }
.logo-text span { color: var(--emerald); }

.search-bar { flex: 1; display: flex; max-width: 520px; position: relative; }
.search-bar input {
  width: 100%; padding: 10px 48px 10px 16px;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-size: .9rem; font-family: inherit; background: var(--lightgray);
  transition: var(--transition);
}
.search-bar input:focus { outline: none; border-color: var(--emerald); background: var(--white); }
.search-bar button {
  position: absolute; right: 0; top: 0; height: 100%;
  padding: 0 14px; background: var(--emerald); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: white; display: flex; align-items: center;
}
.search-bar button:hover { background: var(--emerald-dk); }

.header-actions { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.header-action-btn {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 8px 12px; border-radius: var(--radius-sm);
  font-size: .7rem; color: var(--text-muted); transition: var(--transition); position: relative;
}
.header-action-btn svg { width: 22px; height: 22px; }
.header-action-btn:hover { color: var(--emerald); background: var(--lightgray); }
.badge-count {
  position: absolute; top: 4px; right: 8px;
  background: var(--emerald); color: white;
  width: 18px; height: 18px; border-radius: 50%;
  font-size: .65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.nav-main { border-top: 1px solid var(--border); background: var(--white); }
.nav-main .container { display: flex; align-items: center; }
.nav-main nav { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 13px 14px; font-size: .875rem; font-weight: 500; color: var(--slate);
  border-bottom: 3px solid transparent; transition: var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--emerald); border-bottom-color: var(--emerald); }
.nav-link svg { width: 14px; height: 14px; }

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: 8px 0; z-index: 100; opacity: 0; pointer-events: none;
  transform: translateY(8px); transition: var(--transition);
}
.dropdown:hover .dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px; font-size: .875rem; color: var(--slate);
  transition: var(--transition);
}
.dropdown-item:hover { background: var(--lightgray); color: var(--emerald); }
.dropdown-item svg { width: 16px; height: 16px; }
.dropdown-divider { border: none; border-top: 1px solid var(--border); margin: 4px 0; }

.mobile-menu-btn { display: none; padding: 8px; }
.mobile-menu-btn svg { width: 24px; height: 24px; }

/* ====================================================
   BREADCRUMB
   ==================================================== */
.breadcrumb-bar { background: var(--lightgray); padding: 12px 0; border-bottom: 1px solid var(--border); }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--text-muted); flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--emerald); }
.breadcrumb-sep { color: var(--border); font-size: .75rem; }
.breadcrumb-current { color: var(--text); font-weight: 500; }

/* ====================================================
   HERO (HOMEPAGE)
   ==================================================== */
.hero {
  position: relative; min-height: 560px;
  display: flex; align-items: center; overflow: hidden;
  background: linear-gradient(to right, rgba(30,58,138,.92) 40%, rgba(30,58,138,.4) 100%);
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  object-fit: cover; width: 100%; height: 100%;
}
.hero-content { max-width: 620px; color: white; padding: 80px 0; }
.hero-eyebrow { font-size: .85rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--emerald); margin-bottom: 16px; }
.hero-title { font-size: clamp(2rem,4.5vw,3.2rem); font-weight: 800; color: white; margin-bottom: 20px; line-height: 1.18; }
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,.82); margin-bottom: 36px; max-width: 520px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 48px; flex-wrap: wrap; }
.hero-stat-value { font-size: 1.5rem; font-weight: 800; color: var(--white); }
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,.65); margin-top: 2px; }

/* ====================================================
   CATEGORY CARDS
   ==================================================== */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px; }

.cat-card {
  border-radius: var(--radius-md); overflow: hidden;
  background: var(--white); border: 1px solid var(--border);
  transition: var(--transition); cursor: pointer; position: relative;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--emerald); }
.cat-card-img { height: 150px; overflow: hidden; }
.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.06); }
.cat-card-body { padding: 14px 16px; }
.cat-card-name { font-weight: 700; font-size: .9rem; color: var(--text); margin-bottom: 4px; }
.cat-card-count { font-size: .78rem; color: var(--text-muted); }

/* ====================================================
   PRODUCT CARDS
   ==================================================== */
.product-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: var(--transition); position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(16,185,129,.4); }

.product-img-wrap { position: relative; height: 220px; overflow: hidden; background: var(--lightgray); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-actions-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; gap: 6px; justify-content: center; padding: 12px;
  background: linear-gradient(0deg, rgba(0,0,0,.5) 0%, transparent 100%);
  transform: translateY(100%); transition: var(--transition);
}
.product-card:hover .product-actions-overlay { transform: translateY(0); }
.overlay-btn {
  background: white; padding: 8px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.overlay-btn:hover { background: var(--emerald); color: white; }
.overlay-btn svg { width: 16px; height: 16px; }

.product-body { padding: 16px; }
.product-brand { font-size: .75rem; font-weight: 600; color: var(--emerald); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.product-name { font-weight: 700; font-size: .95rem; color: var(--text); margin-bottom: 8px; line-height: 1.4; }
.product-name a:hover { color: var(--emerald); }
.product-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.stars { display: flex; gap: 2px; }
.star { color: #F59E0B; font-size: .85rem; }
.star-empty { color: var(--silver); }
.rating-count { font-size: .78rem; color: var(--text-muted); }
.product-price { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.price-now { font-size: 1.2rem; font-weight: 800; color: var(--navy); }
.price-old { font-size: .85rem; color: var(--text-muted); text-decoration: line-through; }
.price-discount { font-size: .75rem; font-weight: 700; color: #DC2626; background: #FEE2E2; padding: 2px 7px; border-radius: 100px; }

.product-footer { padding: 12px 16px; border-top: 1px solid var(--border); display: flex; gap: 8px; }
.product-footer .btn { flex: 1; font-size: .8rem; padding: 9px 10px; }

/* ====================================================
   CATEGORY PAGE LAYOUT
   ==================================================== */
.cat-page-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }

.filter-sidebar {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px; position: sticky; top: 100px;
}
.filter-title { font-size: 1rem; font-weight: 700; margin-bottom: 20px; color: var(--text); display: flex; align-items: center; justify-content: space-between; }
.filter-clear { font-size: .78rem; color: var(--emerald); font-weight: 500; cursor: pointer; }
.filter-clear:hover { text-decoration: underline; }

.filter-group { margin-bottom: 24px; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
.filter-group:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.filter-group-title {
  font-size: .85rem; font-weight: 700; color: var(--text); margin-bottom: 12px;
  display: flex; align-items: center; justify-content: space-between; cursor: pointer;
}
.filter-group-title svg { width: 14px; height: 14px; color: var(--text-muted); transition: var(--transition); }
.filter-group.collapsed .filter-group-title svg { transform: rotate(-90deg); }
.filter-group.collapsed .filter-options { display: none; }

.filter-option { display: flex; align-items: center; gap: 8px; padding: 5px 0; cursor: pointer; }
.filter-option input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--emerald); cursor: pointer; }
.filter-option label { font-size: .85rem; color: var(--text-muted); cursor: pointer; flex: 1; transition: var(--transition); }
.filter-option:hover label { color: var(--emerald); }
.filter-option-count { font-size: .75rem; color: var(--text-muted); }

.price-range { margin-top: 8px; }
.price-inputs { display: flex; gap: 8px; align-items: center; margin-top: 10px; }
.price-inputs input {
  flex: 1; padding: 8px 10px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: .82rem; font-family: inherit;
}
.price-inputs input:focus { outline: none; border-color: var(--emerald); }
.price-sep { font-size: .8rem; color: var(--text-muted); }
input[type="range"] { width: 100%; accent-color: var(--emerald); }

.products-area {}
.products-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; background: var(--lightgray); border-radius: var(--radius-sm);
  margin-bottom: 24px; flex-wrap: wrap; gap: 10px;
}
.products-count { font-size: .85rem; color: var(--text-muted); }
.products-count strong { color: var(--text); }
.toolbar-right { display: flex; align-items: center; gap: 12px; }
.sort-select {
  padding: 8px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: .85rem; font-family: inherit; background: var(--white); color: var(--text); cursor: pointer;
}
.sort-select:focus { outline: none; border-color: var(--emerald); }
.view-toggle { display: flex; gap: 4px; }
.view-btn { padding: 8px; border-radius: var(--radius-sm); color: var(--text-muted); transition: var(--transition); }
.view-btn.active, .view-btn:hover { background: var(--emerald); color: white; }
.view-btn svg { width: 16px; height: 16px; display: block; }

.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; }
.products-list .product-card { display: flex; flex-direction: row; }
.products-list .product-img-wrap { width: 200px; flex-shrink: 0; height: auto; }
.products-list .product-body { flex: 1; padding: 20px; }

/* ====================================================
   COMPARISON TABLE
   ==================================================== */
.compare-table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%; border-collapse: collapse;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
}
.compare-table th, .compare-table td {
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  font-size: .88rem; text-align: left; vertical-align: top;
}
.compare-table th { background: var(--navy); color: white; font-weight: 600; font-family: var(--font-head); }
.compare-table tr:nth-child(even) td { background: var(--lightgray); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { font-weight: 600; color: var(--slate); background: #f1f5f9 !important; }
.check-yes { color: var(--emerald); font-weight: 700; }
.check-no  { color: #EF4444; }

/* ====================================================
   BLOG
   ==================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }

.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden; transition: var(--transition);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card-img { height: 210px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 20px; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-card-cat { font-size: .75rem; font-weight: 600; color: var(--emerald); text-transform: uppercase; letter-spacing: .5px; }
.blog-card-date { font-size: .78rem; color: var(--text-muted); }
.blog-card-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.4; }
.blog-card-title a:hover { color: var(--emerald); }
.blog-card-excerpt { font-size: .85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.blog-card-read { font-size: .82rem; font-weight: 600; color: var(--emerald); display: flex; align-items: center; gap: 4px; }
.blog-card-read:hover { gap: 8px; }

/* ====================================================
   FEATURE BLOCKS
   ==================================================== */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }

.feature-card {
  padding: 28px 24px; border-radius: var(--radius-md);
  background: var(--white); border: 1px solid var(--border);
  transition: var(--transition); text-align: center;
}
.feature-card:hover { border-color: var(--emerald); box-shadow: var(--shadow-sm); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--emerald-lt); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.feature-icon svg { width: 26px; height: 26px; color: var(--emerald); }
.feature-card h4 { margin-bottom: 8px; font-size: 1rem; }
.feature-card p { font-size: .85rem; }

/* ====================================================
   TRUST STRIP
   ==================================================== */
.trust-strip { background: var(--navy); padding: 32px 0; }
.trust-items { display: flex; align-items: center; justify-content: space-around; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; color: white; }
.trust-item-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-item-icon svg { width: 22px; height: 22px; }
.trust-item-title { font-size: .9rem; font-weight: 700; }
.trust-item-sub   { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 2px; }

/* ====================================================
   PROMO BANNER
   ==================================================== */
.promo-banner {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--navy), #3b5bdb);
  padding: 56px 48px; color: white;
}
.promo-banner-img {
  position: absolute; right: 0; top: 0; height: 100%; width: 50%;
  object-fit: cover; opacity: .35;
}
.promo-banner-content { position: relative; z-index: 1; max-width: 500px; }
.promo-banner h2 { color: white; margin-bottom: 14px; }
.promo-banner p { color: rgba(255,255,255,.8); margin-bottom: 28px; }

/* ====================================================
   PRODUCT DETAIL PAGE
   ==================================================== */
.product-detail-layout { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start; }

.product-gallery {}
.gallery-main { border-radius: var(--radius-md); overflow: hidden; margin-bottom: 12px; background: var(--lightgray); }
.gallery-main img { width: 100%; height: 420px; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; }
.gallery-thumb {
  width: 80px; height: 70px; border-radius: var(--radius-sm);
  overflow: hidden; cursor: pointer; border: 2px solid var(--border); flex-shrink: 0;
}
.gallery-thumb.active { border-color: var(--emerald); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info {}
.product-info h1 { font-size: 1.6rem; margin-bottom: 10px; }
.product-info .product-rating { margin-bottom: 16px; }
.product-badge-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.product-price-box { background: var(--lightgray); border-radius: var(--radius-md); padding: 20px; margin: 20px 0; }
.product-price-box .price-now { font-size: 2rem; }
.product-variants { margin-bottom: 20px; }
.variant-title { font-size: .85rem; font-weight: 600; margin-bottom: 10px; }
.variant-options { display: flex; gap: 8px; flex-wrap: wrap; }
.variant-btn {
  padding: 8px 16px; border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-size: .82rem; font-weight: 500; transition: var(--transition); cursor: pointer;
  background: var(--white);
}
.variant-btn.active, .variant-btn:hover { border-color: var(--emerald); color: var(--emerald); background: var(--emerald-lt); }
.qty-selector { display: flex; align-items: center; gap: 0; margin-bottom: 20px; }
.qty-btn { width: 36px; height: 36px; border: 1px solid var(--border); background: var(--lightgray); font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.qty-btn:hover { background: var(--emerald); color: white; border-color: var(--emerald); }
.qty-input { width: 52px; height: 36px; border: 1px solid var(--border); text-align: center; font-size: .95rem; font-family: inherit; }
.qty-input:focus { outline: none; }
.qty-btn:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.qty-btn:last-child  { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.add-to-cart-row { display: flex; gap: 10px; }
.product-meta-list { margin-top: 24px; }
.product-meta-item { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: .85rem; }
.product-meta-item:last-child { border-bottom: none; }
.product-meta-item svg { width: 16px; height: 16px; color: var(--emerald); flex-shrink: 0; }
.product-meta-label { font-weight: 600; color: var(--text); min-width: 120px; }

.product-tabs { margin-top: 48px; }
.tabs-nav { display: flex; gap: 0; border-bottom: 2px solid var(--border); flex-wrap: wrap; }
.tab-btn {
  padding: 12px 24px; font-size: .9rem; font-weight: 600; color: var(--text-muted);
  border-bottom: 3px solid transparent; margin-bottom: -2px; transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover { color: var(--emerald); border-bottom-color: var(--emerald); }
.tab-panel { display: none; padding: 32px 0; }
.tab-panel.active { display: block; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table td { padding: 12px 16px; font-size: .88rem; }
.spec-table td:first-child { font-weight: 600; color: var(--slate); width: 240px; background: var(--lightgray); }
.review-item { padding: 20px 0; border-bottom: 1px solid var(--border); }
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; flex-wrap: wrap; }
.reviewer-name { font-weight: 700; font-size: .9rem; }
.review-date { font-size: .78rem; color: var(--text-muted); }
.review-text { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }

/* ====================================================
   CART / CHECKOUT
   ==================================================== */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td { padding: 16px; border-bottom: 1px solid var(--border); font-size: .9rem; vertical-align: middle; }
.cart-table th { background: var(--lightgray); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .5px; color: var(--slate); }
.cart-product { display: flex; align-items: center; gap: 14px; }
.cart-product-img { width: 70px; height: 70px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; background: var(--lightgray); }
.cart-product-name { font-weight: 600; font-size: .9rem; }
.cart-product-sku  { font-size: .78rem; color: var(--text-muted); }
.cart-total-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; position: sticky; top: 100px; }
.total-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.total-row:last-of-type { border-bottom: none; }
.total-row.grand { font-weight: 800; font-size: 1.1rem; color: var(--navy); }
.coupon-row { display: flex; gap: 8px; margin: 16px 0; }
.coupon-row input { flex: 1; padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: .85rem; font-family: inherit; }
.coupon-row input:focus { outline: none; border-color: var(--emerald); }

/* ====================================================
   FORMS
   ==================================================== */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 7px; color: var(--text); }
.form-required { color: #EF4444; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 12px 16px; border: 2px solid var(--border);
  border-radius: var(--radius-sm); font-size: .9rem; font-family: inherit;
  background: var(--white); color: var(--text); transition: var(--transition);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--emerald); background: var(--white);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: .78rem; color: var(--text-muted); margin-top: 5px; }
.form-error { font-size: .78rem; color: #EF4444; margin-top: 5px; }

/* Success message */
.success-message {
  display: none; background: var(--emerald-lt); border: 2px solid var(--emerald);
  border-radius: var(--radius-md); padding: 20px 24px; text-align: center;
  color: var(--emerald-dk); font-weight: 600;
}
.success-message.show { display: block; }
.success-message svg { width: 32px; height: 32px; margin: 0 auto 10px; display: block; }

/* ====================================================
   ABOUT / INFO PAGES
   ==================================================== */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-intro-img { border-radius: var(--radius-lg); overflow: hidden; }
.about-intro-img img { width: 100%; height: 420px; object-fit: cover; }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 32px; }
.about-stat { text-align: center; padding: 24px; background: var(--lightgray); border-radius: var(--radius-md); }
.about-stat-val { font-size: 2rem; font-weight: 800; color: var(--emerald); }
.about-stat-lbl { font-size: .82rem; color: var(--text-muted); margin-top: 4px; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.team-card { text-align: center; padding: 28px 20px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px; background: var(--silver); }
.team-name { font-weight: 700; font-size: .95rem; margin-bottom: 4px; }
.team-role { font-size: .8rem; color: var(--emerald); font-weight: 600; }

/* ====================================================
   CONTACT PAGE
   ==================================================== */
.contact-layout { display: grid; grid-template-columns: 380px 1fr; gap: 48px; align-items: start; }
.contact-info-card { background: var(--navy); color: white; border-radius: var(--radius-lg); padding: 40px; }
.contact-info-card h3 { color: white; margin-bottom: 24px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.contact-info-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label { font-size: .78rem; color: rgba(255,255,255,.6); margin-bottom: 4px; }
.contact-info-value { font-size: .9rem; font-weight: 600; }
.contact-info-value a { color: white; }

.contact-hours { background: rgba(255,255,255,.08); border-radius: var(--radius-sm); padding: 16px; margin-top: 24px; }
.contact-hours h5 { color: white; margin-bottom: 12px; font-size: .9rem; }
.hours-row { display: flex; justify-content: space-between; font-size: .82rem; color: rgba(255,255,255,.75); padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.hours-row:last-child { border-bottom: none; }

/* ====================================================
   POLICY PAGES
   ==================================================== */
.policy-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: start; }
.policy-nav { position: sticky; top: 100px; background: var(--lightgray); border-radius: var(--radius-md); padding: 20px; }
.policy-nav-title { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--text-muted); margin-bottom: 12px; }
.policy-nav-link { display: block; padding: 8px 12px; border-radius: var(--radius-sm); font-size: .85rem; color: var(--text-muted); transition: var(--transition); margin-bottom: 2px; }
.policy-nav-link:hover, .policy-nav-link.active { background: var(--emerald-lt); color: var(--emerald-dk); font-weight: 600; }

.policy-content { max-width: 780px; }
.policy-header { margin-bottom: 40px; }
.policy-header h1 { margin-bottom: 10px; }
.policy-date { font-size: .85rem; color: var(--text-muted); }
.policy-section { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.policy-section:last-child { border-bottom: none; }
.policy-section h2 { font-size: 1.25rem; margin-bottom: 16px; color: var(--navy); }
.policy-section h3 { font-size: 1rem; margin-bottom: 10px; margin-top: 20px; color: var(--slate); }
.policy-section p { margin-bottom: 14px; font-size: .9rem; line-height: 1.8; color: var(--text-muted); }
.policy-section ul, .policy-section ol { padding-left: 20px; margin-bottom: 14px; }
.policy-section li { font-size: .9rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 6px; list-style-type: disc; }
.policy-section ol li { list-style-type: decimal; }
.policy-section a { color: var(--emerald); text-decoration: underline; }
.policy-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: .88rem; }
.policy-table th, .policy-table td { padding: 10px 14px; border: 1px solid var(--border); }
.policy-table th { background: var(--lightgray); font-weight: 700; }

/* ====================================================
   SITEMAP
   ==================================================== */
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 32px; }
.sitemap-section {}
.sitemap-section-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--emerald); }
.sitemap-link { display: flex; align-items: center; gap: 6px; padding: 6px 0; font-size: .88rem; color: var(--text-muted); border-bottom: 1px solid var(--border); transition: var(--transition); }
.sitemap-link:hover { color: var(--emerald); padding-left: 6px; }
.sitemap-link svg { width: 12px; height: 12px; flex-shrink: 0; }

/* ====================================================
   NEWSLETTER
   ==================================================== */
.newsletter-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1e40af 100%);
  padding: 56px 0; color: white;
}
.newsletter-wrap { max-width: 560px; margin: 0 auto; text-align: center; }
.newsletter-wrap h2 { color: white; margin-bottom: 12px; }
.newsletter-wrap p { color: rgba(255,255,255,.75); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  flex: 1; padding: 13px 18px; border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,.2); background: rgba(255,255,255,.12);
  color: white; font-size: .9rem; font-family: inherit;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form input:focus { outline: none; border-color: var(--emerald); background: rgba(255,255,255,.2); }

/* ====================================================
   FOOTER
   ==================================================== */
.footer { background: #0F172A; color: rgba(255,255,255,.8); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-logo .logo-text { color: white; }
.footer-desc { font-size: .85rem; line-height: 1.8; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 10px; }
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: var(--emerald); }
.footer-contact-item a { color: rgba(255,255,255,.7); }
.footer-contact-item a:hover { color: var(--emerald); }

.footer-col-title { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: white; margin-bottom: 18px; }
.footer-link { display: block; font-size: .84rem; color: rgba(255,255,255,.55); padding: 5px 0; transition: var(--transition); }
.footer-link:hover { color: var(--emerald); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copyright { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: .8rem; color: rgba(255,255,255,.4); transition: var(--transition); }
.footer-legal a:hover { color: var(--emerald); }

/* ====================================================
   COOKIE BANNER
   ==================================================== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #0F172A; color: white; padding: 18px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  border-top: 3px solid var(--emerald);
  transform: translateY(100%); transition: .4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: .85rem; color: rgba(255,255,255,.8); flex: 1; min-width: 240px; }
.cookie-banner a { color: var(--emerald); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ====================================================
   PAGE HERO (inner pages)
   ==================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1e40af 100%);
  padding: 48px 0; color: white;
}
.page-hero h1 { color: white; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 600px; }

/* ====================================================
   MISC
   ==================================================== */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 16px; font-size: .88rem; }
.alert-success { background: var(--emerald-lt); color: var(--emerald-dk); border: 1px solid var(--emerald); }
.alert-info    { background: #DBEAFE; color: var(--navy); border: 1px solid #93C5FD; }
.alert-warning { background: #FEF3C7; color: #92400E; border: 1px solid #FCD34D; }

.skeleton { background: linear-gradient(90deg, var(--silver) 25%, #f0f0f0 50%, var(--silver) 75%); background-size: 200% 100%; animation: skeleton-wave 1.4s infinite; border-radius: var(--radius-sm); }
@keyframes skeleton-wave { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

.tooltip { position: relative; }
.tooltip::after {
  content: attr(data-tip); position: absolute; bottom: calc(100% + 6px); left: 50%;
  transform: translateX(-50%); background: #1F2937; color: white; padding: 5px 10px;
  border-radius: 5px; font-size: .75rem; white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity .2s; z-index: 10;
}
.tooltip:hover::after { opacity: 1; }

.pagination { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.page-btn {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 500; color: var(--text-muted);
  border: 1px solid var(--border); transition: var(--transition);
}
.page-btn:hover, .page-btn.active { background: var(--emerald); color: white; border-color: var(--emerald); }
.page-ellipsis { color: var(--text-muted); padding: 0 4px; }

.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--emerald); color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); transition: var(--transition);
  opacity: 0; pointer-events: none;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--emerald-dk); transform: translateY(-2px); }
.back-to-top svg { width: 20px; height: 20px; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; padding: 18px 0; display: flex; align-items: center; justify-content: space-between;
  font-weight: 600; font-size: .95rem; color: var(--text); cursor: pointer;
  transition: var(--transition); gap: 16px;
}
.faq-question:hover { color: var(--emerald); }
.faq-icon { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-icon { background: var(--emerald); border-color: var(--emerald); color: white; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner { padding: 0 0 20px; font-size: .9rem; color: var(--text-muted); line-height: 1.8; }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .product-detail-layout { grid-template-columns: 1fr; }
  .cat-page-layout { grid-template-columns: 220px 1fr; gap: 24px; }
  .about-intro { gap: 36px; }
}

@media (max-width: 900px) {
  .cat-page-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-nav { position: static; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .about-intro { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero-content { padding: 60px 0; }
  .hero-stats { gap: 20px; }
  .header-top .container { flex-direction: column; gap: 6px; }
  .search-bar { max-width: 100%; }
  .mobile-menu-btn { display: flex; }
  .nav-main { display: none; }
  .nav-main.open { display: block; }
  .nav-main nav { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0; }
  .nav-link { border-bottom: 1px solid var(--border); border-left: 3px solid transparent; }
  .nav-link.active, .nav-link:hover { border-left-color: var(--emerald); border-bottom-color: var(--border); }
  .dropdown-menu { position: static; opacity: 1; pointer-events: all; transform: none; box-shadow: none; border: none; background: var(--lightgray); border-radius: 0; padding: 0; }
  .promo-banner { padding: 36px 28px; }
  .promo-banner-img { display: none; }
  .trust-items { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .newsletter-form { flex-direction: column; }
  .add-to-cart-row { flex-direction: column; }
  .products-list .product-card { flex-direction: column; }
  .products-list .product-img-wrap { width: 100%; height: 200px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .container { padding: 0 16px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.35rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cart-table { font-size: .78rem; }
  .cart-table th, .cart-table td { padding: 10px 8px; }
}

/* auto-fix: structural classes */
.footer-col { }
.footer-col h5,.footer-col .footer-heading{font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:1.5px;margin-bottom:14px;opacity:.65;}
.footer-col ul{padding:0;list-style:none} .footer-col li{margin-bottom:7px}
.footer-brand { }
.footer-brand .logo-text,.footer-brand .site-logo__name{color:#fff}
.cerez-banner,.cookie-banner{position:fixed;bottom:0;left:0;right:0;background:#1a1a2e;color:#fff;padding:16px 24px;z-index:9999;display:none}
