/* ============================================
   KT GASKET THEME - HTML DOSYASINA %100 UYUMLU
   HTML dosyasındaki yapıya birebir uyumlu
   ============================================ */

:root {
  --bg: #f6f8fb;
  --surface: #fff;
  --text: #0b1e3a;
  --muted: #6b7586;
  --border: #e3e8f0;
  --primary: #0a66c2;
  --radius: 12px;
  --shadow: 0 8px 28px rgba(8,24,66,.08);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu;
  line-height: 1.45;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 14px;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   CONTAINER - HTML DOSYASINA UYUMLU
   ============================================ */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}

/* ============================================
   HEADER - PUBLIC & B2B VIEWS
   ============================================ */
header {
  background: #fff;
  box-shadow: 0 8px 28px rgba(8,24,66,.08);
  position: sticky;
  top: 0;
  z-index: 20;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}

.header-row {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 900;
  color: #0b1e3a;
}

.logo img {
  height: 36px;
  width: auto;
}

.search {
  flex: 1;
  display: flex;
  gap: 8px;
}

.search input {
  flex: 1;
  border: 1px solid #e3e8f0;
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  outline: none;
  font-family: inherit;
  font-size: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0a66c2;
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 0.55rem 0.9rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(8,24,66,.08);
}

.btn.ghost {
  background: transparent;
  color: #0a66c2;
  border: 1px solid #0a66c2;
}

.btn.secondary {
  background: #e53935;
}

/* Public View Actions */
.actions {
  display: flex;
  gap: 10px;
}

/* B2B View Quick Links */
.quick-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.quick-links .ql {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  background: #f0f4ff;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  color: #0a66c2;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
}

.quick-links .ql:hover {
  background: #e3edff;
}

/* Navigation */
nav.main {
  background: #0a2a52;
}

nav.main .container {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 10px 16px;
}

nav.main a {
  color: #eaf2ff;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

nav.main a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ============================================
   HERO SECTION - HTML DOSYASINA UYUMLU
   ============================================ */
.hero {
  background: linear-gradient(135deg, #0a2a52 0%, #0a66c2 60%, #0fb8ff);
  color: #fff;
}

.hero .container {
  display: grid;
  gap: 8px;
  align-items: center;
  padding: 10px 16px; /* compressed */
}

.hero h1 {
  margin: 0;
  font-size: 1.75rem; /* bigger slogan */
  line-height: 1.15;
  letter-spacing: 0.1px;
}

.hero p {
  margin: 0;
  color: #e5f1ff;
  font-size: 0.95rem;
}

.kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 2px;
}

.kpi {
  background: #ffffff12;
  border: 1px solid #ffffff2a;
  padding: 8px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
}

.kpi div {
  font-weight: 900; /* darker/bolder KPI */
}

.kpi small {
  opacity: 0.95;
  font-weight: 600;
}

/* ============================================
   ÜRÜN FİLTRE ŞERİDİ - KTG ÖZEL
   ============================================ */
.filter-strip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 12px 0;
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
  gap: 10px;
  padding: 12px;
}

.filter-row select,
.filter-row input {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  font-size: 14px;
  background: var(--surface);
  color: var(--text);
}

.filter-row select:focus,
.filter-row input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.1);
}

.filter-row .btn {
  padding: 0.6rem 0.9rem;
  white-space: nowrap;
}

/* ============================================
   MANŞET SLIDER - HTML DOSYASINA UYUMLU
   ============================================ */
.manset {
  margin: 12px 0;
}

.slider {
  position: relative;
  background: #fff;
  border: 1px solid #e3e8f0;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(8,24,66,.08);
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.slide {
  min-width: 100%;
}

.slide img,
.slide video {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slider .nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.slider button {
  pointer-events: auto;
  background: rgba(11,30,58,.55);
  border: 0;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.slider .dots {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.slider .dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: #fff;
  opacity: 0.5;
  cursor: pointer;
}

.slider .dots button.active {
  opacity: 1;
}

/* ============================================
   FILTER STRIP - HTML DOSYASINA UYUMLU
   ============================================ */
.filter-strip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 0;
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
  gap: 10px;
  padding: 12px;
}

.filter-row select,
.filter-row input {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid var(--border);
  border-radius: 10px;
}

/* ============================================
   GRID SYSTEM - HTML DOSYASINA UYUMLU
   ============================================ */
.grid {
  display: grid;
  gap: 16px;
}

.grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}

.card h3 {
  margin: 0.2rem 0 1rem;
}

/* ============================================
   KATEGORI KARTLARI - HTML DOSYASINA UYUMLU
   ============================================ */
.card .muted {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* ============================================
   MARKALAR GRID - HTML DOSYASINA UYUMLU
   ============================================ */
.brands {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.brand {
  height: 48px;
  border: 1px dashed var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #6b7586;
}

.brand img {
  max-height: 40px;
  max-width: 100%;
  object-fit: contain;
}

/* ============================================
   URUN TABLOSU - HTML DOSYASINA UYUMLU (AUTH)
   ============================================ */
.fastsearch {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.fastsearch input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem;
}

.table-wrap {
  overflow: auto;
  max-height: 60vh;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}

thead th {
  font-size: 0.85rem;
  text-align: left;
  color: #31425b;
  padding: 10px 12px;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
}

tbody tr {
  background: var(--surface);
  border: 1px solid var(--border);
}

tbody td {
  padding: 12px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

tbody tr:first-child td {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

tbody tr:last-child td {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

tbody td.price {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.row-accent {
  background: #fffbe6;
}

.actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.qty {
  width: 60px;
  padding: 0.45rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  text-align: center;
}

.tooltip {
  position: relative;
}

.tooltip .tip {
  position: absolute;
  z-index: 5;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% + 10px);
  min-width: 260px;
  background: #1d2638;
  color: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 10px;
  display: none;
}

.tooltip:hover .tip {
  display: block;
}

.tip table {
  border-spacing: 0;
  width: 100%;
}

.tip td {
  padding: 6px 8px;
  border-color: #30405f;
}

.thumb img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
}

/* ============================================
   SEPET OZETI BALONU - HTML DOSYASINA UYUMLU
   ============================================ */
#cartSummary {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  background: #0b1e3a;
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(8,24,66,.25);
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ============================================
   IMAGE MODAL - HTML DOSYASINA UYUMLU
   ============================================ */
.img-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.img-modal .backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
}

.img-modal img {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* ============================================
   RESPONSIVE - HTML DOSYASINA UYUMLU
   ============================================ */
@media (max-width: 960px) {
  .grid.cols-3 {
    grid-template-columns: 1fr;
  }
  .brands {
    grid-template-columns: repeat(3, 1fr);
  }
  .filter-row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 8px;
  }
}

@media (max-width: 768px) {
  .filter-row {
    grid-template-columns: 1fr 1fr;
    row-gap: 8px;
  }
  .brands {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .filter-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .brands {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   CHIP STYLES - HTML DOSYASINA UYUMLU
   ============================================ */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.8rem;
}

.chip.success {
  background: #e9f6ec;
  color: #2e7d32;
}

.chip.warning {
  background: #fff4e5;
  color: #f57c00;
}

.chip.danger {
  background: #ffebee;
  color: #c62828;
}

.chip.muted {
  background: #eef2f7;
  color: #6b7586;
}

.badge {
  display: inline-block;
  background: #e53935;
  color: #fff;
  border-radius: 6px;
  padding: 0.2rem 0.45rem;
  font-size: 0.75rem;
}

.brands {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.brands .brand {
  height: 48px;
  border: 1px dashed var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #6b7586;
}

.brands img {
  max-height: 40px;
  max-width: 100%;
  object-fit: contain;
}

/* ============================================
   FOOTER - HTML DOSYASINA UYUMLU
   ============================================ */
footer {
  background: #0b1e3a;
  color: #c9d3ea;
  margin-top: auto;
}

footer a {
  color: #d7e3ff;
}

/* ============================================
   FOOTER - ESKİ QUKA YAPISINA UYUMLU
   ============================================ */

/* Pazaryeri Kartları */
.stores {
  background: #f8f9fa;
  padding: 20px 0;
}

.stores .cards {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.stores .card {
  flex: 1;
  min-width: 150px;
  max-width: 200px;
}

.stores .card img {
  height: 60px;
  object-fit: contain;
}

/* Footer Üst Linkler */
.footer-links {
  background: #0a2a52;
  padding: 15px 0;
  text-align: center;
}

.footer-links a {
  color: #eaf2ff;
  text-decoration: none;
  margin: 0 20px;
  font-weight: 500;
}

.footer-links a:hover {
  color: #fff;
}

/* Ana Footer İçerik */
.bb {
  background: #0b1e3a;
  color: #c9d3ea;
  padding: 20px 0;
  max-height: 200px;
  overflow: hidden;
}

.bb .title {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  cursor: pointer;
}

.bb .fs ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bb .fs li {
  margin-bottom: 5px;
}

.bb .fs a {
  color: #c9d3ea;
  text-decoration: none;
  font-size: 12px;
}

.bb .fs a:hover {
  color: #fff;
}

/* Logo Alanı */
.logo-area {
  margin-bottom: 10px;
}

.logo-area img {
  max-height: 40px;
}

/* İletişim Bilgileri */
.contact-info {
  margin-bottom: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  color: #c9d3ea;
  font-size: 12px;
}

.contact-item i {
  margin-right: 10px;
  width: 16px;
  color: #4a90e2;
}

.contact-item a {
  color: #c9d3ea;
  text-decoration: none;
}

.contact-item a:hover {
  color: #fff;
}

/* Sosyal Medya */
.social-media {
  margin: 10px 0;
}

.social-media-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 12px;
}

.social-media a {
  display: inline-block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  margin-right: 8px;
  text-decoration: none;
  color: #fff;
  font-size: 12px;
}

.social-media .fb { background: #3b5998; }
.social-media .tw { background: #1da1f2; }
.social-media .ins { background: #e4405f; }
.social-media .yt { background: #ff0000; }
.social-media .lnk { background: #0077b5; }
.social-media .pnt { background: #bd081c; }

.social-media a:hover {
  opacity: 0.8;
}

/* Mobil Uygulamalar */
.mobile-app-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}

.mobile-app img {
  height: 40px;
  margin-right: 10px;
}

/* Newsletter */
.newsletter-title, .sms-newsletter-content .newsletter-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 12px;
}

.newsletter-form, .sms-newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-input, .form-phone-control {
  flex: 1;
  padding: 6px;
  border: 1px solid #1c2f57;
  background: #1a2d4a;
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
}

.newsletter-input::placeholder, .form-phone-control::placeholder {
  color: #8a9ba8;
}

.btn-submit {
  background: #4a90e2;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  font-size: 12px;
}

.btn-submit:hover {
  background: #357abd;
}

/* Alt Bar */
.bar {
  background: #0a1a2e;
  border-top: 1px solid #1c2f57;
  padding: 8px 0;
  color: #8a9ba8;
  font-size: 11px;
}

.right-image img {
  max-height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-links a {
    display: block;
    margin: 5px 0;
  }
  
  .bb .row {
    flex-direction: column;
  }
  
  .bb .col-md-8, .bb .col-md-4 {
    width: 100%;
    margin-bottom: 30px;
  }
  
  .bb .col-md-4 {
    padding-right: 15px !important;
  }
  
  .newsletter-form, .sms-newsletter-form {
    flex-direction: column;
  }
  
  .social-media a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: 15px;
  }
}

/* ============================================
   RESPONSIVE - HTML DOSYASINA UYUMLU
   ============================================ */
@media (max-width: 960px) {
  .grid.cols-3 {
    grid-template-columns: 1fr;
  }
  .kpis {
    grid-template-columns: repeat(2, 1fr);
  }
  .slide img,
  .slide video {
    height: 160px;
  }
}

/* Mobile Breakpoints */
@media (max-width: 768px) {
  .header-row {
    flex-wrap: wrap;
  }
  .logo {
    order: 1;
  }
  .search {
    order: 3;
    width: 100%;
  }
  .quick-links {
    order: 2;
    width: 100%;
    justify-content: space-between;
  }
  nav.main .nav-container {
    flex-wrap: wrap;
    row-gap: 6px;
  }
  .hero .container {
    gap: 6px;
    padding: 12px 16px;
  }
  .hero h1 {
    font-size: 1.4rem;
  }
  .hero p {
    font-size: 0.9rem;
  }
  .kpis {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-top: 4px;
  }
  .slide img,
  .slide video {
    height: 140px;
  }
  .filter-row {
    grid-template-columns: 1fr 1fr;
    row-gap: 8px;
  }
  .grid.cols-3 {
    grid-template-columns: 1fr;
  }
  .brands {
    grid-template-columns: repeat(3, 1fr);
  }
  .btn {
    padding: 0.5rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .logo span {
    display: none; /* sadece amblem */
  }
  .quick-links {
    gap: 8px;
  }
  .quick-links .btn {
    flex: 1;
    justify-content: center;
  }
  nav.main .nav-container {
    overflow-x: auto;
    white-space: nowrap;
  }
  .slide img,
  .slide video {
    height: 120px;
  }
  .kpis {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .filter-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .brands {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   PRODUCT CARDS - HTML DOSYASINA UYUMLU
   ============================================ */
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  transition: all 0.2s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(8,24,66,.12);
}

.product-thumb {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.product-title {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.product-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.product-price {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

/* ============================================
   TABLES - HTML DOSYASINA UYUMLU
   ============================================ */
.table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
}

.table-wrap th {
  background: #f8f9fa;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.table-wrap td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.table-wrap tr:hover {
  background: #f8f9fa;
}

/* ============================================
   FORMS - HTML DOSYASINA UYUMLU
   ============================================ */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--text);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.1);
}

/* ============================================
   UTILITY CLASSES - HTML DOSYASINA UYUMLU
   ============================================ */
.text-center {
  text-align: center;
}

.text-muted {
  color: var(--muted);
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }

.p-0 { padding: 0; }
.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

.w-full { width: 100%; }
.h-full { height: 100%; }

/* ============================================
   LOGIN/AUTH PAGES - HTML DOSYASINA UYUMLU
   ============================================ */
.login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 20px;
}

.login-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  width: 100%;
  max-width: 400px;
}

.panel-head {
  text-align: center;
  margin-bottom: 24px;
}

.panel-head strong {
  font-size: 1.25rem;
  color: var(--text);
}

.panel-head .hint {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 4px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.login-form label {
  font-weight: 600;
  color: var(--text);
}

.control {
  position: relative;
}

.login-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--muted);
}

.control input {
  width: 100%;
  padding: 12px 12px 12px 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.control input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.1);
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.submit-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.submit-btn:hover {
  background: #0a4f96;
  transform: translateY(-1px);
}

.login-footer-text {
  text-align: center;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.login-footer-text .link {
  color: var(--primary);
  font-weight: 600;
}

/* ============================================
   CART/CHECKOUT PAGES - HTML DOSYASINA UYUMLU
   ============================================ */
.cart-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  margin: 20px 0;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-details {
  flex: 1;
}

.cart-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.cart-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.cart-price {
  font-weight: 700;
  color: var(--primary);
}

.cart-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qty-input {
  width: 60px;
  padding: 6px 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  text-align: center;
}

.remove-btn {
  background: #dc3545;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.8rem;
  cursor: pointer;
}

.cart-summary {
  background: #f8f9fa;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  margin-top: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.summary-row.total {
  font-weight: 700;
  font-size: 1.1rem;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 12px;
}

/* ============================================
   ACCOUNT PAGES - HTML DOSYASINA UYUMLU
   ============================================ */
.account-wrap {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 24px;
  margin: 20px 0;
}

.account-sidebar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.account-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.account-menu li {
  margin-bottom: 8px;
}

.account-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--text);
  transition: all 0.2s ease;
}

.account-menu a:hover,
.account-menu a.active {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
}

.account-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

/* ============================================
   RESPONSIVE - FİLTRE ŞERİDİ
   ============================================ */
@media (max-width: 768px) {
  .filter-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  
  .filter-row .btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .filter-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ============================================
   RESPONSIVE ACCOUNT
   ============================================ */
@media (max-width: 768px) {
  .account-wrap {
    grid-template-columns: 1fr;
  }
  
  .account-sidebar {
    order: 2;
  }
  
  .account-content {
    order: 1;
  }
}