/* ═══════════════════════════════════════════════════
   ANTADZE.GE — main.css
   საერთო სტილი ყველა გვერდისთვის
   წყარო: index.html + akaciis-tafli-123.html + mefutkreobis-produqtebi.html
═══════════════════════════════════════════════════ */

/* ── FONT ── */
@font-face {
  font-family: 'BPGExtra';
  src: url('../_fonts/bpg_extrasquare_mtavruli-webfont.woff2') format('woff2'),
       url('../_fonts/bpg_extrasquare_mtavruli-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

/* ── VARIABLES ── */
:root {
  --honey:   #c8851a;
  --honey-dk: #7a3b0e;
  --honey-lt: #fdf3de;
  --cream:   #faf8f4;
  --cream2:  #fffdf8;
  --brown:   #3d200a;
  --text:    #2c2a26;
  --muted:   #6b4a28;
  --border:  #e8dfc8;
  --gold:    #f4c430;
  --shadow:  rgba(61,32,10,0.10);
}

/* ── BASE ── */
html { scroll-behavior: smooth; }
body {
  font-family: 'Sylfaen', Georgia, serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── HEADER ── */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo {
  font-family: 'BPGExtra', Georgia, serif;
  font-size: 20px;
  text-decoration: none;
  color: var(--honey-dk);
  letter-spacing: 0.04em;
  margin-left: 8px;
}

/* ── MENU TOGGLE (mobile) ── */
.menu-toggle {
  font-size: 22px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  padding: 5px 11px;
  color: var(--honey-dk);
  margin-left: auto;
  margin-right: 12px;
}

/* ── NAV ── */
.menu-items {
  list-style: none;
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  z-index: 200;
  box-shadow: 0 10px 28px var(--shadow);
}
.menu-items.show { display: flex; }
.menu-items li { position: relative; }
.menu-items > li > a {
  display: block;
  padding: 12px 22px;
  text-decoration: none;
  color: var(--brown);
  font-family: 'BPGExtra', Georgia, serif;
  font-size: 14px;
  border-bottom: 1px solid #f5ede0;
  transition: background .15s, color .15s;
}
.menu-items > li > a:hover {
  background: var(--honey-lt);
  color: var(--honey);
}

/* ── SUBMENU ── */
.submenu {
  display: none;
  list-style: none;
  background: var(--cream2);
  border-top: 1px solid #f0e4cc;
}
.submenu li a {
  display: block;
  padding: 10px 22px 10px 38px;
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  border-bottom: 1px solid #f5ede0;
  transition: background .15s;
}
.submenu li a:hover { background: var(--honey-lt); color: var(--honey); }
.dropdown.active .submenu { display: block; }

/* ── LANGUAGE IN MOBILE MENU ── */
.menu-lang-item > a {
  border-top: 2px solid var(--border) !important;
  color: var(--honey-dk) !important;
  font-size: 13px !important;
}
.menu-lang-item > a:hover {
  background: var(--honey-lt) !important;
  color: var(--honey) !important;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 10px;
  color: var(--muted);
}
.breadcrumb a { color: var(--honey-dk); text-decoration: none; }
.breadcrumb a:hover { color: var(--honey); }
.breadcrumb span { margin: 0 5px; }
.breadcrumb-lang { display: none; }

/* ── QUICK LINKS ── */
.quicklinks-section {
  background: #fffef9;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.quicklinks-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.ql-link {
  display: inline-block;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid #e0d7b6;
  border-radius: 20px;
  text-decoration: none;
  color: #503c1a;
  font-size: 13px;
  transition: background .15s, color .15s;
}
.ql-link:hover {
  background: #fff;
  color: var(--honey-dk);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── STICKY WHATSAPP ── */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 18px;
  z-index: 999;
  background: #25d366;
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.22);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }

/* ── FOOTER ── */
.footer {
  background: #41362f;
  color: #e8d5b7;
  padding: 40px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding-bottom: 32px;
}
.footer h3 { font-family: 'BPGExtra', Georgia, serif; font-size: 15px; font-weight: normal; color: #ede0d0; margin-bottom: 10px; }
.footer h4 { font-size: 12px; font-weight: normal; text-transform: uppercase; letter-spacing: 0.08em; color: #b8a090; margin-bottom: 12px; }
.footer p { font-size: 13px; color: #c0aea0; line-height: 1.6; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 6px; }
.footer a { text-decoration: none; color: #e3d6c9; font-size: 13px; transition: color .15s; }
.footer a:hover { color: var(--gold); }
.footer-bottom { text-align: center; padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.08); font-size: 12px; color: #9a8878; }
.social-icons { display: flex; gap: 14px; margin-top: 12px; flex-wrap: wrap; }
.social-icons a { color: #e3d6c9; font-size: 18px; transition: color .2s; }
.social-icons a:hover { color: var(--gold); }


.article-section { padding: 0px 0; }
.article-section .container { padding: 0 2px; }
.article-wrap {
  border-radius: 0;
  border: 1px solid var(--border);
  padding: 24px 16px 32px;
}
.article-wrap p { font-size: 16px; }




/* ── DESKTOP (≥1024px) ── */
@media (min-width: 1024px) {
  .menu-toggle { display: none; }
  .menu-lang-item { display: none; }

  .menu-items {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    border: none;
    box-shadow: none;
    gap: 2px;
  }
  .menu-items > li > a {
    padding: 8px 14px;
    font-size: 13px;
    border-bottom: none;
    border-radius: 6px;
  }
  .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 0;
  box-shadow: 0 10px 28px var(--shadow);
  z-index: 300;
}
  .submenu li a { padding: 9px 18px; border-bottom: none; }
  .dropdown:hover .submenu { display: block; }
  .dropdown.active .submenu { display: block; }

  .footer-grid { grid-template-columns: repeat(4, 1fr); }

  /* breadcrumb EN — desktop */
  .breadcrumb .container { display: flex; justify-content: space-between; align-items: center; }
  .breadcrumb-lang {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: var(--honey-dk);
    font-size: 13px;
    font-weight: bold;
  }
  .breadcrumb-lang:hover { color: var(--honey); }
  .breadcrumb-lang img { width: 16px; border-radius: 2px; display: block; }
}






/* ── TABLET (≥768px) ── */
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ═══════════════════════════════════════════════════
   PRODUCT DETAIL (article, CTA, related links)
═══════════════════════════════════════════════════ */

/* ARTICLE */

.article-wrap { max-width: 1100px; margin: 0 auto; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 40px 48px 48px; }

.article-wrap h1 { font-family: 'BPGExtra', Georgia, serif; font-size: 24px; font-weight: normal; color: #3d200a; text-align: center; margin-bottom: 28px; line-height: 1.4; }

.article-wrap h2 { font-family: 'BPGExtra', Georgia, serif; font-size: 17px; font-weight: normal; color: #5a2e0a; text-align: center; margin: 36px 0 14px; }
.article-wrap p { color: #3a2a1a; margin-bottom: 14px; line-height: 1.8; }

.article-wrap a { color: var(--honey-dk); text-decoration: none; }

.article-wrap a:hover { color: var(--honey); text-decoration: underline; }

.article-wrap em { font-style: italic; }
.article-wrap strong { color: var(--brown); }
.article-img { display: block; max-width: 100%; height: auto; margin: 16px auto; border-radius: 10px; }

.article-divider { border: none; border-top: 1px solid var(--border); margin: 28px 0; }

/* RELATED LINKS */
.related-links { font-size: 14px; color: var(--muted); margin-top: 8px; }
.related-links a { color: var(--honey-dk); text-decoration: none; margin: 0 4px; }
.related-links a:hover { color: var(--honey); }

/* DISCLAIMER */
.disclaimer { font-size: 12px; color: #999; line-height: 1.6; font-style: italic; margin-top: 8px; }

/* CTA */
.buy-section { background: #fffdf5; border: 1px solid var(--border); border-radius: 10px; padding: 16px 20px; text-align: center; margin-top: 28px; }
.buy-section h2 { font-family: 'BPGExtra', Georgia, serif; font-size: 14px; font-weight: normal; color: var(--brown); margin-bottom: 6px; }
.buy-section p { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.buy-buttons { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.cta-button { display: inline-flex; align-items: center; gap: 6px; background: #e9a716; color: #fff; padding: 9px 18px; border-radius: 7px; text-decoration: none; font-family: 'BPGExtra', Georgia, serif; font-size: 13px; transition: background .2s; }
.cta-button:hover { background: var(--honey-dk); }
.cta-wa { display: inline-flex; align-items: center; gap: 6px; background: #25d366; color: #fff; padding: 9px 18px; border-radius: 7px; text-decoration: none; font-family: 'BPGExtra', Georgia, serif; font-size: 13px; transition: background .2s; }
.cta-wa:hover { background: #1da851; }

@media (min-width: 1024px) {
  .article-section { padding: 40px 0 48px; }
  .article-wrap {
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 40px 56px 48px;
  }
}
