@view-transition {
  navigation: auto;
}

:root {
  --bg: #12100e;
  --cream: #f3eadc;
  --cream-dim: #cbbba4;
  --gold: #c4a574;
  --ease: cubic-bezier(0.33, 1, 0.68, 1);
  --dur: 900ms;
  --ink: #1c140f;
  --ink-2: #241a13;
  --accent: #c89550;
  --accent-soft: rgba(200, 149, 80, 0.25);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--cream);
  font-family: "Noto Sans Georgian", system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  user-select: none;
  transition: background-color var(--dur) ease;
}

/* --- გემოების მიხედვით ინდივიდუალური ფონები --- */
body.tea-classic { 
  --ink: #1c140f; 
  --ink-2: #241a13; 
  --accent: #c89550; 
  --accent-soft: rgba(200, 149, 80, 0.25); 
}

body.tea-honey { 
  --ink: #0f172a; 
  --ink-2: #1e293b; 
  --accent: #38bdf8; 
  --accent-soft: rgba(56, 189, 248, 0.22); 
}

body.tea-rose { 
  --ink: #0a1c14; 
  --ink-2: #122e22; 
  --accent: #2ecc71; 
  --accent-soft: rgba(46, 204, 113, 0.22); 
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3 {
  font-family: "Noto Serif Georgian", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 0.45em;
}

h1 { font-size: clamp(1.8rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.3rem, 3vw, 2rem); }

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header */
.site-header {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.15rem 6vw;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  text-decoration: none;
}

.header-logo:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.header-logo img {
  border: solid #c8a253 2px;
  border-radius: 8px;
  width: 55px; 
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 1.35rem;
}

.nav a {
  position: relative;
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.92rem;
  white-space: nowrap;
  user-select: none;
  cursor: pointer;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav a:hover::after,
.nav a.is-active::after {
  width: 100%;
}

.nav a:hover,
.nav a.is-active {
  color: var(--cream);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 40;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--cream);
  margin: 6px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

main {
  position: relative;
  z-index: 2;
  padding: 0 4vw 4rem;
}

.view:not(.is-active),
.view[hidden] {
  display: none !important;
}

.hero {
  text-align: center;
  padding: 0.4rem 0 0.2rem;
}

.hero h1 { margin: 8px; }

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.stage-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.stage {
  position: relative;
  height: 400px; 
  margin: 0 auto;
  perspective: 1200px;
}

.pack {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 210px; 
  height: 320px; 
  margin-top: -160px;
  margin-left: -105px;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  transition: transform var(--dur) var(--ease), filter var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.pack img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
}

.pack[data-slot="front"] {
  transform: translate3d(0, 0, 0) scale(1);
  z-index: 3;
  opacity: 1;
  filter: brightness(1);
}

.pack[data-slot="left"] {
  transform: translate3d(-160px, 0, -140px) rotateY(25deg) scale(0.8);
  z-index: 2;
  opacity: 0.6;
  filter: brightness(0.6);
}

.pack[data-slot="right"] {
  transform: translate3d(160px, 0, -140px) rotateY(-25deg) scale(0.8);
  z-index: 2;
  opacity: 0.6;
  filter: brightness(0.6);
}

.stage-caption {
  text-align: center;
  font-family: "Noto Serif Georgian", serif;
  font-size: 1.2rem;
  color: var(--cream);
  margin-top: 1rem;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.stage-caption.is-swap {
  opacity: 0;
  transform: translateY(6px);
}

.interactive-stage {
  position: relative;
  min-height: 70vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  padding: 20px 0;
  background: radial-gradient(ellipse 60% 45% at 50% 8%, var(--accent-soft), transparent 70%), var(--ink);
  transition: background var(--dur) ease, background-color var(--dur) ease;
}

.stage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(10px, 2vw, 20px) clamp(24px, 5vw, 56px) 0;
}

.mark {
  font-family: 'Noto Serif Georgian', serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--cream);
}

.dots { display: flex; gap: 10px; }
.dot {
  width: 8px; height: 8px;
  border-radius: 1px;
  background: var(--cream-dim);
  opacity: .4;
  transform: rotate(45deg);
  cursor: pointer;
  transition: opacity .4s ease, background .4s ease, transform .4s ease;
  border: none; padding: 0;
}
.dot.active { opacity: 1; background: var(--accent); transform: rotate(45deg) scale(1.25); }

.interactive-main {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 50px);
  padding: 0 clamp(24px, 6vw, 80px);
  position: relative;
}

.art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: min(45vh, 320px); 
}

.flavor-pack-img {
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 12px 25px rgba(0,0,0,0.5));
  transition: opacity 0.3s ease, transform 0.35s ease;
}

.panel { position: relative; min-height: 280px; }
.tea-copy {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0; transform: translateX(24px);
  pointer-events: none;
  transition: opacity var(--dur) cubic-bezier(.22,.61,.36,1), transform var(--dur) cubic-bezier(.22,.61,.36,1);
}
.tea-copy.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.tea-copy.leaving { opacity: 0; transform: translateX(-24px); }

.kicker {
  font-size: .9rem;
  color: var(--accent);
  margin: 0 0 8px;
  font-weight: 500;
  transition: color var(--dur) ease;
}

.desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--cream-dim);
  max-width: 44ch;
  margin: 0 0 12px;
}

.disclaimer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e57373;
  font-size: 0.82rem;
  font-weight: 500;
  margin: 4px 0 12px;
  opacity: 0.9;
}

.disclaimer::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #e57373;
  border-radius: 50%;
  flex-shrink: 0;
}

.tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.tag {
  font-size: .75rem;
  padding: 4px 10px;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 999px;
  transition: color var(--dur) ease, border-color var(--dur) ease;
}

/* --- მომზადების წესი (Brewing Guide) --- */
.brewing-guide {
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid var(--accent);
  padding: 8px 12px;
  border-radius: 0 8px 8px 0;
  margin: 4px 0 0 0;
  max-width: 48ch;
  text-align: left;
  transition: border-color var(--dur) ease;
}

.brewing-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
  display: block;
}

.brewing-text {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--cream-dim);
  margin: 0;
}

.navbtn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border: 1px solid var(--cream-dim);
  background: transparent;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--cream);
  z-index: 5;
  transition: border-color .3s ease, background .3s ease, transform .2s ease;
}
.navbtn:hover { border-color: var(--accent); background: var(--accent-soft); }
.navbtn:active { transform: translateY(-50%) scale(.92); }
.navbtn.prev { left: clamp(8px, 2vw, 24px); }
.navbtn.next { right: clamp(8px, 2vw, 24px); }
.navbtn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* --- სად ვიყიდო / მაღაზიების ძებნა --- */
.buy-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

.buy-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.buy-sub {
  color: var(--cream-dim);
  font-size: 0.95rem;
  max-width: 46ch;
  margin: 0.4rem auto 0;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 480px;
  margin: 0 auto 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 165, 116, 0.35);
  border-radius: 999px;
  padding: 0.2rem 0.4rem 0.2rem 1.1rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.search-box:focus-within {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}

.search-icon {
  width: 18px;
  height: 18px;
  color: var(--cream-dim);
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.search-box:focus-within .search-icon {
  color: var(--accent);
}

.city-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  color: var(--cream);
  font-family: "Noto Sans Georgian", sans-serif;
  font-size: 0.95rem;
  padding: 0.75rem 0.6rem;
}

.city-input::placeholder {
  color: var(--cream-dim);
  opacity: 0.7;
}

.buy-results {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.city-group {
  animation: fadeUp 0.4s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.city-heading {
  font-family: "Noto Serif Georgian", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 0.7rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(196, 165, 116, 0.2);
}

.store-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.store-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.store-card:hover {
  border-color: rgba(196, 165, 116, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

/* --- ლოგოს სტილები --- */
.store-logo {
  height: 28px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 4px;
}

.store-chain {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
}

.chain-carrefour { color: #6fa8dc; border: 1px solid #6fa8dc; }
.chain-libre     { color: #e0954f; border: 1px solid #e0954f; }
.chain-magniti   { color: #5cb887; border: 1px solid #5cb887; }
.chain-willmart  { color: #e74c3c; border: 1px solid #e74c3c; }

.store-address {
  color: var(--cream-dim);
  font-size: 0.9rem;
  line-height: 1.5;
}

.buy-empty {
  text-align: center;
  color: var(--cream-dim);
  font-size: 0.9rem;
  padding: 1rem 0;
}

.buy-hint {
  text-align: center;
  color: var(--cream-dim);
  font-size: 0.9rem;
  opacity: 0.6;
  padding: 1rem 0;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 10;
  background: rgba(28, 24, 20, 0.6);
  border-top: 1px solid rgba(196, 165, 116, 0.15);
  padding: 3rem 6vw 1.5rem;
  margin-top: 4rem;
  backdrop-filter: blur(10px);
}

.footer-container {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-logo {
  font-family: "Noto Serif Georgian", serif;
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  color: var(--cream);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.8rem;
}

.footer-desc {
  color: var(--cream-dim);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
  max-width: 280px;
}

.footer-title {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--cream);
  transform: translateX(3px);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.social-links a {
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.social-links a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

/* ==========================================================================
   RESPONSIVE & MOBILE OPTIMIZATION
   ========================================================================== */

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  
  .nav {
    position: absolute;
    top: 100%;
    right: 6vw;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.2rem 1.6rem;
    background: #1c1814;
    border: 1px solid rgba(196, 165, 116, 0.2);
    border-radius: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }

  .nav.is-open { 
    opacity: 1; 
    visibility: visible; 
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  main { padding: 0 3vw 2rem; }
  
  .interactive-stage {
    min-height: auto;
    padding: 16px 0 24px;
  }

  .interactive-main { 
    grid-template-columns: 1fr; 
    grid-template-rows: auto auto; 
    padding: 10px 20px; 
    gap: 20px;
  }

  .art { 
    height: 220px; 
    order: 1; 
  }

  .flavor-pack-img { 
    max-height: 200px; 
  }

  .panel { 
    order: 2; 
    min-height: auto; 
    text-align: center; 
  }

  .tea-copy { 
    position: relative; 
    inset: auto;
    align-items: center; 
    text-align: center;
  }

  .tea-copy:not(.active) {
    display: none;
  }

  .desc { 
    margin-left: auto; 
    margin-right: auto; 
    font-size: 0.88rem;
  }

  .disclaimer {
    justify-content: center;
  }

  .tags { 
    justify-content: center; 
  }

  .brewing-guide {
    text-align: center;
    border-left: none;
    border-top: 2px solid var(--accent);
    border-radius: 0 0 8px 8px;
    margin: 8px auto 0;
  }

  .navbtn { 
    top: 110px; 
    transform: translateY(0);
    width: 38px;
    height: 38px;
  }

  .navbtn.prev { left: 10px; }
  .navbtn.next { right: 10px; }

  .footer-container { 
    grid-template-columns: 1fr; 
    gap: 2rem; 
    text-align: center;
  }

  .footer-desc {
    margin: 0 auto;
  }

  .social-links {
    align-items: center;
  }

  .stage {
    height: 300px;
  }

  .pack {
    width: 160px;
    height: 240px;
    margin-top: -120px;
    margin-left: -80px;
  }

  .pack[data-slot="left"] {
    transform: translate3d(-70px, 0, -80px) rotateY(20deg) scale(0.75);
  }

  .pack[data-slot="right"] {
    transform: translate3d(70px, 0, -80px) rotateY(-20deg) scale(0.75);
  }
}

@media (max-width: 560px) {
  .store-card { 
    flex-direction: row; 
    align-items: center; 
    gap: 0.8rem; 
  }

  .search-box {
    max-width: 100%;
  }
}
/* --- BRAND VIEW FULLSCREEN BACKGROUND FIX --- */
#view-brand {
  position: relative;
  min-height: 100vh;
  width: 100%;
  padding: clamp(2rem, 5vw, 4rem) 1rem;
}

/* მთლიანი ეკრანის ფონი (Fixed Fullscreen) */
.brand-full-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: bgFadeLoopTwo 12s infinite ease-in-out;
  filter: brightness(0.65);
}

.bg-slide.slide-1 {
  background-image: url('pics/489454925_122121008108745834_321887802962487731_n.jpg');
  animation-delay: 0s;
}

.bg-slide.slide-3 {
  background-image: url('pics/560446916_122149236878745834_7847249823396152791_n.jpg');
  animation-delay: 6s;
}

@keyframes bgFadeLoopTwo {
  0% { opacity: 0; }
  10% { opacity: 1; }
  50% { opacity: 1; }
  60% { opacity: 0; }
  100% { opacity: 0; }
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(10, 8, 6, 0.4) 0%, rgba(10, 8, 6, 0.82) 100%);
}

.brand-content-wrap {
  position: relative;
  z-index: 2;
  max-width: 950px;
  margin: 0 auto;
}

.brand-header {
  text-align: center;
  margin-bottom: 2rem;
}

.brand-header h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: #c4a574;
  letter-spacing: 0.08em;
  margin: 0.2rem 0 1rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
}

.brand-main-desc {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  line-height: 1.7;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
  font-weight: 500;
  max-width: 750px;
  margin: 0 auto;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.brand-card {
  background: rgba(18, 14, 11, 0.72);
  border: 1px solid rgba(196, 165, 116, 0.35);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.brand-card h3 {
  color: #c4a574;
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
}

.benefit-list li {
  font-size: 0.92rem;
  color: #f7f3ec;
  margin-bottom: 0.5rem;
}

.disclaimer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.disclaimer-pills span {
  font-size: 0.75rem;
  padding: 5px 10px;
  background: rgba(196, 165, 116, 0.2);
  border: 1px solid rgba(196, 165, 116, 0.4);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 500;
}

.brew-steps {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.brew-step {
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-num {
  width: 28px;
  height: 28px;
  background: #c4a574;
  color: #120e0b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.brew-step strong {
  display: block;
  font-size: 0.88rem;
  color: #ffffff;
}

.brew-step p {
  margin: 0;
  font-size: 0.82rem;
  color: #e2d9cc;
}

.importer-card {
  background: rgba(18, 14, 11, 0.72);
  border: 1px solid rgba(196, 165, 116, 0.35);
  border-radius: 18px;
  padding: 1.2rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.imp-label {
  font-size: 0.72rem;
  color: #c4a574;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.importer-info h4 {
  margin: 0;
  font-size: 1.05rem;
  color: #ffffff;
}

.importer-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #f7f3ec;
}

.importer-details a {
  color: #f7f3ec;
  text-decoration: none;
}

.importer-details a:hover {
  color: #c4a574;
}

/* --- ტელეფონის ოპტიმიზაცია (Mobile Fixes) --- */
@media (max-width: 600px) {
  #view-brand {
    padding: 1.5rem 0.75rem 2.5rem;
  }

  .brand-header h1 {
    font-size: 2.1rem;
  }

  .brand-main-desc {
    font-size: 0.95rem;
    padding: 0 0.25rem;
  }

  .brand-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .brand-card {
    padding: 1.15rem;
    border-radius: 16px;
  }

  .disclaimer-pills span {
    font-size: 0.7rem;
    padding: 4px 8px;
  }

  .importer-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.15rem;
    gap: 0.8rem;
  }

  .importer-details {
    flex-direction: column;
    gap: 0.4rem;
  }
}
