/* ===== GEOSTORM – Enerji Sektörü Marketplace ===== */
:root {
  --bg-dark:    #0d1117;
  --bg-card:    #161b22;
  --bg-hover:   #1c2433;
  --border:     #30363d;
  --accent:     #f97316;
  --accent-dim: rgba(249,115,22,0.15);
  --blue:       #3b82f6;
  --blue-dim:   rgba(59,130,246,0.15);
  --green:      #22c55e;
  --yellow:     #eab308;
  --red:        #ef4444;
  --text:       #e6edf3;
  --text-muted: #8b949e;
  --radius:     10px;
  --shadow:     0 4px 20px rgba(0,0,0,0.4);
  --navbar-bg:  rgba(13,17,23,0.95);
}
[data-theme="light"] {
  --bg-dark:    #ffffff;
  --bg-card:    #ffffff;
  --bg-hover:   #eef0f4;
  --border:     #d0d7de;
  --text:       #1a1f2e;
  --text-muted: #57606a;
  --shadow:     0 4px 20px rgba(0,0,0,0.08);
  --navbar-bg:  rgba(255,255,255,0.95);
}
/* Theme toggle butonu */
.theme-toggle { background: none; border: 1px solid var(--border); border-radius: 8px; padding: 6px 10px; cursor: pointer; color: var(--text-muted); display: flex; align-items: center; gap: 6px; font-size: .82rem; transition: all .15s; }
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }
.theme-toggle .icon-dark, .theme-toggle .icon-light { display: none; }
:root .icon-dark  { display: none; }
:root .icon-light { display: inline; }
[data-theme="light"] .icon-dark  { display: inline; }
[data-theme="light"] .icon-light { display: none; }

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--navbar-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  display: flex; align-items: center; gap: 16px;
  height: 80px;
}
.navbar-brand {
  font-size: 1.4rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), #fbbf24);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-right: 12px; white-space: nowrap;
}
.navbar-nav {
  display: flex; gap: 4px; flex: 1;
}
.nav-link {
  padding: 6px 14px; border-radius: 8px;
  font-size: .9rem; font-weight: 500; color: var(--text-muted);
  transition: all .2s;
}
.nav-link:hover, .nav-link.active {
  background: var(--bg-hover); color: var(--text);
}
.navbar-right {
  display: flex; align-items: center; gap: 10px; margin-left: auto;
}
.search-bar {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 6px 12px;
}
.search-bar input {
  background: none; border: none; outline: none;
  color: var(--text); font-size: .9rem; width: 200px;
}
.search-bar input::placeholder { color: var(--text-muted); }
.btn {
  padding: 7px 16px; border-radius: 8px; border: none;
  font-size: .9rem; font-weight: 600; transition: all .2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-accent  { background: var(--accent); color: #fff; }
.btn-accent:hover  { background: #ea6c0e; }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text-muted); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost   { background: var(--bg-hover); color: var(--text); }
.btn-ghost:hover { background: var(--bg-hover); }
.btn-blue  { background: var(--blue); color: #fff; }
.btn-blue:hover { background: #2563eb; }
.btn-sm { padding: 5px 12px; font-size: .82rem; }

/* Profile dropdown */
.profile-btn {
  position: relative;
}
.profile-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #fbbf24);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem; cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s;
}
.profile-avatar:hover { border-color: var(--accent); }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); min-width: 200px;
  box-shadow: var(--shadow); z-index: 200;
  display: none; overflow: hidden;
}
.dropdown-menu.open { display: block; }
.dropdown-item {
  padding: 10px 16px; display: flex; align-items: center; gap: 10px;
  font-size: .88rem; color: var(--text-muted);
  transition: all .15s; border-bottom: 1px solid var(--border);
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background: var(--bg-hover); color: var(--text); }
.dropdown-item.danger:hover { color: var(--red); }

/* ===== HERO – 3 KOLON LAYOUT ===== */
.hero-wrapper {
  display: grid;
  grid-template-columns: 200px 1fr 280px;
  gap: 16px;
  max-width: 1400px; margin: 24px auto; padding: 0 24px;
}

/* Sol – Hızlı nav */
.quick-nav {
  display: flex; flex-direction: column; gap: 8px;
}
.quick-nav-title {
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  color: var(--text-muted); text-transform: uppercase;
  padding: 4px 12px;
}
.quick-nav-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-muted); font-size: .88rem; font-weight: 500;
  transition: all .2s; cursor: pointer;
}
.quick-nav-btn:hover {
  border-color: var(--accent); color: var(--accent);
  background: var(--accent-dim);
}
.quick-nav-btn svg { width: 16px; height: 16px; }

/* Orta – Ürünler kutusu */
.hero-products {
  background: var(--bg-card);
  border-radius: 14px; overflow: hidden;
  min-height: 420px; display: flex; flex-direction: column;
}
.hero-products-header {
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.hero-products-header h2 {
  font-size: 1.15rem; font-weight: 700;
}
.hero-tabs-wrap {
  position: relative;
}
.hero-tabs-wrap::before,
.hero-tabs-wrap::after {
  content: '';
  position: absolute; top: 0; width: 56px; height: 100%;
  pointer-events: none; z-index: 1;
  opacity: 0; transition: opacity .2s;
}
.hero-tabs-wrap::before { left: 0; background: linear-gradient(to right, var(--bg-card), transparent); }
.hero-tabs-wrap::after  { right: 0; background: linear-gradient(to left,  var(--bg-card), transparent); }
.hero-tabs-wrap.show-left::before  { opacity: 1; }
.hero-tabs-wrap.show-right::after  { opacity: 1; }
.hero-tabs-scroll-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-muted); z-index: 2;
  opacity: 0; transition: opacity .2s, border-color .15s, color .15s;
}
.hero-tabs-scroll-btn.left  { left: 6px; }
.hero-tabs-scroll-btn.right { right: 6px; }
.hero-tabs-wrap.show-right:hover .hero-tabs-scroll-btn.right { opacity: 1; }
.hero-tabs-wrap.show-left:hover  .hero-tabs-scroll-btn.left  { opacity: 1; }
.hero-tabs-scroll-btn:hover { border-color: var(--accent); color: var(--accent); }
.hero-tabs {
  display: flex; gap: 6px; padding: 12px 20px;
  overflow-x: auto; flex-wrap: nowrap;
  scrollbar-width: none;
}
.hero-tabs::-webkit-scrollbar { display: none; }
.hero-tab {
  padding: 5px 14px; border-radius: 20px; border: 1px solid var(--border);
  font-size: .82rem; font-weight: 500; color: var(--text-muted);
  cursor: pointer; transition: all .2s; background: none;
  white-space: nowrap; flex-shrink: 0;
  max-width: 140px; overflow: hidden; text-overflow: ellipsis;
}
.hero-tab:hover { border-color: var(--accent); color: var(--accent); }
.hero-tab.active {
  background: var(--accent); border-color: var(--accent); color: #fff;
}
.hero-products-body {
  flex: 1; padding: 16px 20px; overflow-y: auto;
}
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}
.hero-products-body .products-grid {
  grid-template-columns: repeat(4, 1fr);
}
.product-card {
  background: var(--bg-dark); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .2s, transform .2s; cursor: pointer;
}
.product-card:hover {
  border-color: var(--accent); transform: translateY(-2px);
}
.product-img {
  width: 100%; aspect-ratio: 1;
  background: var(--bg-hover);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  position: relative;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img-badges {
  position: absolute; top: 8px; left: 8px;
  display: flex; flex-direction: column; gap: 4px;
}
.product-cart-btn {
  position: absolute; top: 8px; right: 8px;
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--accent); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff; opacity: 0; transition: opacity .15s;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.product-cart-btn.out-of-stock {
  background: var(--bg-hover); color: var(--text-muted); cursor: not-allowed;
}
.product-card:hover .product-cart-btn { opacity: 1; }
.product-info { padding: 10px; }
.product-name {
  font-size: .92rem; font-weight: 600; margin-bottom: 4px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.product-price { font-size: 1rem; font-weight: 700; color: var(--accent); }
.product-company { font-size: .8rem; color: var(--text-muted); margin-top: 2px; font-weight: 700; }
.product-desc {
  font-size: .8rem; color: var(--text-muted); margin-top: 4px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.badge {
  display: inline-flex; align-items: center;
  padding: 2px 8px; border-radius: 12px; font-size: .7rem; font-weight: 700;
}
.badge-new        { background: var(--blue-dim); color: var(--blue); }
.badge-discount   { background: var(--accent-dim); color: var(--accent); }
.badge-high       { background: rgba(239,68,68,0.15); color: var(--red); }
.badge-medium     { background: rgba(234,179,8,0.15); color: var(--yellow); }
.badge-low        { background: var(--bg-hover); color: var(--text-muted); }
.badge-urgent     { background: rgba(239,68,68,0.2); color: var(--red); }

/* Sağ – İlanlar + Danışmanlık */
.hero-right {
  display: flex; flex-direction: column; gap: 14px;
}
.action-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px;
  transition: border-color .25s;
}
.action-card:hover { border-color: var(--blue); }
.action-card.consulting:hover { border-color: var(--green); }
.action-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.icon-listings   { background: var(--blue-dim); color: var(--blue); }
.icon-consulting { background: rgba(34,197,94,0.15); color: var(--green); }
.action-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.action-card p  { font-size: .82rem; color: var(--text-muted); margin-bottom: 14px; }

/* ===== ÖNE ÇIKAN ÜRÜNLER ŞERİDİ ===== */
/* ===== BANNER + FEATURED PANEL ===== */
.banner-featured-section {
  max-width: 1400px; margin: 28px auto; padding: 0 24px;
  display: block;
}

/* Sol: Banner Slider */
.banner-slider {
  position: relative; border-radius: 12px; overflow: hidden;
  height: 320px;
}
.banner-track {
  display: flex; height: 100%;
  transition: transform .45s ease;
  will-change: transform;
}
.banner-track img,
.banner-track .banner-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-sizing: border-box;
}
.banner-slide {
  display: flex; align-items: center; justify-content: space-between;
  padding: 36px 52px;
  position: relative; overflow: hidden;
  gap: 24px;
}
.banner-slide-visual {
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.bsv-circle {
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
}
.bsv-tags {
  display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; max-width: 240px;
}
.bsv-tag {
  font-size: .72rem; font-weight: 600; padding: 4px 10px;
  border-radius: 20px; border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8); background: rgba(255,255,255,.06);
  white-space: nowrap;
}
.banner-slide-content { position: relative; z-index: 2; max-width: 460px; }
.banner-slide-tag {
  display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; background: rgba(249,115,22,.9); color: #fff;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 14px;
}
.banner-slide-title {
  font-size: 1.6rem; font-weight: 800; line-height: 1.25; color: #fff;
  margin-bottom: 12px; text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.banner-slide-sub {
  font-size: .92rem; color: rgba(255,255,255,.88); line-height: 1.6; margin-bottom: 20px;
}
.banner-slide-stats {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.banner-stat {
  background: rgba(0,0,0,.35); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px; padding: 10px 16px; text-align: center;
}
.banner-stat-val { font-size: 1.3rem; font-weight: 800; color: #f97316; }
.banner-stat-lbl { font-size: .72rem; color: rgba(255,255,255,.75); margin-top: 2px; }
.banner-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.35); border: none; color: #fff;
  width: 34px; height: 34px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 5;
}
.banner-nav:hover { background: rgba(0,0,0,0.6); }
.banner-nav.left  { left: 12px; }
.banner-nav.right { right: 12px; }
.banner-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 5;
}
.banner-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.45); cursor: pointer; transition: .2s;
}
.banner-dot.active { background: #fff; transform: scale(1.3); }

/* Sağ: Featured Panel */
.featured-panel {
  position: relative; border-radius: 12px; overflow: hidden;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  height: 320px;
}
.featured-panel-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  overflow: hidden;
  padding: 0 8px 8px;
}
.featured-panel-content::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 48px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.85));
  pointer-events: none;
  z-index: 5;
}
.feat-track {
  display: flex; gap: 8px;
  transition: transform .35s ease;
}
.feat-product {
  width: calc(100% / 1.5 - 6px); max-width: calc(100% / 1.5 - 6px); flex-shrink: 0;
  display: flex; flex-direction: row; gap: 0;
  background: #fff;
  border-radius: 10px; overflow: hidden; cursor: pointer;
  border: 1.5px solid #e5e7eb;
  transition: border-color .2s;
  height: 180px;
}
.feat-product:hover { border-color: #d1d5db; }
.feat-product-img {
  width: 120px; flex-shrink: 0;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.feat-product-img img { width: 100%; height: 100%; object-fit: contain; }
.feat-product-info {
  flex: 1; min-width: 0; overflow: hidden; padding: 10px 12px;
  display: flex; flex-direction: column;
  color: #111;
}
.feat-product-name {
  font-size: .8rem; font-weight: 700; color: #111;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; line-height: 1.3;
}
.feat-stars { display: flex; align-items: center; gap: 1px; margin-top: 1px; }
.feat-product-desc {
  font-size: .72rem; color: #555;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.feat-product-price { font-size: .95rem; font-weight: 800; color: #f97316; }
.feat-add-btn {
  margin-top: 6px; width: 100%;
  background: #fff; border: 1.5px solid #e5e7eb; border-radius: 6px;
  padding: 5px 0; font-size: .75rem; font-weight: 600; color: #374151;
  cursor: pointer; transition: background .15s, border-color .15s;
}
.feat-add-btn:hover { background: #f3f4f6; border-color: #d1d5db; }
.feat-counter {
  font-size: .72rem; color: rgba(255,255,255,0.85); text-align: center;
  padding: 5px 0 0; font-weight: 600;
}
.feat-nav {
  position: absolute; bottom: 90px;
  background: rgba(0,0,0,0.35); border: none; color: #fff;
  width: 26px; height: 26px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, opacity .2s; z-index: 6;
  opacity: 0; pointer-events: none;
}
.feat-nav:hover { background: rgba(0,0,0,0.6); }
.feat-nav.left  { left: 4px; }
.feat-nav.right { right: 4px; }
.featured-panel:hover .feat-nav { opacity: 1; pointer-events: auto; }

.featured-section {
  max-width: 1400px; margin: 32px auto; padding: 0 24px;
}
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.section-title {
  font-size: 1.3rem; font-weight: 800;
}
.strip-wrapper {
  position: relative; overflow: hidden;
  padding: 0 44px;
}
.strip {
  display: flex; gap: 14px; overflow-x: auto; padding-bottom: 0;
  scroll-behavior: smooth; scrollbar-width: none;
}
.strip::-webkit-scrollbar { display: none; }
.strip-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text); z-index: 5; transition: all .2s;
  display: flex; align-items: center; justify-content: center;
}
.strip-btn:hover { border-color: var(--accent); color: var(--accent); }
.strip-btn.left  { left: 0; }
.strip-btn.right { right: 0; }
.strip-card {
  min-width: 180px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; flex-shrink: 0;
  transition: border-color .2s, transform .2s; cursor: pointer;
}
.strip-card:hover {
  border-color: var(--accent); transform: translateY(-3px);
}
.strip-card-img {
  width: 100%; height: 130px; background: var(--bg-hover);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.strip-card-img img { width: 100%; height: 100%; object-fit: cover; }
.strip-card-badge {
  position: absolute; top: 8px; left: 8px;
}
.strip-card-info { padding: 10px; }
.strip-card-name { font-size: .82rem; font-weight: 600; margin-bottom: 3px; }
.strip-card-price { font-size: .88rem; font-weight: 700; color: var(--accent); }
.strip-card-company { font-size: .72rem; color: var(--text-muted); }

/* ===== ŞİRKETLER ===== */
.companies-section {
  max-width: 1400px; margin: 32px auto; padding: 0 24px;
}
.companies-grid {
  display: flex; gap: 14px; overflow-x: auto;
  scrollbar-width: none; padding-bottom: 4px;
}
.companies-grid::-webkit-scrollbar { display: none; }
.home-company-card {
  flex-shrink: 0; width: 180px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; overflow: visible; cursor: pointer;
}
.hcc-banner {
  position: relative; height: 72px;
  background: linear-gradient(135deg, var(--accent), #fbbf24);
  display: flex; align-items: center; justify-content: center;
  overflow: visible;
  border-radius: 14px 14px 0 0;
}
.hcc-banner-logo {
  height: 36px; object-fit: contain;
  opacity: 0.92;
}
.hcc-avatar {
  position: absolute; bottom: -20px; left: 14px;
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--bg-card); border: 2px solid var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; color: var(--accent);
  overflow: hidden;
}
.hcc-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hcc-avatar span { line-height: 1; }
.hcc-info { padding: 26px 14px 12px; }
.hcc-name { font-weight: 700; font-size: .88rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hcc-city { font-size: .75rem; color: var(--text-muted); margin: 2px 0 6px; }
.hcc-stats { display: flex; gap: 10px; font-size: .75rem; color: var(--text-muted); }
.company-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px; transition: all .2s; cursor: pointer;
}
.company-card:hover {
  border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow);
}
.company-logo {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--bg-dark); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; margin-bottom: 12px;
  color: var(--accent);
}
.company-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 10px; }
.company-name { font-size: .95rem; font-weight: 700; margin-bottom: 3px; }
.company-city { font-size: .78rem; color: var(--text-muted); margin-bottom: 8px; }
.company-stats { display: flex; gap: 12px; font-size: .76rem; color: var(--text-muted); }
.company-rating { color: var(--yellow); font-weight: 600; }
.verified-badge {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: .7rem; color: var(--blue); font-weight: 600;
}

/* ===== HARİTA + FOOTER ===== */
.footer-section {
  background: var(--bg-card); border-top: 1px solid var(--border);
  margin-top: 48px;
}
.footer-map-container {
  display: grid; grid-template-columns: 1fr 1fr;
}
.map-frame {
  min-height: 400px; background: var(--bg-dark);
  position: relative; overflow: hidden;
}
.map-tabs {
  position: absolute; top: 16px; left: 16px; z-index: 10;
  display: flex; gap: 8px;
}
.map-tab {
  padding: 6px 14px; border-radius: 20px;
  background: var(--bg-card); border: 1px solid var(--border);
  font-size: .8rem; font-weight: 600; cursor: pointer; transition: all .2s;
}
.map-tab.active { background: var(--accent); border-color: var(--accent); color: #fff; }
#map { width: 100%; height: 400px; }
.footer-info {
  padding: 40px 48px; display: flex; flex-direction: column; gap: 24px;
}
.footer-logo {
  font-size: 1.5rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), #fbbf24);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.footer-desc { font-size: .88rem; color: var(--text-muted); max-width: 340px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; color: var(--text-muted);
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--bg-dark); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.social-link:hover { border-color: var(--accent); color: var(--accent); }
.footer-bottom {
  padding: 16px 48px; border-top: 1px solid var(--border);
  font-size: .8rem; color: var(--text-muted);
  display: flex; justify-content: space-between;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; display: none;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; width: 100%; max-width: 520px;
  box-shadow: var(--shadow); overflow: hidden;
  animation: modalIn .25s ease;
}
@keyframes modalIn {
  from { transform: scale(.95) translateY(10px); opacity: 0; }
  to   { transform: scale(1)   translateY(0);    opacity: 1; }
}
.modal-header {
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.modal-header h3 { font-size: 1.05rem; font-weight: 700; }
.modal-close {
  width: 30px; height: 30px; border-radius: 6px;
  background: var(--bg-hover); border: none; color: var(--text-muted);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: all .2s;
}
.modal-close:hover { color: var(--text); }
.modal-body { padding: 24px; }
.modal-tabs {
  display: flex; gap: 0; margin-bottom: 20px;
  background: var(--bg-dark); border-radius: 10px; padding: 4px;
}
.modal-tab {
  flex: 1; padding: 8px; border-radius: 7px; border: none;
  font-size: .88rem; font-weight: 600; color: var(--text-muted);
  background: none; cursor: pointer; transition: all .2s;
}
.modal-tab.active { background: var(--accent); color: #fff; }

/* ===== FORM ===== */
.form-group { margin-bottom: 14px; }
.form-label {
  display: block; font-size: .82rem; font-weight: 600;
  color: var(--text-muted); margin-bottom: 6px;
}
.form-input {
  width: 100%; padding: 9px 12px;
  background: var(--bg-dark); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); font-size: .9rem;
  outline: none; transition: border-color .2s;
}
.form-input:focus { border-color: var(--accent); }
.form-input::placeholder { color: var(--text-muted); }
textarea.form-input { resize: vertical; min-height: 90px; }
select.form-input { appearance: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-check {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: var(--text-muted); cursor: pointer;
}
.form-check input { accent-color: var(--accent); width: 15px; height: 15px; }

/* ===== PAGES ===== */
.page-wrapper {
  max-width: 1400px; margin: 0 auto; padding: 24px;
}
.page-header {
  margin-bottom: 24px;
}
.page-header h1 { font-size: 1.5rem; font-weight: 800; }
.page-header p   { font-size: .9rem; color: var(--text-muted); margin-top: 4px; }

.filter-bar {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 20px;
}

.listings-list { display: flex; flex-direction: column; gap: 12px; }
.listing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
  transition: border-color .2s; cursor: pointer;
}
.listing-card:hover { border-color: var(--accent); }
.listing-card-top {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
}
.listing-card-title { font-size: .98rem; font-weight: 700; margin-bottom: 4px; }
.listing-card-desc {
  font-size: .83rem; color: var(--text-muted);
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.listing-card-meta {
  display: flex; align-items: center; gap: 12px; margin-top: 10px;
  font-size: .78rem; color: var(--text-muted);
}

/* ===== COMPANY DASHBOARD ===== */
.dashboard-layout {
  display: grid; grid-template-columns: 220px 1fr;
  gap: 20px; max-width: 1400px; margin: 24px auto; padding: 0 24px;
}
.sidebar {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px;
  height: fit-content; position: sticky; top: 80px;
}
.sidebar-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  font-size: .88rem; font-weight: 500; color: var(--text-muted);
  cursor: pointer; transition: all .2s; border: none; background: none;
  width: 100%; text-align: left;
}
.sidebar-item:hover { background: var(--bg-hover); color: var(--text); }
.sidebar-item.active { background: var(--accent-dim); color: var(--accent); }
.sidebar-divider { height: 1px; background: var(--border); margin: 8px 0; }
.content-panel { display: none; }
.content-panel.active { display: block; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 20px;
}
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px;
}
.stat-value { font-size: 1.6rem; font-weight: 800; color: var(--accent); }
.stat-label { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }

/* ===== TOAST ===== */
.toast-container {
  position: fixed; bottom: 20px; right: 20px; z-index: 9999;
  display: flex; flex-direction: column; gap: 8px;
}
.toast {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 16px;
  font-size: .88rem; display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow); min-width: 260px;
  animation: toastIn .3s ease;
}
@keyframes toastIn {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}
.toast.success { border-left: 3px solid var(--green); }
.toast.error   { border-left: 3px solid var(--red); }
.toast.info    { border-left: 3px solid var(--blue); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
  }
  .quick-nav { flex-direction: row; flex-wrap: wrap; }
  .quick-nav-btn { flex: 1; min-width: 120px; }
  .hero-right { flex-direction: row; }
  .footer-map-container { grid-template-columns: 1fr; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .navbar-nav { display: none; }
  .search-bar { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .hero-right { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* Skeleton loader */
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-hover) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}
@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

/* ===== AUTH SAYFASI ===== */
.auth-page { background: var(--bg-dark); min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; }
.auth-wrapper { width: 100%; max-width: 460px; display: flex; flex-direction: column; gap: 24px; }
.auth-brand { text-align: center; }
.auth-brand a { font-size: 1.5rem; font-weight: 800; color: var(--accent); text-decoration: none; }
.auth-brand p { color: var(--text-muted); font-size: .85rem; margin-top: 4px; }
.auth-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.auth-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 4px; }
.auth-sub { color: var(--text-muted); font-size: .88rem; margin-bottom: 20px; }
.auth-error { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3); color: #f87171; border-radius: 8px; padding: 10px 14px; font-size: .85rem; margin-bottom: 14px; }
.auth-submit { width: 100%; justify-content: center; margin-top: 4px; height: 44px; font-size: 1rem; }
.auth-divider { text-align: center; color: var(--text-muted); font-size: .8rem; margin: 16px 0; position: relative; }
.auth-divider::before, .auth-divider::after { content: ''; position: absolute; top: 50%; width: 42%; height: 1px; background: var(--border); }
.auth-divider::before { left: 0; } .auth-divider::after { right: 0; }
.auth-footer { text-align: center; font-size: .85rem; color: var(--text-muted); }
.auth-footer a { color: var(--accent); text-decoration: none; }
.auth-footer a:hover { text-decoration: underline; }

/* Hesap türü seçici */
.auth-type-switch { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.auth-type-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; background: var(--bg-dark); border: 1px solid var(--border); border-radius: 10px; color: var(--text-muted); cursor: pointer; font-size: .9rem; font-weight: 600; transition: all .15s; }
.auth-type-btn.active { border-color: var(--accent); color: var(--accent); background: rgba(249,115,22,.08); }
.auth-type-btn:hover:not(.active) { border-color: var(--text-muted); color: var(--text); }

/* ── Global Site Footer ─────────────────────────── */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  margin-top: 60px;
}
.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.site-footer-brand { flex-shrink: 0; }
.site-footer-links { display: flex; gap: 48px; flex: 1; }
.site-footer-col { display: flex; flex-direction: column; gap: 10px; }
.site-footer-col-title { font-size: .75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 4px; }
.site-footer-col a { font-size: .88rem; color: var(--text-muted); text-decoration: none; transition: color .15s; }
.site-footer-col a:hover { color: var(--accent); }
.site-footer-link { font-size: .85rem; color: var(--text-muted); text-decoration: none; transition: color .15s; }
.site-footer-link:hover { color: var(--accent); }
.site-footer-bottom {
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--text-muted);
}
@media (max-width: 640px) {
  .site-footer-inner { flex-direction: column; gap: 28px; }
  .site-footer-links { flex-wrap: wrap; gap: 24px; }
  .site-footer-bottom { flex-direction: column; gap: 4px; }
}

/* ===== SOLAR SİMÜLATÖR FLOATING BUTON ===== */
.solar-fab {
  position: fixed;
  bottom: 56px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: none;
  z-index: 999;
  transition: transform .2s;
}
.solar-fab:hover {
  transform: scale(1.1);
}
.cart-open .solar-fab { display: none; }
.solar-fab-tooltip {
  position: fixed;
  bottom: 97px;
  right: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s, transform .2s;
  z-index: 998;
  box-shadow: var(--shadow);
}
.solar-fab:hover + .solar-fab-tooltip,
.solar-fab-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SOLAR SİMÜLATÖR MODAL ===== */
.solar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 24px 100px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.solar-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.solar-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(.97);
  transition: transform .25s, opacity .25s;
  opacity: 0;
}
.solar-overlay.open .solar-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.solar-panel-head {
  padding: 24px 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.solar-panel-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.solar-panel-title-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.solar-panel-title h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
}
.solar-panel-title p {
  font-size: .82rem;
  color: var(--text-muted);
}
.solar-close {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all .15s;
}
.solar-close:hover { border-color: var(--red); color: var(--red); }

/* Step indicator */
.solar-steps {
  display: flex;
  gap: 6px;
  padding: 18px 24px 0;
}
.solar-step-dot {
  height: 4px;
  border-radius: 2px;
  flex: 1;
  background: var(--border);
  transition: background .3s;
}
.solar-step-dot.active { background: var(--accent); }
.solar-step-dot.done { background: var(--green); }

.solar-body { padding: 24px; }

.solar-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
}
.solar-select, .solar-input {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: .98rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color .15s;
  font-family: inherit;
  margin-bottom: 18px;
}
.solar-select:focus, .solar-input:focus { border-color: var(--accent); }
.solar-select option { background: var(--bg-card); }

.solar-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.solar-opt {
  padding: 13px 12px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: .9rem;
  color: var(--text-muted);
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: all .15s;
  user-select: none;
}
.solar-opt:hover { border-color: var(--accent); color: var(--accent); }
.solar-opt.selected { border-color: var(--accent); color: var(--accent); background: rgba(249,115,22,.08); font-weight: 600; }
.solar-opt svg { flex-shrink: 0; }

.solar-bill-wrap {
  position: relative;
  margin-bottom: 18px;
}
.solar-bill-wrap .solar-input { padding-right: 52px; margin-bottom: 0; }
.solar-bill-suffix {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 600;
  pointer-events: none;
}

.solar-nav {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.solar-btn-back {
  flex: 0 0 auto;
  padding: 12px 18px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-muted);
  font-size: .92rem;
  cursor: pointer;
  transition: all .15s;
}
.solar-btn-back:hover { border-color: var(--text-muted); color: var(--text); }
.solar-btn-next {
  flex: 1;
  padding: 12px;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: .96rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .15s;
}
.solar-btn-next:hover { opacity: .9; }
.solar-btn-next:disabled { opacity: .4; cursor: not-allowed; }

/* Sonuçlar */
.solar-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.solar-result-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}
.solar-result-card.accent { border-color: rgba(249,115,22,.4); background: rgba(249,115,22,.06); }
.solar-result-card.green { border-color: rgba(34,197,94,.4); background: rgba(34,197,94,.06); }
.solar-result-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.solar-result-card.accent .solar-result-val { color: var(--accent); }
.solar-result-card.green .solar-result-val { color: var(--green); }
.solar-result-lbl {
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.solar-disclaimer {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 12px 14px;
  background: var(--bg-dark);
  border-radius: 8px;
  margin-bottom: 16px;
}
.solar-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: .98rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .15s;
}
.solar-cta:hover { opacity: .9; }

@media (max-width: 540px) {
  .solar-overlay { padding: 0 12px 96px; }
  .solar-panel { width: 100%; }
}

/* ===== MOBİL NAV ŞERİDİ ===== */
.mobile-nav-strip {
  display: none;
}
@media (max-width: 768px) {
  .mobile-nav-strip {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 4px;
    padding: 6px 12px;
    background: var(--navbar-bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 60px;
    z-index: 99;
  }
  .mobile-nav-strip::-webkit-scrollbar { display: none; }
  .mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    transition: all .15s;
    border: 1px solid transparent;
  }
  .mobile-nav-item:hover,
  .mobile-nav-item.active {
    background: var(--accent-dim);
    color: var(--accent);
    border-color: var(--accent);
  }
}

/* ===== MOBİL DÜZELTMELER ===== */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

@media (max-width: 768px) {
  /* Navbar */
  .navbar {
    padding: 0 12px;
    gap: 8px;
    height: 60px;
  }
  .navbar-brand img {
    height: 48px !important;
  }
  .theme-toggle {
    padding: 5px 8px;
    font-size: .78rem;
  }

  /* Hero wrapper */
  .hero-wrapper {
    padding: 0 12px;
    margin: 12px auto;
  }

  /* Category buttons */
  .quick-nav-btn {
    min-width: 80px;
    max-width: none;
    flex: 1 1 calc(25% - 6px);
    font-size: .75rem;
    padding: 10px 6px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
  }
  .quick-nav-btn svg {
    width: 20px;
    height: 20px;
  }

  /* Products grid: 2 kolon */
  .hero-products-body .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Banner */
  .banner-featured-section {
    padding: 0 12px;
  }
  .banner-slider {
    height: auto;
    min-height: 240px;
  }
  .banner-slide {
    padding: 20px 18px;
    flex-direction: column;
    gap: 10px;
    height: auto;
    min-height: 240px;
    align-items: flex-start;
    justify-content: center;
  }
  .banner-slide-visual {
    display: none;
  }
  .banner-slide-content {
    max-width: 100%;
  }
  .banner-slide-title {
    font-size: 1.1rem;
  }
  .banner-slide-sub {
    font-size: .82rem;
    margin-bottom: 12px;
  }
  .banner-slide-stats {
    gap: 8px;
  }
  .banner-stat {
    padding: 6px 10px;
  }
  .banner-stat-val {
    font-size: .95rem;
  }
  .banner-stat-lbl {
    font-size: .65rem;
  }

  /* Strip (öne çıkan ürünler) */
  .strip-wrapper {
    padding: 0 32px;
  }
  .strip-card {
    min-width: 150px;
  }

  /* Featured section */
  .featured-section {
    padding: 0 12px;
  }

  /* Companies section */
  .companies-section {
    padding: 0 12px;
  }
  .home-company-card {
    width: 155px;
  }

  /* Sections */
  .banner-featured-section,
  .featured-section {
    overflow: hidden;
  }

  /* Harita: mobilde daha küçük */
  #map {
    height: 240px !important;
  }
  .map-frame {
    min-height: 240px;
  }

  /* Footer info: mobilde dikey düzen */
  .footer-info {
    flex-direction: column !important;
    padding: 20px 16px;
    gap: 20px;
  }
  .site-footer-links {
    flex-direction: column !important;
    gap: 20px;
  }
  .site-footer-col {
    gap: 8px;
  }
  .footer-bottom {
    flex-direction: column;
    padding: 12px 16px;
    gap: 4px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .quick-nav-btn {
    min-width: 70px;
    font-size: .72rem;
    padding: 8px 4px;
  }
  .navbar {
    height: 56px;
  }
  .navbar-brand img {
    height: 40px !important;
  }
  .strip-wrapper {
    padding: 0 28px;
  }
}


@media (max-width: 768px) {
  .solar-fab {
    bottom: 90px;
  }
}