/* ===== ZIPPER GEORGIA — GEORGIAN NATIONAL STYLE (LIGHT) ===== */
/* Inspired by: mymarket.ge, lista.ge, tnet.ge, spar.ge, TBC Bank, BOG  */
:root {
  --red:      #CC1517;   /* Georgian flag red */
  --red-d:    #A80F11;
  --red-l:    #E52022;
  --red-bg:   #FEF2F2;   /* very light red tint */
  --gold:     #C9A04C;
  --dark:     #1A1208;
  --text:     #1C1C1C;
  --text-2:   #4A4440;
  --muted:    #6B6055;
  --border:   #E2D8D0;
  --bg:       #FFFFFF;
  --bg-2:     #FAF7F4;   /* warm off-white */
  --bg-3:     #F3EDE6;
  --white:    #FFFFFF;
  --shadow:   0 2px 12px rgba(0,0,0,.08);
  --shadow-h: 0 8px 32px rgba(0,0,0,.14);
  --font:     'Inter', system-ui, -apple-system, sans-serif;
  --ease:     cubic-bezier(.25,.46,.45,.94);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-weight: 800; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
a  { color: inherit; text-decoration: none; }

.container      { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; }

/* ── Georgian cross ornament ── */
.geo-cross-ornament {
  display: inline-block; position: relative;
  width: 18px; height: 18px; flex-shrink: 0;
}
.geo-cross-ornament::before,
.geo-cross-ornament::after {
  content: ''; position: absolute;
  background: currentColor; border-radius: 1px;
}
.geo-cross-ornament::before { width: 2px; height: 100%; top: 0; left: 50%; transform: translateX(-50%); }
.geo-cross-ornament::after  { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }

/* ── Topbar — Georgian Red (as on popular Georgian sites) ── */
.topbar-contacts {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1001; background: var(--red);
  height: 38px;
  border-bottom: 1px solid rgba(0,0,0,.12);
}
.topbar-contacts-inner {
  display: flex; align-items: center;
  height: 38px; justify-content: space-between; padding: 0 8px;
}
.topbar-georgia-badge {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,.95); letter-spacing: .06em; text-transform: uppercase;
}
.topbar-georgia-badge .geo-flag { font-size: 17px; line-height: 1; }
.topbar-contacts-right { display: flex; align-items: center; gap: 20px; }
.topbar-contact-item {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.9); font-size: 13px; font-weight: 500;
  text-decoration: none; transition: color .15s;
}
.topbar-contact-item:hover { color: #fff; }
.topbar-contact-item svg { flex-shrink: 0; opacity: .85; }

/* ── Header — WHITE (like all top Georgian sites) ── */
.site-header {
  position: fixed; top: 38px; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 2px solid var(--red);   /* Georgian red line under nav */
  box-shadow: 0 2px 16px rgba(0,0,0,.09);
  transition: all .3s var(--ease);
}
.nav-inner {
  display: flex; align-items: center; gap: 28px; padding: 12px 0;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav-logo img { height: 38px; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-size: 19px; font-weight: 800;
  color: var(--dark); letter-spacing: -.4px; line-height: 1.1;
}
.nav-logo-sub {
  font-size: 10px; color: var(--red); font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
}
.nav-links {
  display: flex; gap: 2px; flex: 1; justify-content: center; list-style: none;
}
.nav-links a {
  padding: 8px 15px; border-radius: 6px;
  font-size: 14px; font-weight: 600; color: var(--text-2);
  transition: all .18s;
}
.nav-links a:hover { color: var(--red); background: var(--red-bg); }
.nav-links a.active { color: var(--red); background: var(--red-bg); }
.nav-right { display: flex; align-items: center; gap: 10px; }

/* Language switcher */
.lang-switcher { display: flex; gap: 4px; }
.lang-btn {
  padding: 5px 10px; border-radius: 5px;
  font-size: 12px; font-weight: 700; color: var(--muted);
  border: 1px solid var(--border); background: transparent;
  cursor: pointer; transition: all .18s; text-transform: uppercase;
}
.lang-btn:hover, .lang-btn.active {
  color: var(--red); border-color: var(--red); background: var(--red-bg);
}

/* CTA nav button */
.btn-quote {
  padding: 10px 20px;
  background: var(--red);
  color: #fff; border-radius: 7px;
  font-size: 14px; font-weight: 700; border: none; cursor: pointer;
  transition: background .18s; text-decoration: none;
  box-shadow: 0 3px 10px rgba(204,21,23,.28);
}
.btn-quote:hover { background: var(--red-d); }
.nav-mobile-btn { display: none; background: none; border: none; color: var(--dark); font-size: 26px; cursor: pointer; }

/* ── Hero — Light Georgian style ── */
.hero {
  min-height: 88vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #FAF4F0 50%, #F5ECE6 100%);
  padding-top: 118px;
  border-bottom: 3px solid var(--red);
}
/* Subtle Georgian cross grid — very light */
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .45;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(204,21,23,.06) 2px, transparent 2px),
    linear-gradient(90deg, rgba(204,21,23,.06) 2px, transparent 2px);
  background-size: 240px 240px;
  opacity: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 620px; }

/* Georgian badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px;
  background: var(--red-bg); border: 1.5px solid rgba(204,21,23,.25);
  border-radius: 100px;
  font-size: 13px; font-weight: 700; color: var(--red);
  margin-bottom: 24px;
}
.hero h1 { color: var(--dark); margin-bottom: 18px; }
.hero h1 .accent { color: var(--red); }
.hero-sub { font-size: 17px; color: var(--text-2); margin-bottom: 34px; line-height: 1.75; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Large primary button */
.btn-primary-lg {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px;
  background: var(--red);
  color: #fff; border-radius: 9px;
  font-size: 16px; font-weight: 700; border: none; cursor: pointer;
  text-decoration: none; transition: all .2s var(--ease);
  box-shadow: 0 6px 24px rgba(204,21,23,.32);
}
.btn-primary-lg:hover { background: var(--red-d); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(204,21,23,.4); }

.btn-outline-lg {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 28px;
  background: #fff; color: var(--red);
  border: 2px solid var(--red); border-radius: 9px;
  font-size: 16px; font-weight: 700; text-decoration: none;
  transition: all .2s var(--ease);
}
.btn-outline-lg:hover { background: var(--red-bg); }

/* Hero visual */
.hero-visual {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 48%; overflow: hidden;
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .18; filter: grayscale(30%) contrast(1.1);
}
.hero-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #FAF4F0 0%, rgba(250,244,240,.5) 40%, transparent 100%);
}

/* Stats */
.hero-stats {
  display: flex; gap: 36px; margin-top: 44px; padding-top: 32px;
  border-top: 2px solid var(--border);
}
.stat-item .value {
  font-size: 26px; font-weight: 800; color: var(--red);
}
.stat-item .label { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ── Sections ── */
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-dark { background: var(--bg-2); }   /* light warm */
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--red); margin-bottom: 10px;
}
.section-label::before { content: '✛'; font-size: 11px; color: var(--red); }
.section-header h2 { color: var(--dark); margin-bottom: 14px; }
.section-header p  { color: var(--muted); font-size: 16px; max-width: 560px; margin: 0 auto; }

/* ── Georgian divider ── */
.geo-divider {
  display: flex; align-items: center; gap: 14px;
  margin: 0 auto 48px; max-width: 280px; color: var(--border);
}
.geo-divider::before,.geo-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

/* ── Category cards — WHITE like Georgian sites ── */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.category-card {
  position: relative; border-radius: 14px; overflow: hidden;
  cursor: pointer; transition: all .3s var(--ease);
  height: 300px; text-decoration: none; display: block;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-h);
  border-color: var(--red);
}
.category-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
  filter: brightness(.72) saturate(.9);
}
.category-card:hover img { transform: scale(1.06); filter: brightness(.65) saturate(1); }
.category-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.08) 55%, transparent 100%);
}
.category-card-shine { display: none; }
.category-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px; }
.category-card-content h3 { font-size: 1.2rem; color: #fff; margin-bottom: 5px; }
.category-card-content p  { font-size: 13px; color: rgba(255,255,255,.7); }
/* Red top accent on hover */
.category-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red); z-index: 2;
  transform: scaleX(0); transition: transform .3s var(--ease);
}
.category-card:hover::before { transform: scaleX(1); }
.category-card-arrow {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px;
  background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #fff; opacity: 0; transform: translateY(4px);
  transition: all .25s var(--ease);
}
.category-card:hover .category-card-arrow { opacity: 1; transform: translateY(0); }

/* ── Product cards — WHITE cards (Georgian style) ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 20px; }
.product-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  transition: all .25s var(--ease); display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: var(--red); transform: translateY(-4px);
  box-shadow: var(--shadow-h);
}
.product-img { height: 210px; position: relative; overflow: hidden; background: var(--bg-2); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 10px; left: 10px;
  padding: 4px 10px; background: var(--red);
  color: #fff; font-size: 11px; font-weight: 700;
  border-radius: 5px; text-transform: uppercase; letter-spacing: .4px;
}
.product-info { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-info h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 7px; }
.product-sku  { font-size: 12px; color: var(--muted); margin-bottom: 7px; }
.product-info p { font-size: 13px; color: var(--text-2); line-height: 1.6; flex: 1; }
.product-footer { padding: 12px 18px; border-top: 1px solid var(--border); background: var(--bg-2); }
.product-card-links { display: flex; gap: 8px; flex-wrap: wrap; }

.btn-inquire {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  flex: 1; padding: 10px;
  background: var(--red); color: #fff; border: none; border-radius: 8px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  text-align: center; text-decoration: none; transition: background .18s;
}
.btn-inquire:hover { background: var(--red-d); }
.btn-detail {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 14px; border-radius: 8px;
  background: var(--bg-2); border: 1.5px solid var(--border);
  color: var(--text-2); font-size: 13px; font-weight: 600;
  text-decoration: none; transition: all .18s;
}
.btn-detail:hover { border-color: var(--red); color: var(--red); background: var(--red-bg); }

/* ── Why Us — white cards with red top ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.feature-card {
  background: #fff; border: 1.5px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: 12px; padding: 28px 24px;
  transition: all .25s var(--ease);
  box-shadow: var(--shadow);
}
.feature-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-h);
  border-color: var(--red);
}
.feature-icon {
  width: 52px; height: 52px;
  background: var(--red-bg); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
  border: 1.5px solid rgba(204,21,23,.15);
}
.feature-card h3 { font-size: 16px; color: var(--dark); margin-bottom: 8px; }
.feature-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── Catalog cards — WHITE ── */
.catalog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 20px; }
.catalog-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: all .25s var(--ease); display: flex; flex-direction: column;
  box-shadow: var(--shadow);
}
.catalog-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow-h); }
.catalog-cover { height: 195px; background: var(--bg-2); overflow: hidden; }
.catalog-cover img { width:100%;height:100%;object-fit:cover; }
.catalog-cover-empty {
  height: 195px; display: flex; align-items: center; justify-content: center;
  font-size: 60px; background: var(--bg-2);
}
.catalog-info { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.catalog-info h3 { font-size: 16px; color: var(--dark); margin-bottom: 7px; }
.catalog-info p  { font-size: 13px; color: var(--muted); line-height: 1.6; flex: 1; }
.btn-download {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 16px; padding: 11px 20px;
  background: var(--red); color: #fff; border-radius: 8px;
  font-size: 14px; font-weight: 700; text-decoration: none; transition: background .18s;
  cursor: pointer; border: none;
}
.btn-download:hover { background: var(--red-d); }

/* ── Contact section ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 44px; align-items: start; }
@media(max-width:860px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--red-bg); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; border: 1.5px solid rgba(204,21,23,.2);
}
.contact-item-text .label { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 3px; }
.contact-item-text .value { font-size: 15px; color: var(--text); }

/* Contact form */
.contact-form-wrap {
  background: #fff; border: 1.5px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: 14px; padding: 32px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media(max-width:600px){ .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-label { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; }
.form-control {
  background: var(--bg-2); border: 1.5px solid var(--border);
  border-radius: 8px; padding: 11px 14px; color: var(--text);
  font-size: 14px; transition: border-color .18s; width: 100%;
}
.form-control:focus { outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 3px rgba(204,21,23,.08); }
.form-control::placeholder { color: var(--muted); opacity: .6; }
textarea.form-control { resize: vertical; }
select.form-control { cursor: pointer; }
.gdpr-label { display: flex; gap: 9px; align-items: flex-start; cursor: pointer; }
.gdpr-label input { margin-top: 3px; flex-shrink: 0; accent-color: var(--red); }
.gdpr-label span { font-size: 13px; color: var(--muted); line-height: 1.5; }
.btn-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 14px 30px; border-radius: 9px; border: none; cursor: pointer;
  background: var(--red); color: #fff;
  font-size: 15px; font-weight: 700;
  box-shadow: 0 4px 18px rgba(204,21,23,.3);
  transition: all .2s; width: 100%;
}
.btn-submit:hover { background: var(--red-d); box-shadow: 0 8px 28px rgba(204,21,23,.42); }

/* Alert */
.alert { padding: 13px 16px; border-radius: 10px; margin-bottom: 18px; font-size: 14px; }
.alert-success { background: #F0FDF4; border: 1.5px solid #86EFAC; color: #166534; }
.alert-error   { background: var(--red-bg); border: 1.5px solid rgba(204,21,23,.3); color: var(--red-d); }

/* Filter bar */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn {
  padding: 7px 16px; border-radius: 100px;
  background: var(--bg-2); border: 1.5px solid var(--border);
  color: var(--text-2); font-size: 13px; font-weight: 600; cursor: pointer; transition: all .18s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--red); border-color: var(--red); color: #fff;
}

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); margin-bottom: 28px; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); transition: color .15s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--red); font-weight: 600; }

/* Page hero — LIGHT */
.page-hero {
  padding: 148px 0 56px;
  background: linear-gradient(135deg, var(--bg-2) 0%, #FAF4F0 100%);
  border-bottom: 2px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px; opacity: .4;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--dark); margin-bottom: 10px; }
.page-hero p   { color: var(--muted); font-size: 17px; }

/* ── Footer — DARK RED like Rustavi2, Liberty Bank etc. ── */
.site-footer {
  background: #1A0A0A;    /* very dark warm */
  border-top: 4px solid var(--red);
  padding: 64px 0 32px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(204,21,23,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,21,23,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.site-footer > .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px; margin-bottom: 44px;
}
.footer-brand img { height: 38px; margin-bottom: 14px; filter: brightness(10); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 270px; }
.footer-contacts { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.footer-contact-link {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.55); font-size: 14px; text-decoration: none; transition: color .18s;
}
.footer-contact-link:hover { color: var(--red-l); }
.footer-contact-link svg { flex-shrink: 0; color: var(--red); }
.footer-col h4 {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: rgba(255,255,255,.4); margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.65); transition: color .18s; }
.footer-col a:hover { color: var(--red-l); }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.12);
  transition: all .18s; text-decoration: none;
}
.social-icon svg { width: 17px; height: 17px; }
.social-icon:hover { color: #fff; border-color: var(--red); background: rgba(204,21,23,.25); }

/* Georgian flag footer stripe */
.footer-georgia-stripe {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 14px 0 8px;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-bottom: 14px;
  font-size: 13px; color: rgba(255,255,255,.4);
}
.footer-georgia-stripe .flag { font-size: 20px; }
.footer-georgia-stripe .geo-text { color: rgba(255,255,255,.7); font-weight: 600; }
.footer-georgia-stripe .geo-script { color: var(--red-l); font-size: 15px; font-weight: 700; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; border-top: 1px solid rgba(255,255,255,.07);
  font-size: 13px; color: rgba(255,255,255,.35); flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,.35); transition: color .18s; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }
.footer-dev-credit {
  display: inline-flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,.35); text-decoration: none; font-size: 12px;
  opacity: .7; transition: opacity .18s;
}
.footer-dev-credit:hover { opacity: 1; color: rgba(255,255,255,.7); }
.footer-dev-credit img { border-radius: 3px; display: block; filter: brightness(3); }
.footer-dev-name { font-weight: 600; }

/* Representative notice */
.footer-representative {
  text-align: center; padding: 10px 0 7px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 13px; color: rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center; gap: 7px; flex-wrap: wrap;
}
.footer-rep-link { color: var(--red-l); font-weight: 600; text-decoration: none; }
.footer-rep-link:hover { color: #fff; text-decoration: underline; }

/* Contact representative badge */
.contact-representative {
  display: flex; align-items: center; gap: 12px; margin-top: 20px;
  padding: 14px 18px;
  background: var(--red-bg); border: 1.5px solid rgba(204,21,23,.2); border-radius: 10px;
}
.contact-rep-badge { font-size: 26px; flex-shrink: 0; }
.contact-rep-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; font-weight: 700; margin-bottom: 3px; }
.contact-rep-link { font-size: 14px; font-weight: 700; color: var(--red); text-decoration: none; transition: color .18s; }
.contact-rep-link:hover { color: var(--red-d); text-decoration: underline; }

/* ── Cookie bar ── */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 2px solid var(--red);
  box-shadow: 0 -4px 24px rgba(0,0,0,.12);
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  z-index: 999; font-size: 14px; color: var(--text-2); flex-wrap: wrap;
}
.cookie-bar a { color: var(--red); text-decoration: underline; }
.cookie-btn {
  padding: 9px 20px; background: var(--red); color: #fff;
  border: none; border-radius: 7px; font-size: 14px; font-weight: 700;
  cursor: pointer; white-space: nowrap; transition: background .18s;
}
.cookie-btn:hover { background: var(--red-d); }

/* ── Mobile nav ── */
.mobile-menu {
  display: none; position: fixed; top: 100px; left: 0; right: 0;
  background: #fff; border-bottom: 2px solid var(--red);
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
  padding: 12px 20px; flex-direction: column; gap: 2px;
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 11px 14px; border-radius: 8px;
  font-size: 15px; font-weight: 600; color: var(--text-2); transition: all .15s;
}
.mobile-menu a:hover { background: var(--red-bg); color: var(--red); }
.mobile-menu .lang-row { display: flex; gap: 7px; padding: 10px 14px 4px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-links, .nav-right { display: none; }
  .nav-mobile-btn { display: block; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 136px 0 72px; }
  .topbar-georgia-badge { display: none; }
  .hero-content { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero-stats { flex-direction: column; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
}

/* ══ PRODUCT DETAIL ══════════════════════ */
.product-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start;
}
@media(max-width:860px){ .product-detail-grid { grid-template-columns:1fr; gap:28px; } }
.gallery-main {
  border-radius: 14px; overflow: hidden; aspect-ratio: 1/1;
  background: var(--bg-2); border: 1.5px solid var(--border);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-main:hover img { transform: scale(1.04); }
.gallery-placeholder { width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:72px;opacity:.25; }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.gallery-thumb {
  width: 68px; height: 68px; object-fit: cover; border-radius: 8px;
  cursor: pointer; border: 2px solid var(--border); opacity: .65; transition: all .18s;
}
.gallery-thumb.active, .gallery-thumb:hover { opacity: 1; border-color: var(--red); }

.product-info-block { display: flex; flex-direction: column; gap: 18px; }
.product-meta-row {
  display: flex; align-items: baseline; gap: 10px;
  padding: 11px 0; border-bottom: 1px solid var(--border);
}
.product-meta-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); min-width: 110px; flex-shrink: 0; }
.product-meta-value { color: var(--text); font-size: 15px; }
.product-description { color: var(--text-2); line-height: 1.75; font-size: 15px; padding: 14px 0; border-top: 1px solid var(--border); }
.product-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 13px 22px; border-radius: 9px;
  border: 2px solid var(--border); color: var(--text-2);
  font-size: 14px; font-weight: 600; text-decoration: none; transition: all .18s;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); background: var(--red-bg); }
.product-colors-block { display: flex; flex-direction: column; gap: 9px; }
.color-swatches { display: flex; gap: 7px; flex-wrap: wrap; }
.color-swatch {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid rgba(0,0,0,.12); cursor: default;
  transition: transform .14s; box-shadow: 0 2px 5px rgba(0,0,0,.2);
}
.color-swatch:hover { transform: scale(1.25); }

/* Page content */
.page-content p { margin-bottom: 15px; }
.page-content h2 { color: var(--dark); font-size: 1.35rem; margin: 26px 0 12px; }
.page-content h3 { color: var(--dark); font-size: 1.1rem; margin: 20px 0 9px; }
.page-content ul, .page-content ol { padding-left: 20px; margin-bottom: 15px; display: flex; flex-direction: column; gap: 5px; }
.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }
.page-content a { color: var(--red); text-decoration: underline; }
.page-content strong { color: var(--dark); }

/* Shop & Pricelist */
.btn-shop, .btn-pricelist {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 13px; border-radius: 7px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  transition: all .18s; white-space: nowrap; cursor: pointer; border: none;
}
.btn-shop {
  background: #E85000; color: #fff;
  box-shadow: 0 3px 10px rgba(232,80,0,.25);
}
.btn-shop:hover { background: #C44400; }
.btn-pricelist {
  background: var(--bg-2); color: var(--dark);
  border: 1.5px solid var(--border) !important;
}
.btn-pricelist:hover { border-color: var(--red) !important; color: var(--red); background: var(--red-bg); }

/* Pricelist dropdown */
.pricelist-dropdown { position: relative; }
.pricelist-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 6px); right: 0;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 10px; min-width: 200px; padding: 6px 0;
  box-shadow: var(--shadow-h); z-index: 200;
}
.pricelist-dropdown.open .pricelist-dropdown-menu { display: block; }
.pricelist-dropdown-menu a { display: block; padding: 8px 16px; font-size: 13px; color: var(--text-2); text-decoration: none; }
.pricelist-dropdown-menu a:hover { background: var(--red-bg); color: var(--red); }

/* Pricelist cards */
.pricelist-cards { display: flex; flex-direction: column; gap: 10px; max-width: 640px; margin: 0 auto; }
.pricelist-card {
  display: flex; align-items: center; gap: 18px;
  padding: 16px 22px; background: #fff;
  border: 1.5px solid var(--border); border-radius: 12px;
  text-decoration: none; color: var(--text); transition: all .22s;
  box-shadow: var(--shadow);
}
.pricelist-card:hover { border-color: var(--red); transform: translateX(4px); box-shadow: var(--shadow-h); }
.pricelist-card-icon { flex-shrink: 0; }
.pricelist-card-info { flex: 1; }
.pricelist-card-name { font-size: 15px; font-weight: 700; color: var(--dark); }
.pricelist-card-meta { font-size: 12px; color: var(--red); margin-top: 3px; text-transform: uppercase; letter-spacing: .05em; }
.pricelist-card-arrow { color: var(--red); opacity: .6; flex-shrink: 0; }
.pricelist-card:hover .pricelist-card-arrow { opacity: 1; }

/* ── Trust strip (homepage, like spar.ge / mymarket.ge) ── */
.trust-strip {
  background: #fff; border-bottom: 2px solid var(--border);
  padding: 18px 0;
}
.trust-strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 28px;
}
.trust-icon { font-size: 26px; flex-shrink: 0; }
.trust-title { font-size: 14px; font-weight: 700; color: var(--dark); }
.trust-sub   { font-size: 12px; color: var(--muted); margin-top: 2px; }
.trust-sep {
  width: 1px; height: 40px;
  background: var(--border); flex-shrink: 0;
}
.trust-wa-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 8px;
  background: #25D366; color: #fff;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: background .18s;
}
.trust-wa-btn:hover { background: #1EBE5A; }
@media(max-width:900px){
  .trust-sep { display: none; }
  .trust-strip-inner { justify-content: flex-start; gap: 0; }
  .trust-item { padding: 8px 16px; }
  .trust-brand-logo { height: 80px !important; max-width: 280px !important; }
}
@media(max-width:600px){
  .trust-brand-logo { height: 60px !important; max-width: 200px !important; }
  .trust-item-brand { padding: 6px 16px; }
}

/* ── Hero trust chips ── */
.hero-trust-row {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px;
}
.trust-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 13px; border-radius: 100px;
  background: var(--bg-2); border: 1.5px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--text-2);
}

/* ── WhatsApp hero / CTA buttons ── */
.btn-whatsapp-hero {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 24px; border-radius: 9px;
  background: #25D366; color: #fff;
  font-size: 15px; font-weight: 700; text-decoration: none;
  transition: background .2s;
  box-shadow: 0 6px 24px rgba(37,211,102,.32);
}
.btn-whatsapp-hero:hover { background: #1EBE5A; }
.btn-whatsapp-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 28px; border-radius: 9px;
  background: #25D366; color: #fff;
  font-size: 16px; font-weight: 700; text-decoration: none;
  transition: all .2s;
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
}
.btn-whatsapp-cta:hover { background: #1EBE5A; transform: translateY(-2px); }

/* ── How to order — steps ── */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px;
}
.step-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 12px; padding: 28px 22px;
  position: relative; transition: all .25s var(--ease);
  box-shadow: var(--shadow);
}
.step-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow-h); }
.step-num {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--red); color: #fff;
  font-size: 22px; font-weight: 800; margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(204,21,23,.3);
}
.step-card h3 { font-size: 16px; color: var(--dark); margin-bottom: 8px; }
.step-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── CTA band ── */
.cta-band {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-d) 100%);
  padding: 64px 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 36px 36px;
}
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-band-text { flex: 1; min-width: 260px; }
.cta-band-flag { font-size: 32px; margin-bottom: 10px; }
.cta-band-text h2 { color: #fff; font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 8px; }
.cta-band-text p  { color: rgba(255,255,255,.8); font-size: 16px; }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.cta-band-actions .btn-primary-lg {
  background: #fff; color: var(--red);
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
}
.cta-band-actions .btn-primary-lg:hover { background: var(--bg-2); }

/* ── WhatsApp float ── */
.whatsapp-float {
  position: fixed; bottom: 90px; right: 24px; z-index: 998;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff; border-radius: 50px;
  padding: 13px 20px 13px 16px;
  text-decoration: none; font-weight: 700; font-size: 14px;
  box-shadow: 0 6px 28px rgba(37,211,102,.45);
  transition: all .25s var(--ease);
}
.whatsapp-float:hover {
  background: #1EBE5A; transform: scale(1.04);
  box-shadow: 0 10px 36px rgba(37,211,102,.55);
}
.whatsapp-float-label { white-space: nowrap; }

/* ── Contact messengers block ── */
.contact-messengers {
  margin-top: 28px; padding: 20px;
  background: #fff; border: 1.5px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow);
}
.contact-messengers-title {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--muted); margin-bottom: 14px;
}
.contact-messengers-grid {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.messenger-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 10px;
  font-size: 14px; font-weight: 700; text-decoration: none; transition: all .2s;
  flex: 1; min-width: 130px; justify-content: center;
}
.messenger-wa      { background: #25D366; color: #fff; }
.messenger-wa:hover { background: #1EBE5A; transform: translateY(-2px); }
.messenger-viber   { background: #665CAC; color: #fff; }
.messenger-viber:hover { background: #5248A0; transform: translateY(-2px); }
.messenger-telegram { background: #2CA5E0; color: #fff; }
.messenger-telegram:hover { background: #1D8FC5; transform: translateY(-2px); }
.messenger-phone   { background: var(--red-bg); color: var(--red); border: 1.5px solid rgba(204,21,23,.2); }
.messenger-phone:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.contact-messengers-note {
  margin-top: 12px; font-size: 12px; color: var(--muted);
  font-style: italic;
}

/* ── Manufacturer logo in footer (dark bg → white logo) ── */
.footer-manufacturer-logo-link {
  display: inline-flex; align-items: center;
  text-decoration: none; opacity: .7; transition: opacity .2s;
}
.footer-manufacturer-logo-link:hover { opacity: 1; }
.footer-manufacturer-logo {
  height: 36px; width: auto; max-width: 180px;
  filter: brightness(0) invert(1);
  display: block; object-fit: contain;
}
.footer-manufacturer-logo-fallback { color: var(--red-l); font-weight: 700; font-size: 14px; }

/* ── Manufacturer logo in trust strip (white bg → natural color) ── */
.trust-item-brand { padding: 8px 24px; }
.trust-brand-link {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  text-decoration: none;
  opacity: .85; transition: opacity .2s;
}
.trust-brand-link:hover { opacity: 1; }
.trust-brand-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted);
}
.trust-brand-logo {
  height: 120px; width: auto; max-width: 440px;
  display: block; object-fit: contain;
  filter: grayscale(20%) contrast(1.05);
  transition: filter .2s;
}
.trust-brand-link:hover .trust-brand-logo { filter: none; }
.trust-brand-fallback { color: var(--dark); font-weight: 700; font-size: 14px; }

/* ══ MOBILE FIXES ════════════════════════════════════════════════ */

/* Topbar: hide email text on small screens to prevent overflow */
@media(max-width:600px){
  .topbar-contacts-right { gap: 12px; }
  .topbar-contact-item:not(.topbar-phone):not(.topbar-wa) { display: none; }
}
@media(max-width:400px){
  .topbar-contact-item.topbar-phone strong { display: none; }
  .topbar-contact-item.topbar-phone::after { content: attr(href); font-size: 12px; }
  .topbar-wa span { display: none; }
}

/* Trust strip: scrollable horizontally on very small screens */
@media(max-width:480px){
  .trust-strip-inner { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; justify-content: flex-start; padding: 0 8px; }
  .trust-strip-inner::-webkit-scrollbar { display: none; }
  .trust-item { flex-shrink: 0; }
  .trust-item-brand { flex-shrink: 0; }
}

/* Footer representative block: wrap on mobile */
@media(max-width:600px){
  .footer-representative { flex-direction: column; text-align: center; gap: 6px; }
  .footer-manufacturer-logo-link { justify-content: center; }
  .footer-manufacturer-logo { height: 28px; max-width: 140px; }
}

/* Mobile menu: add WhatsApp link styling */
.mobile-menu-wa {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 14px; border-radius: 8px;
  font-size: 15px; font-weight: 700;
  color: #25D366; text-decoration: none; transition: all .15s;
}
.mobile-menu-wa:hover { background: #e8fdf0; }
