/* ============================================================
   Ankara Kartvizit - Ana Stylesheet
   Renk Paleti: Kırmızı #E63329 | Mavi #1A5FA8 | Koyu #1a1a2e
   ============================================================ */

:root {
  --red:    #E63329;
  --red-dk: #c0271e;
  --blue:   #1A5FA8;
  --blue-lt:#2a7fd4;
  --blue-dk:#0d3d6e;
  --dark:   #1a1a2e;
  --gray:   #6c757d;
  --light:  #f8f9fc;
  --border: #e0e4ed;
  --white:  #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,.08);
  --radius: 8px;
  --transition: .25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }

body {
  font-family: 'Segoe UI', 'Open Sans', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  background: var(--white);
}

a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red); }

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

/* ---- TOPBAR ---- */
.topbar {
  background: var(--dark);
  color: #aaa;
  font-size: 13px;
  padding: 6px 0;
}
.topbar a { color: #ccc; }
.topbar a:hover { color: var(--white); }
.topbar .container { display: flex; justify-content: space-between; align-items: center; }

/* ---- HEADER ---- */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  position: sticky;
  top: 0;
  z-index: 1250;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 20px;
}
.site-logo { display: flex; align-items: center; gap: 10px; }
.site-logo .logo-text { font-size: 24px; font-weight: 800; line-height: 1.1; }
.site-logo .logo-text .red   { color: var(--red); }
.site-logo .logo-text .blue  { color: var(--blue); }

/* ---- NAV ---- */
.site-nav ul { list-style: none; display: flex; gap: 4px; align-items: center; }
.site-nav > ul > li { position: static; }
.site-nav > ul > li > a {
  display: block;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.site-nav > ul > li > a:hover,
.site-nav > ul > li > a.active {
  background: var(--blue);
  color: var(--white);
}
.nav-quote-btn {
  background: var(--blue) !important;
  color: var(--white) !important;
  border-radius: var(--radius) !important;
  padding: 8px 16px !important;
}
.nav-quote-btn:hover { background: var(--blue-dk) !important; color: #fff !important; }
.nav-agency-btn {
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: var(--radius) !important;
  padding: 8px 16px !important;
}
.nav-agency-btn:hover { background: var(--red-dk) !important; }

/* ---- MEGA MENÜ ---- */
.mega-parent { position: static !important; }
.mega-trigger { cursor: pointer; }
.mega-arrow { font-size: 10px; margin-left: 4px; }

.mega-menu {
  display: none;
  position: fixed;
  top: var(--header-h, 76px);
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  border-top: 3px solid var(--red);
  z-index: 999;
  padding: 28px 0;
}
.mega-menu.open { display: block; }

.mega-inner {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 24px;
  align-items: start;
}
.mega-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 16px;
}
.mega-col { display: flex; flex-direction: column; }

.mega-link {
  display: block;
  padding: 7px 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  line-height: 1.3;
}
.mega-link:hover { background: var(--light); color: var(--red); }
.mega-sub {
  font-weight: 400;
  font-size: 12.5px;
  color: #666;
  padding-left: 18px;
}

.mega-banner {
  background: linear-gradient(135deg, var(--blue-dk), var(--blue));
  border-radius: 12px;
  overflow: hidden;
}
.mega-banner-inner {
  padding: 24px 20px;
  text-align: center;
  color: var(--white);
}
.mega-banner-icon { font-size: 40px; margin-bottom: 10px; }
.mega-banner-title { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.mega-banner-inner p { font-size: 13px; opacity: .8; }
.mega-banner-inner .btn { width: 100%; text-align: center; }

.mega-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--header-h, 76px);
  background: rgba(0,0,0,.35);
  z-index: 998;
}
.mega-overlay.active { display: block; }

/* ---- SHOP SAYFASI ---- */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.shop-sidebar { position: sticky; top: 90px; }

/* --- Sidebar widgets --- */
.shop-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.shop-widget-title {
  padding: 18px 20px 10px;
  font-weight: 800;
  font-size: 16px;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.shop-widget form { padding: 16px 20px; }
.shop-widget form .form-control {
  border-radius: 10px;
  background: var(--light);
  border-color: var(--border);
}
.shop-widget-cta { background: linear-gradient(135deg, var(--blue-dk), var(--blue)); border: none; }
.shop-widget-cta .shop-widget-title { background: transparent; color: #fff; border-bottom-color: rgba(255,255,255,.15); }
.shop-widget-cta p { padding: 14px 20px 0; font-size: 14px; color: rgba(255,255,255,.85); margin: 0; }
.shop-widget-cta .btn { display: block; margin: 16px 20px 20px; background: #fff; color: var(--blue); font-weight: 700; text-align: center; }
.shop-widget-cta .btn:hover { background: var(--light); }

/* --- Category list --- */
.shop-cat-list { list-style: none; padding: 8px 0 12px; }
.shop-cat-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  font-size: 14px;
  color: #555;
  font-weight: 500;
  transition: color var(--transition);
  text-decoration: none;
  border-left: 3px solid transparent;
}
.shop-cat-link:hover { color: var(--blue); background: #f4f7ff; }
.shop-cat-link.active {
  color: var(--blue);
  font-weight: 700;
  background: #eef3ff;
  border-left-color: var(--blue);
}
.cat-count {
  background: #e8edf6;
  color: #555;
  border-radius: 20px;
  padding: 2px 9px;
  font-size: 12px;
  font-weight: 700;
  min-width: 24px;
  text-align: center;
}
.shop-cat-link.active .cat-count { background: var(--blue); color: #fff; }

/* --- Toolbar --- */
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--border);
}
.shop-result-info { font-size: 14px; color: #888; font-weight: 500; }
.shop-result-info strong { color: var(--dark); }

/* --- Product grid --- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.shop-product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.shop-product-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,.11);
  transform: translateY(-4px);
  color: inherit;
}
.shop-product-img {
  background: var(--light);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.shop-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.shop-product-card:hover .shop-product-img img { transform: scale(1.06); }
.shop-product-img .no-img { font-size: 52px; opacity: .2; }

.shop-product-info { padding: 18px 18px 16px; flex: 1; display: flex; flex-direction: column; }
.shop-product-cat {
  font-size: 11px;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 7px;
}
.shop-product-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.45;
  margin-bottom: 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.shop-product-desc {
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.shop-product-price {
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.price-from { font-size: 12px; color: #aaa; }
.price-val  { font-size: 20px; font-weight: 900; color: var(--dark); }
.shop-product-btn {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  transition: background var(--transition);
  letter-spacing: 0.3px;
}
.shop-product-card:hover .shop-product-btn { background: var(--red-dk); }

/* ---- HERO BANNER ---- */
.hero {
  background: linear-gradient(135deg, var(--blue-dk) 0%, var(--blue) 50%, var(--dark) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/pattern.png') repeat;
  opacity: .05;
}
.hero h1 { font-size: 42px; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.hero h1 span { color: var(--red); }
.hero p { font-size: 18px; opacity: .85; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dk); border-color: var(--red-dk); color: var(--white); }
.btn-secondary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-secondary:hover { background: var(--blue-dk); border-color: var(--blue-dk); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--blue); }
.btn-outline-red { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline-red:hover { background: var(--red); color: var(--white); }
.btn-outline-blue { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }
.btn-sm { padding: 7px 16px; font-size: 13px; }
.btn-lg { padding: 15px 36px; font-size: 16px; }
.btn-block { display: block; width: 100%; }
.btn:disabled { opacity: .6; cursor: not-allowed; }

/* ---- CONTAINER ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 20px; }

/* ---- SECTION ---- */
.section { padding: 60px 0; }
.section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 8px;
}
.section-title span { color: var(--red); }
.section-sub {
  text-align: center;
  color: var(--gray);
  margin-bottom: 40px;
  font-size: 16px;
}
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--red), var(--blue));
  margin: 12px auto 40px;
  border-radius: 2px;
}

/* ---- CATEGORY CARDS ---- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.12); }
.cat-card-img {
  height: 140px;
  background: linear-gradient(135deg, var(--blue), var(--blue-lt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
}
.cat-card-body { padding: 14px; }
.cat-card-body h3 { font-size: 15px; color: var(--dark); font-weight: 700; }

/* ---- PRINTEC STYLE CATEGORY GRID ---- */
/* ---- PRINTEC-STYLE CATEGORY GRID ---- */
.pcat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.pcat-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid #ebebeb;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: transform .25s ease, box-shadow .25s ease;
  min-height: 260px;
}
.pcat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  border-color: #d8d8d8;
}
.pcat-caption {
  padding: 20px 20px 12px;
  flex-shrink: 0;
}
.pcat-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pcat-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  color: var(--text-muted, #666);
  font-size: 10px;
  font-weight: 700;
  border-radius: 20px;
  padding: 2px 8px;
  flex-shrink: 0;
}
.pcat-img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px 20px;
  min-height: 150px;
  overflow: hidden;
}
.pcat-img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  object-position: center;
  transition: transform .3s ease;
}
.pcat-card:hover .pcat-img { transform: scale(1.05); }
.pcat-placeholder {
  font-size: 64px;
  color: #ddd;
  line-height: 1;
}

@media (max-width: 1024px) {
  .pcat-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (max-width: 700px) {
  .pcat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pcat-name { font-size: 11px; }
  .pcat-img { height: 110px; }
  .pcat-card { min-height: 180px; }
  .pcat-caption { padding: 14px 14px 8px; }
  .pcat-img-wrap { padding: 4px 14px 14px; }
}

/* ---- PRODUCT CARDS ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 10px 35px rgba(0,0,0,.13); }
.product-card-img {
  height: 200px;
  background: linear-gradient(135deg, #f0f4ff, #e8f0fe);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card-img .no-img { font-size: 60px; opacity: .3; }
.product-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-card-body h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.product-card-body .delivery { font-size: 12px; color: var(--gray); margin-bottom: 10px; }
.product-card-body .price { font-size: 20px; font-weight: 800; color: var(--blue); margin-bottom: 14px; }
.product-card-body .btn { margin-top: auto; }

/* ---- CATEGORY PAGE LAYOUT ---- */
.cat-page { display: grid; grid-template-columns: 260px 1fr; gap: 30px; }
.sidebar {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  align-self: start;
  box-shadow: var(--shadow);
}
.sidebar-title {
  background: var(--blue);
  color: var(--white);
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 700;
}
.sidebar-menu { list-style: none; }
.sidebar-menu li a {
  display: block;
  padding: 11px 18px;
  font-size: 14px;
  color: #333;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), color var(--transition);
}
.sidebar-menu li a:hover,
.sidebar-menu li.active a {
  background: var(--light);
  color: var(--red);
  font-weight: 600;
}

/* ---- PRODUCT DETAIL ---- */
.product-detail { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 50px; align-items: start; }
.product-detail-img {
  background: linear-gradient(135deg, #f0f4ff, #e8f0fe);
  border-radius: var(--radius);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  overflow: hidden;
}
.product-detail-img img { width: 100%; height: 380px; object-fit: cover; }
.product-detail-img .no-img-lg,
.product-gallery-main .no-img-lg { font-size: 100px; opacity: .25; }
.product-detail-info h1 { font-size: 28px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.product-detail-info .stock { font-size: 13px; color: #2e7d32; font-weight: 600; margin-bottom: 12px; }
.product-detail-info .price-display {
  font-size: 36px;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 20px;
}
.delivery-info {
  background: #fffbf0;
  border: 1px solid #ffe69c;
  border-radius: var(--radius);
  padding: 10px 15px;
  font-size: 13px;
  color: #856404;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---- DELIVERY TICKER ---- */
.delivery-ticker-wrap {
  overflow: hidden;
  background: #fffbf0;
  border: 1px solid #ffe69c;
  border-radius: var(--radius);
  margin-bottom: 20px;
  padding: 10px 0;
  max-width: 100%;
  width: 100%;
}
.delivery-ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 18s linear infinite;
}
.delivery-ticker-item {
  flex-shrink: 0;
  padding: 0 48px;
  font-size: 13px;
  font-weight: 600;
  color: #856404;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- PRODUCT TABS ---- */
.product-tabs {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  border: 1px solid var(--border);
  margin-bottom: 48px;
}
.product-tab-nav {
  display: flex;
  border-bottom: 2px solid var(--border);
  background: #f8f9fc;
}
.product-tab-btn {
  flex: 1;
  padding: 16px 20px;
  border: none;
  background: none;
  font-size: 15px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color .2s, border-color .2s;
}
.product-tab-btn:hover { color: var(--blue); }
.product-tab-btn.active { color: var(--blue); border-bottom-color: var(--blue); background: #fff; }
.product-tab-content { display: none; padding: 36px 40px; background: #fff; }
.product-tab-content.active { display: block; }
.product-desc-body { line-height: 1.9; color: #444; }
.product-desc-body p { margin-bottom: 14px; }

.ptab-title { font-size: 22px; font-weight: 800; color: var(--blue); margin-bottom: 28px; }

.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { padding: 18px 0; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-weight: 700; color: var(--dark); margin-bottom: 8px; font-size: 15px; }
.faq-a { color: #555; line-height: 1.8; }

.process-section { margin-bottom: 28px; }
.process-section:last-child { margin-bottom: 0; }
.process-h3 { font-size: 17px; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
.process-section p { color: #555; line-height: 1.8; margin-bottom: 6px; }

@media (max-width: 640px) {
  .product-tab-btn { padding: 12px 8px; font-size: 13px; }
  .product-tab-content { padding: 24px 20px; }
  .ptab-title { font-size: 18px; }
}

/* ---- ORDER FORM (STEPS) ---- */
.order-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.form-steps {
  display: flex;
  background: var(--light);
  border-bottom: 2px solid var(--border);
}
.form-step {
  flex: 1;
  padding: 14px 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #999;
  border-right: 1px solid var(--border);
  position: relative;
}
.form-step:last-child { border-right: none; }
.form-step.active { color: var(--blue); background: var(--white); }
.form-step.done { color: var(--red); }
.form-step .step-num {
  display: inline-block;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #ddd;
  color: #666;
  font-size: 12px;
  line-height: 26px;
  text-align: center;
  margin-bottom: 4px;
}
.form-step.active .step-num { background: var(--blue); color: var(--white); }
.form-step.done .step-num { background: var(--red); color: var(--white); }

.form-step-content { display: none; padding: 25px; }
.form-step-content.active { display: block; }

.form-step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

/* ---- FORM ELEMENTS ---- */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: #333;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.form-control:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,95,168,.12);
}
.form-control.locked {
  background: var(--light);
  color: #666;
  cursor: not-allowed;
  border-style: dashed;
}
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.form-text { font-size: 12px; color: var(--gray); margin-top: 4px; }
.form-error { font-size: 12px; color: var(--red); margin-top: 4px; }

/* Quantity selector */
.qty-selector {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 5px;
}
.qty-btn {
  padding: 8px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition);
}
.qty-btn:hover { border-color: var(--blue); color: var(--blue); }
.qty-btn.selected { border-color: var(--blue); background: var(--blue); color: var(--white); }

/* Delivery type selector */
.delivery-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.delivery-option {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  transition: all var(--transition);
}
.delivery-option:hover { border-color: var(--blue); }
.delivery-option.selected { border-color: var(--blue); background: #f0f5ff; }
.delivery-option input[type="radio"] { display: none; }
.delivery-option .opt-icon { font-size: 28px; margin-bottom: 8px; }
.delivery-option .opt-name { font-weight: 700; font-size: 14px; color: var(--dark); }
.delivery-option .opt-desc { font-size: 12px; color: var(--gray); margin-top: 4px; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  padding: 12px 0;
  font-size: 13px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { color: #bbb; }
.breadcrumb .current { color: var(--dark); font-weight: 600; }

/* ---- ALERT ---- */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.alert-success { background: #d1e7dd; color: #0a3622; border: 1px solid #badbcc; }
.alert-danger  { background: #f8d7da; color: #58151c; border: 1px solid #f5c2c7; }
.alert-warning { background: #fff3cd; color: #664d03; border: 1px solid #ffecb5; }
.alert-info    { background: #cff4fc; color: #055160; border: 1px solid #b6effb; }

/* ---- FOOTER ---- */
/* ---- RELATED PRODUCTS ---- */
.related-products-section {
  background: var(--light);
  padding: 60px 0;
  border-top: 1px solid var(--border);
}
.related-products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.related-products-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
}
.related-products-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}
.related-products-all:hover { text-decoration: underline; }
.related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.related-product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.related-product-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.10);
  transform: translateY(-3px);
}
.related-product-img {
  background: var(--light);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.related-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.related-product-card:hover .related-product-img img { transform: scale(1.04); }
.no-img-sm { font-size: 48px; opacity: .2; }
.related-product-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.related-product-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-product-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--blue);
  margin-top: auto;
}
@media (max-width: 768px) {
  .related-products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .related-products-title { font-size: 20px; }
}
@media (max-width: 480px) {
  .related-products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

.site-footer {
  background: var(--dark);
  color: #aaa;
  padding: 50px 0 0;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .logo-text { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--red); display: inline-block; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #aaa; font-size: 14px; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact p { font-size: 14px; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
  text-align: center;
  font-size: 13px;
}
.footer-brand a { color: #aaa; transition: color var(--transition); }
.footer-brand a:hover { color: var(--white); }

/* Social icons */
.footer-social { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  transition: transform .2s, opacity .2s;
  opacity: .85;
}
.social-icon:hover { transform: translateY(-2px); opacity: 1; }
.social-icon svg { width: 18px; height: 18px; }
.social-fb  { background: #1877f2; color: #fff; }
.social-ig  { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.social-tw  { background: #000; color: #fff; }
.social-wa  { background: #25d366; color: #fff; }
.social-yt  { background: #ff0000; color: #fff; }

/* Footer CTA (call button in agency col) */
.footer-cta { margin-top: 20px; }
.footer-phone-btn {
  display: inline-block;
  padding: 10px 18px;
  background: var(--red);
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  transition: background var(--transition);
}
.footer-phone-btn:hover { background: #c0281e; color: #fff; }

/* ---- UTILITIES ---- */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-1 { margin-top: 8px; }  .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.pt-3 { padding-top: 24px; } .pb-3 { padding-bottom: 24px; }
.d-flex { display: flex; } .gap-2 { gap: 16px; } .align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
}
.badge-warning  { background: #fff3cd; color: #856404; }
.badge-success  { background: #d1e7dd; color: #0a3622; }
.badge-danger   { background: #f8d7da; color: #58151c; }
.badge-info     { background: #cff4fc; color: #055160; }
.badge-primary  { background: #cfe2ff; color: #084298; }
.badge-secondary{ background: #e2e3e5; color: #41464b; }

/* ---- PAGE HEADER ---- */
.page-header {
  background: linear-gradient(135deg, var(--blue-dk), var(--blue));
  color: var(--white);
  padding: 35px 0;
  margin-bottom: 40px;
}
.page-header h1 { font-size: 28px; font-weight: 800; }
.page-header .breadcrumb { color: rgba(255,255,255,.75); }
.page-header .breadcrumb a { color: rgba(255,255,255,.75); }
.page-header .breadcrumb a:hover { color: var(--white); }
.page-header .breadcrumb .sep { color: rgba(255,255,255,.4); }
.page-header .breadcrumb .current { color: var(--white); }

/* ---- ABOUT PAGE ---- */
.about-hero { padding: 64px 0 56px; }
.about-hero-title { font-size: 36px; font-weight: 800; color: var(--blue); line-height: 1.25; margin-bottom: 28px; }
.about-hero-text { max-width: 820px; }
.about-hero-text p { font-size: 16px; line-height: 1.85; color: #555; margin-bottom: 16px; }

.about-split { background: #f4f7fb; padding: 72px 0; }
.about-split-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-split-img { border-radius: 12px; overflow: hidden; background: linear-gradient(135deg, var(--blue-dk), var(--blue)); min-height: 340px; display: flex; align-items: center; justify-content: center; }
.about-split-img img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 12px; }
.about-split-text h2 { font-size: 30px; font-weight: 800; color: var(--blue-dk); line-height: 1.3; margin-bottom: 20px; }
.about-split-text p { font-size: 15px; line-height: 1.8; color: #555; margin-bottom: 14px; }
.about-split-btn { margin-top: 12px; display: inline-flex; align-items: center; padding: 13px 26px; font-size: 15px; font-weight: 700; border-radius: 8px; }

.about-why { padding: 72px 0; }
.about-why-inner { max-width: 760px; }
.about-why h2 { font-size: 32px; font-weight: 800; color: var(--blue-dk); line-height: 1.3; margin-bottom: 24px; }
.about-why h2 span { color: var(--blue); }
.about-why p { font-size: 15px; line-height: 1.85; color: #555; margin-bottom: 16px; }

.about-steps { background: #f4f7fb; padding: 72px 0; }
.about-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.about-step { text-align: center; }
.about-step-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--blue-dk); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: #fff; }
.about-step h3 { font-size: 15px; font-weight: 700; color: var(--blue-dk); margin-bottom: 10px; line-height: 1.4; }
.about-step p { font-size: 14px; line-height: 1.7; color: #666; }

@media (max-width: 900px) {
  .about-split-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-split-img { min-height: 220px; }
  .about-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .about-hero-title { font-size: 26px; }
}
@media (max-width: 560px) {
  .about-steps-grid { grid-template-columns: 1fr; }
  .about-split-text h2 { font-size: 22px; }
  .about-why h2 { font-size: 24px; }
}

/* ---- CARD ---- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  background: var(--light);
}
.card-body { padding: 20px; }

/* ---- TABLE ---- */
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th {
  background: var(--light);
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
  color: #555;
  border-bottom: 2px solid var(--border);
  font-size: 13px;
}
.table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: #fafbff; }

/* ---- PRODUCT GALLERY ---- */
.product-gallery-main {
  background: var(--light);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border: 1px solid var(--border);
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .2s ease;
}
.product-gallery-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.gallery-thumb {
  width: 72px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition);
  flex-shrink: 0;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb:hover { border-color: var(--blue); }
.gallery-thumb.active { border-color: var(--red); }

/* ---- PRODUCT PAGINATION (Önceki/Sonraki) ---- */
.product-pagination {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.product-pagination-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  color: var(--dark);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: all var(--transition);
  background: var(--white);
}
.product-pagination-item:hover { border-color: var(--red); box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.product-pagination-item.next { text-align: right; }
.pp-arrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  padding: 6px 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pp-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px 10px;
}
.product-pagination-item.next .pp-card { flex-direction: row-reverse; }
.pp-card img {
  width: 52px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.pp-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.pp-title {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pp-price { font-size: 12px; color: var(--blue); font-weight: 700; }

/* ---- PRODUCT META & SOCIAL SHARE ---- */
.product-meta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: #666;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.meta-item strong { color: var(--dark); }
.meta-item a { color: var(--blue); text-decoration: none; }
.meta-item a:hover { text-decoration: underline; }

.social-share {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.share-label { font-size: 13px; color: #888; font-weight: 600; }
.share-btn {
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  transition: opacity var(--transition);
}
.share-btn:hover { opacity: 0.85; }
.share-facebook  { background: #1877f2; }
.share-twitter   { background: #1da1f2; }
.share-pinterest { background: #e60023; }
.share-whatsapp  { background: #25d366; }

/* ---- MOBILE ---- */
/* ---- HAMBURGER ---- */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1300;
  position: relative;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  transition: all .3s ease;
  transform-origin: center;
}
/* X animasyonu */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1050;
  backdrop-filter: blur(2px);
}
.mobile-overlay.active { display: block; }

/* Nav close butonu (sadece mobilde görünür) */
.nav-close {
  display: none;
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--light);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 18px;
  cursor: pointer;
  color: var(--dark);
  line-height: 1;
}

/* Body scroll lock */
body.nav-open { overflow: hidden; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1200px) {
  .shop-layout { grid-template-columns: 240px 1fr; gap: 28px; }
}
@media (max-width: 1100px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .mega-cols { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .cat-page { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .blog-single-layout { display: block; }
  .blog-single-article { margin-bottom: 24px; }
  .blog-sidebar { position: static; top: auto; }
  .mega-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Hamburger göster */
  .hamburger { display: flex; flex-direction: column; justify-content: center; }
  .nav-close  { display: flex; align-items: center; justify-content: center; }

  /* Mobil nav: tam ekran slide-in */
  .site-nav {
    display: block;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 85vw);
    background: var(--white);
    padding: 60px 20px 30px;
    overflow-y: auto;
    z-index: 1200;
    transform: translateX(100%);
    transition: transform .3s ease;
    box-shadow: -4px 0 24px rgba(0,0,0,.15);
  }
  .site-nav.open { transform: translateX(0); }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .site-nav ul li { width: 100%; }
  .site-nav > ul > li > a {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 15px;
    display: block;
    border-bottom: 1px solid var(--border);
  }
  .site-nav > ul > li:last-child > a { border-bottom: none; }
  .nav-agency-btn { margin-top: 8px; text-align: center !important; }
  .mega-arrow { display: none; }

  /* Mega menü ve overlay mobilde gizle */
  .mega-menu, .mega-overlay { display: none !important; }

  /* Genel layout */
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 15px; }
  .hero-btns { flex-direction: column; align-items: center; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .delivery-options { grid-template-columns: 1fr; }
  .article-default { flex-direction: column; }
  .post-thumbnail { min-width: unset; width: 100%; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Sipariş formu */
  .order-summary-table { font-size: 13px; }
  .form-steps { gap: 0; }

  /* Ürün sayfası */
  .product-pagination { flex-direction: column; }
  .product-gallery-main { min-height: 0; aspect-ratio: unset; height: 260px; max-width: 100%; }
  .product-gallery-main .no-img-lg { font-size: 60px; }
  .product-detail-img { min-height: 0; height: 240px; }
  .order-summary-table td { word-break: break-word; max-width: 160px; }
  .product-detail { gap: 24px; grid-template-columns: 1fr !important; max-width: 100%; }
  .product-detail > div { min-width: 0; max-width: 100%; overflow: hidden; }
  .delivery-ticker-wrap { max-width: 100%; overflow: hidden; }
  h1 { word-break: break-word; overflow-wrap: break-word; }
  .form-step-content { padding: 16px; }

  /* Konteyner padding */
  .container { padding: 0 14px; }
}

/* ============================================================
   BLOG CAROUSEL (Anasayfa)
   ============================================================ */
.blog-carousel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 12px;
}
.blog-carousel-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.blog-carousel-nav { display: flex; gap: 10px; }
.bcar-prev, .bcar-next {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  background: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: .2s;
  color: var(--dark);
}
.bcar-prev:hover, .bcar-next:hover { background: var(--dark); color: #fff; }

.bcar-wrap  { overflow: hidden; }
.bcar-track {
  display: flex;
  gap: 24px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.bcar-slide { flex: 0 0 calc((100% - 48px) / 3); min-width: 0; }

.bcar-card  { display: block; text-decoration: none; color: inherit; }
.bcar-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #eee;
  margin-bottom: 20px;
}
.bcar-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.bcar-card:hover .bcar-img { transform: scale(1.05); }
.bcar-no-img {
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; background: #f0f2f5;
  width: 100%; height: 100%;
}
.bcar-date {
  position: absolute;
  top: 16px; left: 16px;
  background: #22c55e;
  color: #fff;
  border-radius: 50%;
  width: 52px; height: 52px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.bcar-day { font-size: 18px; font-weight: 800; }
.bcar-mon { font-size: 10px; font-weight: 700; letter-spacing: .5px; }

.bcar-body  { padding: 0 4px; }
.bcar-cat   { font-size: 12px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.bcar-title { font-size: 17px; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: 14px; }
.bcar-card:hover .bcar-title { color: var(--blue); }
.bcar-more  { font-size: 14px; font-weight: 700; color: var(--dark); display: flex; align-items: center; gap: 4px; }
.bcar-card:hover .bcar-more { color: var(--blue); }

.bcar-dots  { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.bcar-dot   { width: 8px; height: 8px; border-radius: 50%; background: #ddd; cursor: pointer; transition: .2s; border: none; padding: 0; }
.bcar-dot.active { background: var(--red); width: 22px; border-radius: 4px; }

@media (max-width: 900px) {
  .bcar-slide { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 600px) {
  .bcar-slide { flex: 0 0 85%; }
  .bcar-track { gap: 16px; }
  .blog-carousel-nav { display: none; }
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-style-list { display: flex; flex-direction: column; gap: 32px; }

.article-default {
  display: flex;
  gap: 24px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: box-shadow var(--transition);
}
.article-default:hover { box-shadow: 0 6px 24px rgba(0,0,0,.12); }

.post-thumbnail {
  position: relative;
  min-width: 300px;
  max-width: 300px;
  overflow: hidden;
}
.post-thumbnail img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.article-default:hover .post-thumbnail img { transform: scale(1.04); }

.post-no-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--red) 0%, var(--blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
}

.posted-on-square {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  text-align: center;
  line-height: 1.2;
  font-size: 13px;
  z-index: 2;
}
.posted-on-square b {
  display: block;
  font-size: 22px;
  font-weight: 800;
}
.posted-on-square a { color: #fff; text-decoration: none; }

.post-content { padding: 24px; flex: 1; display: flex; flex-direction: column; justify-content: center; }

.categories-link { margin-bottom: 8px; }
.categories-link a {
  background: #e8f0fe;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.categories-link a:hover { background: var(--blue); color: #fff; }

.entry-title { margin: 8px 0 12px; font-size: 20px; line-height: 1.4; }
.entry-title a { color: var(--dark); text-decoration: none; }
.entry-title a:hover { color: var(--red); }

.entry-content p { color: #666; font-size: 14px; line-height: 1.7; margin: 0 0 12px; }

.read-more {
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.read-more:hover { text-decoration: underline; }

/* Blog Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.page-btn {
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid var(--border);
  color: var(--dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
}
.page-btn:hover, .page-btn.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

/* Blog Single */
.blog-single-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.blog-single-article {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.blog-single-image img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  display: block;
}
.blog-single-meta {
  padding: 20px 28px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.blog-cat-badge {
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-date { color: #999; font-size: 13px; }

.blog-single-content {
  padding: 20px 28px 32px;
  color: #444;
  font-size: 15px;
  line-height: 1.8;
}
.blog-single-content h2, .blog-single-content h3 { color: var(--dark); margin: 24px 0 12px; }
.blog-single-content p { margin: 0 0 16px; }
.blog-single-content ul, .blog-single-content ol { margin: 0 0 16px; padding-left: 24px; }
.blog-single-content li { margin-bottom: 6px; }
.blog-single-content img { max-width: 100%; border-radius: 8px; margin: 16px 0; }
.blog-single-content a { color: var(--red); }
.blog-single-content blockquote {
  border-left: 4px solid var(--red);
  margin: 20px 0;
  padding: 12px 20px;
  background: #fff5f5;
  color: #555;
  font-style: italic;
  border-radius: 0 8px 8px 0;
}

/* Blog Sidebar */
.blog-sidebar { position: static; }
@media (min-width: 993px) {
  .blog-sidebar { position: sticky; top: 20px; }
}
.sidebar-widget {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  margin-bottom: 24px;
}
.widget-title {
  background: var(--dark);
  color: #fff;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sidebar-widget .btn { display: block; }
.sidebar-widget > p { padding: 16px 20px 0; margin: 0; }

.recent-post {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.recent-post:last-child { border-bottom: none; }
.recent-post img {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.recent-post-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  line-height: 1.4;
}
.recent-post-title:hover { color: var(--red); }
.recent-post-date { font-size: 11px; color: #999; }

/* ---- CONTACT INFO GRID ---- */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 640px) {
  .contact-info-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ---- CONTACT FORM ---- */
.contact-form-wrap {
  max-width: 760px;
  margin: 0 auto 60px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.cform-row--full {
  grid-template-columns: 1fr;
}
.cform-field { display: flex; flex-direction: column; }
.cform-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e8eaf0;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  color: #333;
  background: #f5f6fa;
  transition: border-color .2s, background .2s;
  outline: none;
}
.cform-input:focus {
  border-color: var(--blue);
  background: #fff;
}
.cform-input::placeholder { color: #aaa; }
.cform-textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.6;
}
.cform-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 48px;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.cform-btn:hover {
  background: var(--blue);
  transform: translateY(-2px);
}
.contact-success {
  text-align: center;
  padding: 60px 20px;
  background: #f0f9f0;
  border-radius: 16px;
  border: 2px solid #c3e6cb;
}
@media (max-width: 640px) {
  .cform-row { grid-template-columns: 1fr; }
}
