@charset "utf-8";
/* ===============================
   RESET
   =============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===============================
   BASE
   =============================== */
body {
  font-family: Georgia, 'Times New Roman', serif;
  background: #faf8f4;
  color: #2c2a26;
  line-height: 1.6;
}

.container {
  width: 100%;
  padding: 0 20px;
}
.footer-grid ul li {
  margin-bottom: 6px;
}

.footer-grid a {
  color: #7a3b0e;
  text-decoration: none;
}

.footer-grid a:hover {
  color: #c8851a;
}


.phone a {
  font-size: 18px;
  font-weight: bold;
  color: #7a3b0e;
  text-decoration: none;
}

.phone a:hover {
  color: #c8851a;
}
.accordion {
  width: 100%;
  padding: 16px;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  font-weight: 600;
  text-align: left;
  transition: 0.25s;
  border-radius: 6px;
  margin-top: 10px;
  position: relative;
}

/* 👉 ისარი */
.accordion::after {
  content: "›";
  position: absolute;
  right: 15px;
  font-size: 18px;
  transition: transform 0.25s ease;
}

/* 👉 როცა გახსნილია */
.accordion.active::after {
  transform: rotate(90deg);
}

/* hover */
.accordion:hover {
  background: #f2f2f2;
}

.accordion.active {
  background: #fff;
  border-color: #e8d8b0;
}

/* panel */
.panel {
  display: none;
  padding: 15px;
  border: 1px solid #e5e5e5;
  border-top: none;
  background: #ffffff;
  border-radius: 0 0 6px 6px;
}.panel.open {
  display: block;
}
/* ===============================
   HEADER
   =============================== */
.header {
  background: #fff;
  border-bottom: 1px solid #e8dfc8;
  position: sticky;
  top: 0;
  z-index: 100;box-shadow: 0 2px 10px rgba(120,60,10,0.08);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  gap: 16px;
}

.logo {
  font-family: Georgia, serif;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  color: #7a3b0e;
  letter-spacing: 0.03em;
}

.logo span {
  color: #c8851a;
}

/* ===============================
   MENU (MOBILE-FIRST)
   =============================== */
.menu-toggle {
  font-size: 22px;
  background: none;
  border: 1px solid #e8dfc8;
  border-radius: 6px;
  cursor: pointer;
  padding: 4px 10px;
  color: #7a3b0e;margin-left: auto;
}
 
.menu-items {
  list-style: none;
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #e8dfc8;
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  z-index: 200;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.menu-items.show {
  display: flex;
}

.menu-items li {
  position: relative;
}

.menu-items > li > a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #4a2c0a;
  font-family: Georgia, serif;
  font-size: 15px;
  border-bottom: 1px solid #f5ede0;
  transition: background 0.15s, color 0.15s;
}

.menu-items > li > a:hover {
  background: #fdf3de;
  color: #c8851a;
}

/* SUBMENU */
.submenu {
  display: none;
  list-style: none;
  background: #fffdf8;
  border-top: 1px solid #f0e4cc;
}

.submenu li a {
  display: block;
  padding: 10px 20px 10px 36px;
  text-decoration: none;
  color: #5a3510;
  font-size: 14px;
  border-bottom: 1px solid #f5ede0;
  transition: background 0.15s;
}

.submenu li a:hover {
  background: #fdf3de;
  color: #c8851a;
}

.dropdown.active .submenu {
  display: block;
}

/* ===============================
   HERO
   =============================== */
.hero {
  padding: 60px 0 50px;
  text-align: center;
  background: #fff;
  border-bottom: 1px solid #e8dfc8;
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: normal;
  color: #3d200a;
  margin-bottom: 14px;
  line-height: 1.35;
}

.hero p {
  margin-bottom: 24px;
  font-size: 16px;
  color: #6b4a28;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ===============================
   Share BUTTON
   =============================== */

.share-buttons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.share-buttons a {
  padding: 8px 12px;
  background: #fdf3de;
  color: #7a3b0e;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: background 0.2s;
}

.share-buttons a:hover {
  background: #f4c430;
  color: #fff;
}

.copy-btn {
  padding: 8px 12px;
  background: #fdf3de;
  color: #7a3b0e;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

.copy-btn:hover {
  background: #f4c430;
  color: #fff;
}
/* ===============================
   BUTTON
   =============================== */
.btn {
  display: inline-block;
  background: #c8851a;
  color: #fff;
  padding: 11px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-family: Georgia, serif;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #a86c10;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid #c8851a;
  color: #c8851a;
}

.btn-outline:hover {
  background: #fdf3de;
  transform: translateY(-1px);
}

/* ===============================
   SECTION TITLES
   =============================== */
.section-title {
  text-align: center;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: normal;
  color: #3d200a;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 14px;
  color: #8a6040;
  margin-bottom: 32px;
}

/* ===============================
   DIVIDER
   =============================== */
.divider {
  width: 48px;
  height: 2px;
  background: #c8851a;
  margin: 10px auto 30px;
  border-radius: 2px;
}

/* ===============================
   CARDS SECTION
   =============================== */
.cards-section {
  padding: 50px 0;
  background: #faf8f4;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.card {
  display: block;
  background: #fff;
  border: 1px solid #e8dfc8;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: #2c2a26;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.card-body {
  padding: 16px 18px 18px;
}

.card h2 {
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: normal;
  color: #3d200a;
  margin-bottom: 6px;
}

.card p {
  font-size: 13px;
  color: #7a5830;
  line-height: 1.5;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(120, 60, 10, 0.1);
}

/* ===============================
   PRODUCTS SECTION
   =============================== */
.products-section {
  padding: 50px 0;
  background: #fff;
  border-top: 1px solid #e8dfc8;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.product {
  background: #faf8f4;
  border: 1px solid #e8dfc8;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  padding-bottom: 18px;
}

.product img {
    width: 100%;
    /* [disabled]height: 200px; */
    object-fit: cover;
    display: block;
}

.product h3 {
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: normal;
  color: #3d200a;
  margin: 14px 12px 6px;
}

.product p {
  font-size: 13px;
  color: #7a5830;
  padding: 0 14px 14px;
  line-height: 1.5;
}

.product:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(120, 60, 10, 0.1);
}


/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* IMAGE */
.product-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

/* INFO */
.product-info h1 {
  margin-bottom: 10px;
}

.product-short {
  margin-bottom: 15px;
  color: #6b4a28;
  line-height: 1.5;
}

.product-meta p {
  margin-bottom: 6px;
  font-size: 14px;
}

/* BUTTONS */
.product-actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap; /* mobile-áƒ–áƒ” áƒáƒ  áƒ“áƒáƒ˜áƒ¨áƒáƒšáƒáƒ¡ */
}
.product-description h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 18px;
  color: #3d200a;
}.product-description p {
  margin-bottom: 14px;
}
/* BENEFITS */
.benefits-list {
  list-style: none;
  margin-top: 20px;
  padding: 0;
}

.benefits-list li {
  margin-bottom: 8px;
  font-size: 14px;
}



/* ===============================
   ABOUT SECTION
   =============================== */
.about-section {
  padding: 56px 0;
  background: #faf8f4;
  border-top: 1px solid #e8dfc8;
}

.about-text {
  max-width: 680px;
  margin: 0 auto 16px;
  text-align: center;
  line-height: 1.75;
  font-size: 15px;
  color: #4a3018;
}

/* ===============================
   BREADCRUMB
   =============================== */
.breadcrumb-nav {
  font-size: 13px;
  margin: 12px 0 18px;
  color: #8a6040;
}

.breadcrumb-nav a {
  color: #c8851a;
  text-decoration: none;
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

.breadcrumb-nav span {
  margin: 0 6px;
  color: #b0926a;
}

/* ===============================
   FOOTER
   =============================== */
.footer {
  background: #3d200a;
  color: #d4b896;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  gap: 24px;
  padding: 44px 0 32px;
}

.footer h3 {
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: normal;
  color: #f5e8d0;
  margin-bottom: 10px;
}

.footer h4 {
  font-size: 13px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b08060;
  margin-bottom: 12px;
}

.footer p {
  font-size: 13px;
  line-height: 1.6;
  color: #b08060;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 6px;
}

.footer a {
  text-decoration: none;
  color: #c4a07a;
  font-size: 13px;
  transition: color 0.15s;
}

.footer a:hover {
  color: #f4c430;
}

.footer-bottom {
  text-align: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: #7a5830;
}

/* ===============================
   SOCIAL ICONS
   =============================== */
.social-icons {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 16px;
}

.social-icons a {
  color: #c4a07a;
  font-size: 16px;
  transition: color 0.15s;
}

.social-icons a:hover {
  color: #f4c430;
}

/* ===============================
   LANGUAGE SWITCHER
   =============================== */
.language-switcher {
  display: flex;
  justify-content: flex-end;
  padding: 8px 20px;
  background: #faf8f4; /* subtle áƒ¤áƒáƒœáƒ–áƒ” */
  border-bottom: 1px solid #e8dfc8;
}

.lang {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #7a3b0e;
  font-family: Georgia, serif;
  font-size: 13px;
  font-weight: bold;
  padding: 4px 6px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.lang img {
  width: 18px;
  border-radius: 2px;
}

.lang:hover {
  background: #fdf3de;
  color: #c8851a;
}

.lang.active {
  color: #c8851a;
}


/* ===============================
   TABLET (â‰¥768px)
   =============================== */
@media (min-width: 768px) {

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* PRODUCT ACTIONS */
  .product-actions {
    flex-direction: row;
  }

  .product-actions .btn {
    width: auto;
  }

  /* PRODUCT GRID */
  .product-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 40px;
  }

  .page-title {
    font-size: 30px;
  }
}
/* ===============================
   DESKTOP (â‰¥1024px)
   =============================== */
@media (min-width: 1024px) {

  .container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .menu-items {
    justify-content: flex-end;
    gap: 2px;
  }

  .menu-items > li > a {
    padding: 8px 16px;
    font-size: 14px;
    transition: background 0.15s, color 0.15s;
  }

  /* SUBMENU DROPDOWN */
  .submenu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 190px;
    background: #fff;
    border: 1px solid #e8dfc8;
    border-radius: 8px;
    padding: 6px 0;
    box-shadow: 0 10px 28px rgba(60,30,5,0.12);
    z-index: 300;
  }

  .submenu li a {
    padding: 9px 18px;
    font-size: 13px;
    border-bottom: none;
  }

  .dropdown:hover .submenu {
    display: block;
  }

  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero {
    padding: 80px 0 70px;
  }

  .hero h1 {
    font-size: 38px;
  }

}


/* ===============================
   DESKTOP NAV
   =============================== */
.desktop-nav { display: none; }

/* ===============================
   PAGE LAYOUT (article + sidebar)
   =============================== */
.page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 24px 0 56px;
}

.page-title {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: normal;
  color: #3d200a;
  margin-bottom: 10px;
}

.page-text {
  font-size: 15px;
  color: #3a2510;
  line-height: 1.8;
  margin-bottom: 16px;
}

.page-text strong {
  color: #3d200a;
  font-weight: bold;
}

.text-link {
  color: #c8851a;
  text-decoration: none;
  border-bottom: 1px solid #e8c880;
  transition: color 0.15s;
}
.text-link:hover { color: #a86c10; }

.page-figure {
  margin: 28px 0;
  text-align: center;
}

.page-img {
  width: 100%;
  max-width: 600px; /* ðŸ‘ˆ áƒáƒ¥ áƒáƒ áƒ˜áƒ¡ áƒ›áƒ—áƒáƒ•áƒáƒ áƒ˜ */
  height: auto;
  border-radius: 8px;
  border: 1px solid #e8dfc8;
  display: block;
  margin: 0 auto;
}

.page-figure figcaption {
  font-size: 12px;
  color: #9a7050;
  margin-top: 8px;
  font-style: italic;
}

.page-divider {
  border: none;
  border-top: 1px solid #e8dfc8;
  margin: 28px 0;
}

/* PAGE SIDEBAR */
.page-sidebar {
  background: #fff;
  border: 1px solid #e8dfc8;
  border-radius: 10px;
  padding: 20px 22px;
  align-self: start;
}

.sidebar-title {
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #9a7050;
  margin-bottom: 12px;
}

.sidebar-links {
  list-style: none;
}

.sidebar-links li {
  border-bottom: 1px solid #f5ede0;
}

.sidebar-links li:last-child { border-bottom: none; }

.sidebar-links a {
  display: block;
  padding: 8px 0;
  text-decoration: none;
  color: #5a3510;
  font-size: 14px;
  transition: color 0.15s, padding-left 0.15s;
}

.sidebar-links a:hover {
  color: #c8851a;
  padding-left: 4px;
}

.sidebar-links a.active {
  color: #c8851a;
  font-weight: bold;
}

/* ===============================
   DESKTOP RESPONSIVE UPDATES
   =============================== */
@media (min-width: 768px) {
  .page-title { font-size: 30px; }
}

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
.menu-items {
    display: flex; /* ?? ?? ????? */
    position: static;
    flex-direction: row;
    background: none;
    border: none;
    box-shadow: none;
  }
  .desktop-nav {
    display: flex;
    list-style: none;
    gap: 2px;
    align-items: center;
  }
  .desktop-nav > li { position: relative; }
  .desktop-nav > li > a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: #4a2c0a;
    font-family: Georgia, serif;
    font-size: 14px;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
  }
  .desktop-nav > li > a:hover { background: #fdf3de; color: #c8851a; }

  .desktop-submenu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 190px;
    background: #fff;
    border: 1px solid #e8dfc8;
    border-radius: 8px;
    padding: 6px 0;
    box-shadow: 0 10px 28px rgba(60,30,5,0.12);
    z-index: 300;
    list-style: none;
  }
  .desktop-nav > li:hover .desktop-submenu { display: block; }
  .desktop-submenu li a {
    display: block;
    padding: 9px 18px;
    text-decoration: none;
    color: #5a3510;
    font-size: 13px;
    transition: background 0.15s;
  }
  .desktop-submenu li a:hover { background: #fdf3de; color: #c8851a; }

  .page-layout {
    grid-template-columns: 1fr 240px;
    gap: 48px;
  }

  .page-title { font-size: 34px; }
}