﻿@charset "utf-8";
/* CSS Document */


:root{
  /* Brand */
  --accent:#f39200;

  /* Premium warm system */
  --dark:#0b1220;
  --text:#0b1324;
  --soft:#f4f2ef;      /* warm gray canvas */
  --panel:#ffffff;

  --muted:#5c6678;
  --muted2:#7a8598;

  /* Lines / shadows */
  --line:rgba(15,23,42,.10);
  --line2:rgba(15,23,42,.16);
  --shadow: 0 18px 40px rgba(2,6,23,.12);
  --shadow2: 0 10px 24px rgba(2,6,23,.08);

  /* Keep flat and consistent */
  --radius:0px;

  /* Typography */
  --font-body:"Noto Sans Georgian", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Reset */
*{
  border-radius: var(--radius) !important;
  box-sizing: border-box;
  font-family: var(--font-body) !important;
  font-style: normal !important;
}

html, body{
  background: var(--soft);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  font-weight: 500; /* უფრო “high-class” */
}

.main-wrapper{
  width: 100%;
  min-height: 100vh;
  background: transparent;
  overflow-x: hidden;
}

.container-max.homesec{
  max-width: 1600px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px){
  .container-max.homesec{ padding-left: 40px; padding-right: 40px; }
}

.soft-line{ border-color: var(--line) !important; }
.soft-line-2{ border-color: var(--line2) !important; }

.text-muted{ color: var(--muted) !important; }
.text-muted2{ color: var(--muted2) !important; }

/* Visual mtavruli (არ ვაძალებთ uppercase-ს) */
.mtavruli{
  font-weight: 900 !important;
  letter-spacing: .10em;
}

/* Small UI text */
.util{
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: none;
}

/* =========================
   TOPBAR (ენის გადამრთველი + ავტორიზაცია არ უნდა დაიკარგოს)
   ========================= */
.topbar{ background: var(--dark); }
.topbar, .topbar *{ color: rgba(255,255,255,.90); }
.topbar a:hover, .topbar button:hover{ color:#fff; }

.lang-btn{
  color: rgba(255,255,255,.72) !important;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.lang-btn.active{ color: var(--accent) !important; }
.lang-btn:hover{ color:#fff !important; }

.auth-btn{
  color: rgba(255,255,255,.92) !important;
  font-weight: 700;
}
.auth-btn:hover{ color: var(--accent) !important; }

/* =========================
   CARDS / PANELS
   ========================= */
.card{
  background: var(--panel);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 10px 22px rgba(2,6,23,.06);
  transition: .25s ease;
}
.card:hover{
  box-shadow: 0 18px 40px rgba(2,6,23,.10);
  transform: translateY(-2px);
  border-color: rgba(15,23,42,.14);
}

.p-card{
  background:#fff;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 10px 22px rgba(2,6,23,.06);
  transition:.25s ease;
}
.p-card:hover{
  border-color: rgba(15,23,42,.16);
  box-shadow: 0 18px 40px rgba(2,6,23,.10);
  transform: translateY(-2px);
}

/* =========================
   BADGES
   ========================= */
.badge{
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.14);
  color: var(--text);
  backdrop-filter: blur(6px);
}
.badge.accent{
  background: rgba(243,146,0,.95);
  border-color: rgba(243,146,0,.60);
  color: #111;
}

/* =========================
   HEADER / NAV (სტაბილური სიმაღლე, რომ არ “იხტუნოს”)
   ========================= */
header.site-header{
  background:#fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(15,23,42,.10);
}

/* ორივე გვერდზე ერთნაირი “ქუდის” სიმაღლე */
.header-row{
  padding-top: 14px;
  padding-bottom: 14px;
}

.nav-link{
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 8px 0;
  color: var(--text);
}
.nav-link:hover{ color: var(--accent); }
@media (min-width: 1024px){
  .nav-link{ font-size: 16px; }
}

/* =========================
   SEARCH
   ========================= */
.search-wrapper{
  border: 1px solid rgba(15,23,42,.14);
  background: #fff;
  width: 100%;
  box-shadow: 0 10px 22px rgba(2,6,23,.06);
  transition: .2s;
}
.search-wrapper:focus-within{
  border-color: rgba(243,146,0,.65);
  box-shadow: 0 0 0 6px rgba(243,146,0,.14), 0 10px 22px rgba(2,6,23,.06);
}

/* =========================
   BUTTONS
   ========================= */
.btn-dark{
  background: var(--dark);
  color: #fff;
  transition: .2s;
}
.btn-dark:hover{ background: var(--accent); color:#111; }

.btn-ghost{
  border: 1px solid rgba(15,23,42,.18);
  color: var(--text);
  transition:.2s;
  background:#fff;
}
.btn-ghost:hover{ border-color: rgba(243,146,0,.55); }

/* =========================
   MEGA
   ========================= */
.mega{ display:none; }
.mega-parent:hover .mega{ display:block; }

/* =========================
   SLIDER
   ========================= */
#slider-container{ transition: transform .85s cubic-bezier(0.65,0,0.35,1); }
.dot{
  width: 10px; height: 10px;
  border: 2px solid rgba(255,255,255,.65);
  cursor: pointer; transition: .25s;
  opacity:.9;
  background: transparent;
}
.dot.active{
  background: var(--accent);
  border-color: var(--accent);
  width: 34px;
}

/* =========================
   MODAL
   ========================= */

.modal-overlay, .mobile-menu-overlay{ display:none; position:fixed; inset:0; background:rgba(2,6,23,.82); z-index: 3000; align-items:center; justify-content:center; padding:16px; }
.modal-overlay.active, .mobile-menu-overlay.active{ display:flex; }
.modal-box{ background:#fff; width:100%; max-width:460px; border-top:6px solid var(--accent); padding:42px; position:relative; }
.mobile-menu{ width: min(86vw, 360px); height: 100%; background: #fff; transform: translateX(100%); transition: transform .28s ease; display: flex; flex-direction: column; }
.mobile-menu-overlay.active{ justify-content: flex-end; }
.mobile-menu-overlay.active .mobile-menu{ transform: translateX(0); }

.auth-step{ transition: all .3s ease; }
.hidden-step{ display:none; opacity:0; transform: translateX(20px); }






/* =========================
   BRANDS TRACK
   ========================= */
@keyframes scroll{ 0% {transform:translateX(0);} 100%{transform:translateX(-50%);} }
.brands-track{ display:flex; width:max-content; animation: scroll 26s linear infinite; }

/* =========================
   PRODUCT PAGE HELPERS (QARAVELI style)
   ========================= */
.thumb{
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  cursor:pointer;
  transition:.2s;
}
.thumb.active{
  border-color: rgba(243,146,0,.8) !important;
  box-shadow: 0 0 0 4px rgba(243,146,0,.12);
}
.thumb:hover{ border-color: rgba(15,23,42,.25); }

.tab-btn{
  padding: 14px 16px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  font-weight:800;
  letter-spacing:.04em;
  font-size: 12px;
  color: var(--muted);
  transition:.2s;
}
.tab-btn.active{
  border-color: rgba(243,146,0,.65);
  color: var(--text);
  box-shadow: 0 0 0 6px rgba(243,146,0,.10);
}

@media (min-width: 1024px){
  .sticky-buy{ position: sticky; top: 112px; }
}

/* Mobile sticky bar */
.mobile-bar{
  position: fixed;
  left:0; right:0; bottom:0;
  background:#fff;
  border-top: 1px solid rgba(15,23,42,.10);
  z-index: 2500;
  display:none;
  box-shadow: 0 -14px 30px rgba(2,6,23,.10);
}
@media (max-width: 1023px){
  .mobile-bar{ display:block; }
  body{ padding-bottom: 84px; }
}


/* =========================
   MOBILE MENU DRAWER
   ========================= */
.mobile-menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,.82);
  z-index: 2600;
  display: none;
  align-items: stretch;
  justify-content: flex-end;
}
.mobile-menu-overlay.active{ display:flex; }

.mobile-menu{
  width: min(86vw, 360px);
  height: 100%;
  background: #fff;
  border-left: 1px solid rgba(15,23,42,.10);
  box-shadow: -18px 0 50px rgba(2,6,23,.20);
  transform: translateX(100%);
  transition: transform .28s ease;
  display: flex;
  flex-direction: column;
}
.mobile-menu-overlay.active .mobile-menu{
  transform: translateX(0);
}

a{cursor:pointer}
.mega-parent .mega {
    top: 50%;
}







*{ border-radius: 0px !important; box-sizing: border-box; font-family: var(--font-body) !important; font-style: normal !important; }
html, body{ background: var(--soft); color: var(--text); -webkit-font-smoothing: antialiased; overflow-x: hidden; width: 100%; margin: 0; padding: 0; font-weight: 500; }

.main-wrapper{ width: 100%; min-height: 100vh; overflow-x: hidden; }
.container-max{ max-width: 1600px; margin: 0 auto; padding: 0 16px; width0: 100%; }
@media (min-width: 768px){ .container-max{ padding: 0 40px; } }

.mtavruli{ font-weight: 900 !important; letter-spacing: .08em; }
.util{ font-size: 12px; font-weight: 600; letter-spacing: .06em; }

header.site-header{ background:#fff; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--line); }
.search-wrapper{ border: 1px solid rgba(15,23,42,.14); background: #fff; box-shadow: 0 10px 22px rgba(2,6,23,.06); transition: .2s; }
.search-wrapper:focus-within{ border-color: rgba(243,146,0,.65); box-shadow: 0 0 0 6px rgba(243,146,0,.14); }

.btn-dark{ background: var(--dark); color: #fff; transition: .2s; }
.btn-dark:hover{ background: var(--accent); color:#111; }

.card{ background: var(--panel); border: 1px solid var(--line); box-shadow: 0 10px 22px rgba(2,6,23,.06); transition: .25s ease; }
.card:hover{ border-color: var(--accent); }

/* Sidebar Filter */
.filter-box { border: 1px solid var(--line); background: #fff; padding: 24px; margin-bottom: 12px; }
.filter-link { display: flex; justify-content: space-between; padding: 12px 0; font-size: 11px; font-weight: 900; text-transform: uppercase; border-bottom: 1px solid var(--soft); transition: .2s; }
.filter-link:hover { color: var(--accent); padding-left: 4px; }
.price-input { border: 2px solid var(--dark); padding: 10px; width: 100%; font-size: 12px; font-weight: 900; outline: none; }

/* Product Card */
.p-card { background:#fff; border: 1px solid var(--line); transition: .25s ease; }
.p-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }

/* Badge */
.badge{ padding: 6px 10px; font-size: 10px; font-weight: 800; background: rgba(255,255,255,.95); border: 1px solid var(--line2); }
.badge.accent{ background: var(--accent); color: #111; border: none; }

/* Modal & Menu */
.modal-overlay, .mobile-menu-overlay{ display:none; position:fixed; inset:0; background:rgba(2,6,23,.82); z-index: 3000; align-items:center; justify-content:center; padding:16px; }
.modal-overlay.active, .mobile-menu-overlay.active{ display:flex; }
.modal-box{ background:#fff; width:100%; max-width:460px; border-top:6px solid var(--accent); padding:42px; position:relative; }
.mobile-menu{ width: min(86vw, 360px); height: 100%; background: #fff; transform: translateX(100%); transition: transform .28s ease; display: flex; flex-direction: column; }
.mobile-menu-overlay.active{ justify-content: flex-end; }
.mobile-menu-overlay.active .mobile-menu{ transform: translateX(0); }

.no-scrollbar::-webkit-scrollbar { display: none; }









/* Category Cards */
.cat-card { background:#fff; border: 1px solid var(--line); transition: .2s; padding: 24px; display: flex; align-items: center; gap: 16px; }
.cat-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(2,6,23,.05); }
.cat-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--soft); color: var(--dark); }

/* Section Title */
.sec-title { border-left: 8px solid var(--accent); padding-left: 20px; margin-bottom: 32px; }





/* =========================
   MARKETS PAGE
   ========================= */

.markets-page{
  background:var(--soft);
  padding:28px 0 70px;
}

.markets-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:20px;
}

.markets-head h1{
  margin:0;
  font-size:34px;
  line-height:1.05;
  font-weight:900;
  letter-spacing:-.04em; 
  color:var(--text);
}

.markets-head p{
  margin:8px 0 0;
  color:var(--muted);
  font-size:13px;
  font-weight:650;
}

.open-store-btn{
  background:var(--dark);
  color:#fff;
  padding:13px 18px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.06em;
  white-space:nowrap;
  transition:.2s;
}

.open-store-btn:hover{
  background:var(--accent);
  color:#111;
}

.markets-toolbar{
  display:grid;
  grid-template-columns:1fr auto;
  gap:12px;
  margin-bottom:18px;
}

.markets-search{
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 10px 22px rgba(2,6,23,.06);
  display:flex;
  align-items:center;
  overflow:hidden;
}

.markets-search i{
  margin-left:14px;
  color:var(--muted);
}

.markets-search input{
  width:100%;
  border:0;
  outline:0;
  background:transparent;
  padding:13px 14px;
  font-size:14px;
  font-weight:650;
  color:var(--text);
}

.markets-count-box{
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 10px 22px rgba(2,6,23,.06);
  padding:13px 16px;
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  white-space:nowrap;
}

.markets-count-box strong{
  color:var(--text);
}

.markets-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}

.market-card{
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 10px 22px rgba(2,6,23,.06);
  padding:16px;
  min-height:128px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition:.22s ease;
  position:relative;
  overflow:hidden;
}

.market-card:hover {
	transform:translateY(-2px);
	border-color:rgba(243,146,0,.55);
	box-shadow: 8px 9px 20px #0004;
}

.market-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  right:0;
  height:4px;
  background:var(--accent);
}

.market-card-top{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  position:relative;
  z-index:2;
}

.market-logo-temp{
  width:48px;
  height:48px;
  min-width:48px;
  background:#f8f7f5;
  border:1px solid rgba(15,23,42,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--dark);
}

.market-logo-temp i{
  width:25px;
  height:25px;
  stroke-width:2.2;
}

.market-title{
  font-size:16px;
  font-weight:900;
  line-height:1.18;
  letter-spacing:-.02em;
  color:var(--text);
}

.market-desc{
  margin-top:4px;
  font-size:11px;
  font-weight:650;
  line-height:1.35;
  color:var(--muted);
}

.market-bottom{
  margin-top:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  position:relative;
  z-index:2;
}

.market-count{
  font-size:10px;
  font-weight:900;
  letter-spacing:.06em;
  color:var(--muted);
}

.market-enter{
  width:28px;
  height:28px;
  min-width:28px;
  background:var(--dark);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}

.market-card:hover .market-enter{
  background:var(--accent);
  color:#111;
}

.market-enter i{
  width:15px;
  height:15px;
}

.market-card.open-card{
  background:var(--dark);
  color:#fff;
  border-color:rgba(255,255,255,.08);
}

.market-card.open-card::before{
  background:var(--accent);
}

.market-card.open-card .market-logo-temp{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.12);
  color:var(--accent);
}

.market-card.open-card .market-title{
  color:#fff;
}

.market-card.open-card .market-desc,
.market-card.open-card .market-count{
  color:rgba(255,255,255,.62);
}

.market-card.open-card .market-enter{
  background:var(--accent);
  color:#111;
}

.markets-empty{
  display:none;
  margin-top:16px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 10px 22px rgba(2,6,23,.06);
  padding:18px;
  color:var(--muted);
  font-weight:800;
}