﻿@font-face {
  font-family: "LogoFont";
  src: url("fonts/GLGordeziani-Bold.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "OtherFont";
  src: url("fonts/sanFranciscoGeorgian.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

:root {
  --header-bg: #ffffff;
  --primary: #000000;
  --secondary: #1596b8;
  --offer: #6fd2eb;
  --hero-text: #eafaff;
  --mega-border: #ebebeb;
  --mega-tag-bg: #1487a5;
  --menu-green: #000;
  --menu-bg: #f7f7f5;
  --menu-sub-bg: #ececeb;
  --menu-bottom-bg: #f3eee2;
  --menu-border: #e2e2dc;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: #fff;
  color: var(--primary);
  font-family: "OtherFont", sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* =========================
   HEADER
========================= */
header {
  width: 100%;
  position: sticky;
  top: 0;
  background: var(--header-bg);
  color: var(--primary);
  z-index: 990;
}

.Header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  width: 100%;
}

.header-icons {
  position: absolute;
  top: 20px;
  right: 22px;
  display: flex;
  align-items: center;
  gap: 22px;
  z-index: 20;
}

.header-icon {
  position: relative;
  width: 24px;
  height: 24px;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
}

.header-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.cart-icon {
  margin-left: 2px;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #6fd2eb;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  display: inline-block;
}

/* =========================
   TOP HEAD
========================= */
.main-head {
  width: 100%;
  height: 70px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
}

.SiteContext,
.SiteLogo,
.SiteLinks {
  flex-grow: 1;
  min-width: 0;
}

.SiteContext {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 14px;
}

.SiteLogo {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.SiteLinks {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  margin-left: 220px;
  padding-right: 14px;
}

/* =========================
   SEARCH
========================= */
.SiteContext .search {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 283px;
  max-width: 100%;
  height: 29px;
  border-bottom: 1px solid var(--primary);
  color: var(--primary);
  cursor: pointer;
}

.SiteContext .search span {
  font-family: "OtherFont", sans-serif;
  font-size: 16px;
  line-height: 1;
  display: inline-block;
  padding-top: 2px;
}

.SiteContext .search svg {
  width: 24px;
  height: 24px;
  display: block;
  flex: 0 0 24px;
}

.SiteContext .search svg path,
.SiteContext .search svg circle {
  stroke: var(--primary);
}

/* =========================
   LOGO
========================= */
.site-logo-img {
  height: 42px;
  width: auto;
  display: block;
  margin-top: -11px;
}

/* =========================
   RIGHT LINKS / ICONS
========================= */
.SiteLinks a,
.SiteLinks button {
  line-height: 1;
  padding: 10px 12px 13px;
  cursor: pointer;
  background: transparent;
  border: 0;
  color: var(--primary);
  font-family: "OtherFont", sans-serif;
  font-size: 16px;
}

.SiteLinks svg {
  width: 24px;
  height: 24px;
  display: block;
}

.SiteLinks a circle,
.SiteLinks button circle {
  stroke: var(--primary);
}

.SiteLinks a svg path,
.SiteLinks button svg path {
  fill: var(--primary);
  stroke: var(--primary);
}

/* =========================
   NAVIGATION BAR
========================= */
.navigation-bar-wrapper {
  position: relative;
  width: 100%;
}

.NavigationBar {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  overflow: visible;
  padding: 0 14px;
}

.NavigationBar section.app-category-navigation {
  flex: 1;
  display: flex;
  align-items: flex-start;
  min-width: 0;
}

.NavigationBar section.app-category-navigation:last-child {
  flex: unset;
  justify-content: flex-end;
}

.NavigationBar .nav {
  position: static;
  user-select: none;
}

.NavigationBar .nav:not(:last-of-type) {
  padding-right: 15px;
}

.NavigationBar .nav-links {
  position: relative;
}

.NavigationBar .nav-links a.nav-link {
  display: block;
  min-height: 24px;
  padding: 6px 0 8px;
  border-bottom: 2px solid transparent;
  color: var(--primary);
  font-family: "OtherFont", sans-serif;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
}

.NavigationBar .nav-links a.nav-link--offers {
  color: var(--offer);
}

.NavigationBar .nav-links a.nav-link:hover {
  border-bottom: 2px solid var(--primary);
}

.NavigationBar .nav-links a.nav-link--offers:hover {
  border-bottom: 2px solid var(--offer);
}

/* =========================
   FULL WIDTH MEGA MENU
========================= */
.NavigationBar .nav-nodes {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: #fff;
  border-top: 1px solid var(--mega-border);
  z-index: 300;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.NavigationBar .nav:hover .nav-nodes {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.NavigationBar .childs-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 30px;
  width: 100%;
  max-height: 440px;
  padding: 20px 24px;
  overflow-y: auto;
}

.NavigationBar .sub-menus {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
}

.NavigationBar .sub-col {
  min-width: 180px;
}

.NavigationBar .sub-title {
  display: block;
  padding-bottom: 12px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--primary);
  font-family: "OtherFont", sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--primary);
  font-weight: 600;
}

.NavigationBar .nav-nodes a.sublink {
  display: block;
  padding: 5px 0;
  font-family: "OtherFont", sans-serif;
  font-size: 15px;
  line-height: 1.35;
  color: var(--primary);
  white-space: nowrap;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.hero img.hero-bg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-title-bg {
  position: absolute;
  top: 58px;
  left: 125px;
  text-align: center;
  font-size: 40px;
  line-height: 1;
  color: #000000;
  white-space: nowrap;
  pointer-events: none;
  max-width: calc(100% - 250px);
}

.hero-content {
  position: absolute;
  top: 319px;
  left: 58px;
  z-index: 2;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 60px;
  padding: 0 20px;
  background: #6fd2eb;
  color: var(--primary);
  border-radius: 4px;
  font-family: "OtherFont", sans-serif;
  font-size: 22px;
  line-height: 1;
}

.hero-btn:hover {
  background: #6fd2eb4f;
}

/* ================================
   POPULAR PRODUCTS
================================ */
.popular-products {
  width: 100%;
  padding: 3.75rem 0 2.5rem;
  overflow: hidden;
}

.popular-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 3.75rem;
  color: var(--primary);
  text-align: center;
}

.products-wrapper {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  cursor: grab;
  user-select: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 4px;
  max-width: 1227px;
  margin: auto;
}

.products-wrapper::-webkit-scrollbar {
  display: none;
}

.products-wrapper:active {
  cursor: grabbing;
}

.product-card {
  flex: 0 0 256px;
  min-width: 235px;
  max-width: 235px;
}

.product-image {
  position: relative;
  width: 100%;
  height: 290px;
  background: #f4f0e8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  display: block;
}

.sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--offer);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.product-title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2rem;
  height: 4rem;
  margin-top: 0.625rem;
  white-space: pre-line;
  overflow: hidden;
}

.product-price {
  font-weight: 700;
  text-decoration: none;
  font-size: 1.25rem;
  height: 2rem;
  display: inline-block;
}

.product-unit {
  font-weight: 400;
  display: block;
  font-size: 14px;
  height: 1.875rem;
  line-height: 1.875rem;
}

.product-btn {
  margin-top: 12px;
  font-family: "OtherFont", sans-serif;
  width: 163px;
  height: 48px;
  border: 0;
  border-radius: 4px;
  background: var(--offer);
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.product-btn:hover {
  background: #6fd2eb4f;
}

/* =============================
   CATEGORY SECTION
============================= */
.category-section {
  width: 100%;
  max-width: 1227px;
  margin: 60px auto;
  padding: 0 16px;
}

.category-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 35px;
  color: var(--primary);
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}

.category-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 30px;
  background: var(--offer);
  color: #000;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  padding: 0 12px;
}

.category-btn:hover {
  background: #6fd2eb4f;
}

.category-bottom {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.category-wide {
  width: 50%;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  width: 100%;
  background: #eafbff;
  margin-top: 80px;
}

.footer-top-line {
  width: 100%;
  height: 1px;
  background: var(--primary);
}

.footer-inner {
  width: 100%;
  max-width: 1227px;
  margin: 0 auto;
  padding: 58px 16px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 78px;
  align-items: start;
}

.footer-policy {
  text-align: left;
  margin-left: 35px;
}

.footer-subscribe {
  text-align: center;
}

.footer-about {
  text-align: left;
  margin-left: 100px;
}

.footer-title {
  font-family: "OtherFont", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 28px;
}

.footer-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.footer-form input {
  width: 256px;
  max-width: 100%;
  height: 50px;
  border: 1px solid var(--primary);
  background: transparent;
  outline: none;
  padding: 0 18px;
  font-family: "OtherFont", sans-serif;
  font-size: 16px;
  color: var(--primary);
  border-radius: 4px;
}

.footer-form input::placeholder {
  color: #9d9d9d;
}

.footer-form button {
  width: 150px;
  max-width: 100%;
  height: 50px;
  border: 0;
  background: var(--offer);
  color: #000;
  font-family: "OtherFont", sans-serif;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
}

.footer-form button:hover {
  background: #6fd2eb4f;
}

.footer-col a {
  display: block;
  font-family: "OtherFont", sans-serif;
  font-size: 16px;
  line-height: 1.25;
  color: var(--primary);
  margin-bottom: 14px;
}

.footer-col a:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  margin-top: 108px;
  position: relative;
  min-height: 24px;
}

.footer-copy {
  font-family: "OtherFont", sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: var(--primary);
}

.footer-socials {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-socials a {
  width: 24px;
  height: 24px;
  color: #005341;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-socials svg {
  width: 24px;
  height: 24px;
  display: block;
}

.footer-accordion-content {
  display: block;
}

/* =========================
   SEARCH POPUP DEFAULT
========================= */
.mobile-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.10);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 1400;
}

.mobile-search-modal {
  position: fixed;
  left: 50%;
  top: 140px;
  transform: translateX(-50%) translateY(20px);
  width: calc(100% - 40px);
  max-width: 360px;
  background: #ffffff;
  padding: 38px 28px 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 1500;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

body.mobile-search-open .mobile-search-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.mobile-search-open .mobile-search-modal {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mobile-search-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.mobile-search-close span {
  position: absolute;
  top: 13px;
  left: 2px;
  width: 24px;
  height: 2px;
  background: #000;
  border-radius: 2px;
}

.mobile-search-close span:first-child {
  transform: rotate(45deg);
}

.mobile-search-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-search-title {
  font-family: "OtherFont", sans-serif;
  font-size: 24px;
  line-height: 1.1;
  color: #000;
  margin-bottom: 22px;
}

.mobile-search-form {
  width: 100%;
}

.mobile-search-input {
  width: 100%;
  height: 58px;
  border: 1px solid #6fd2ebb8;
  background: #6fd2eb26;
  border-radius: 4px;
  outline: none;
  box-shadow: none;
  padding: 0 16px;
  font-family: "OtherFont", sans-serif;
  font-size: 16px;
  color: #000;
}

.mobile-search-input::placeholder {
  color: #000;
  opacity: 1;
}

/* =========================
   MOBILE HIDDEN DEFAULT
========================= */
.mobile-left-icons,
.mobile-menu-toggle,
.mobile-search-icon,
.mobile-menu-overlay,
.mobile-menu-drawer {
  display: none;
}

/* =========================
   MOBILE / TABLET
========================= */
@media only screen and (max-width: 1199px) {
  .NavigationBar {
    display: none;
  }

  .main-head {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 16px;
  }

  .SiteContext {
    display: none;
  }

  .mobile-left-icons {
    display: flex;
    align-items: center;
    gap: 14px;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    width: 28px;
    height: 22px;
    padding: 0;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: #000;
    border-radius: 2px;
  }

  .mobile-search-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--primary);
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
  }

  .mobile-search-icon svg {
    width: 24px;
    height: 24px;
    display: block;
  }

  .mobile-search-icon svg path,
  .mobile-search-icon svg circle {
    stroke: #000;
  }

  .SiteLogo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 5;
  }

  .site-logo-img {
    height: 36px;
    width: auto;
    display: block;
    margin: 0;
    max-width: 170px;
  }

  .header-icons {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    gap: 14px;
    z-index: 6;
  }

  .header-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
  }

  .header-icon svg {
    width: 22px;
    height: 22px;
  }

  .cart-count {
    top: -7px;
    right: -8px;
  }

  .hero {
    height: 440px;
  }

  .hero-title-bg {
    top: 36px;
    font-weight: 800;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 100%;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    white-space: normal;
  }

  .hero-content {
    top: 185px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    text-align: center;
  }

  .hero-btn {
    min-width: 210px;
    height: 52px;
    font-size: 16px;
    margin-top: 168px;
    max-width: 100%;
  }

  .popular-products {
    padding: 48px 0 32px;
  }

  .popular-title {
    font-size: 28px;
    margin-bottom: 34px;
    padding: 0 16px;
  }

  .products-wrapper {
    gap: 14px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .product-card {
    flex: 0 0 220px;
    min-width: 220px;
    max-width: 220px;
  }

  .category-section {
    max-width: 100%;
    margin: 48px 0;
    padding: 0 16px;
  }

  .category-title {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .category-btn {
    min-height: 42px;
    font-size: 14px;
    white-space: normal;
  }

  .category-bottom {
    margin-top: 14px;
  }

  .category-wide {
    width: 60%;
    max-width: 240px;
  }

  .footer-inner {
    padding: 44px 16px 28px;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 0;
  }

  .footer-subscribe {
    order: 1;
    width: 100%;
    text-align: center;
    margin-bottom: 34px;
  }

  .footer-policy {
    order: 2;
    width: 100%;
    margin-left: 0;
    text-align: left;
    margin-bottom: 0;
  }

  .footer-about {
    order: 3;
    width: 100%;
    margin-left: 0;
    text-align: left;
    margin-top: -1px;
  }

  .footer-title {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .footer-form input,
  .footer-form button {
    width: 100%;
    max-width: 320px;
  }

  .footer-bottom {
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .footer-socials {
    position: static;
    transform: none;
    order: 1;
  }

  .footer-copy {
    order: 2;
    text-align: center;
    line-height: 1.4;
  }

  /* MOBILE MENU */
  .mobile-menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.25s ease;
    z-index: 1200;
  }

  .mobile-menu-drawer {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    background: var(--menu-bg);
    transform: translateX(-100%);
    transition: transform 0.28s ease;
    z-index: 1300;
    overflow-y: auto;
    overflow-x: hidden;
  }

  body.mobile-menu-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.mobile-menu-open .mobile-menu-drawer {
    transform: translateX(0);
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  .mobile-menu-top {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    background: var(--menu-bg);
  }

  .mobile-menu-account {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--menu-green);
    font-family: "OtherFont", sans-serif;
    font-size: 18px;
    line-height: 1;
  }

  .mobile-menu-account svg {
    width: 27px;
    height: 27px;
    display: block;
    color: var(--menu-green);
    flex: 0 0 27px;
  }

  .mobile-menu-close {
    position: relative;
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    flex: 0 0 28px;
  }

  .mobile-menu-close span {
    position: absolute;
    top: 13px;
    left: 2px;
    width: 24px;
    height: 2px;
    background: var(--menu-green);
    border-radius: 2px;
  }

  .mobile-menu-close span:first-child {
    transform: rotate(45deg);
  }

  .mobile-menu-close span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-menu-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .mobile-menu-item {
    background: var(--menu-bg);
    width: 100%;
  }

  .mobile-submenu-toggle {
    width: 100%;
    min-height: 50px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 0;
    background: transparent;
    color: var(--menu-green);
    font-family: "OtherFont", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-align: left;
    cursor: pointer;
  }

  .mobile-submenu-toggle span:first-child {
    min-width: 0;
    overflow-wrap: break-word;
  }

  .mobile-arrow {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 17px;
  }

  .mobile-arrow::before,
  .mobile-arrow::after {
    content: "";
    position: absolute;
    top: 8px;
    width: 10px;
    height: 2px;
    background: var(--menu-green);
    border-radius: 2px;
    transition: 0.2s ease;
  }

  .mobile-arrow::before {
    left: 0;
    transform: rotate(45deg);
  }

  .mobile-arrow::after {
    right: 0;
    transform: rotate(-45deg);
  }

  .mobile-menu-item.active .mobile-arrow::before {
    transform: rotate(-45deg);
  }

  .mobile-menu-item.active .mobile-arrow::after {
    transform: rotate(45deg);
  }

  .mobile-submenu {
    display: none;
    background: var(--menu-sub-bg);
    padding: 0;
    width: 100%;
  }

  .mobile-menu-item.active .mobile-submenu {
    display: block;
  }

  .mobile-submenu a {
    display: block;
    padding: 16px 22px;
    color: var(--menu-green);
    font-family: "OtherFont", sans-serif;
    font-size: 16px;
    line-height: 1.2;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    overflow-wrap: break-word;
  }

  .mobile-menu-item.active {
    position: relative;
  }

  .mobile-menu-item.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 50px;
    background: var(--menu-green);
  }

  .mobile-menu-bottom {
    margin-top: 28px;
    background: var(--menu-bottom-bg);
  }

  .mobile-menu-bottom .mobile-submenu-toggle {
    background: var(--menu-bottom-bg);
  }

  .mobile-menu-bottom .mobile-submenu {
    background: #ece6d8;
  }

  /* MOBILE SEARCH POPUP */
  .mobile-search-modal {
    top: 178px;
    width: calc(100% - 44px);
    max-width: 300px;
    padding: 36px 28px 22px;
  }

  .mobile-search-title {
    font-size: 24px;
  }

  .mobile-search-input {
    height: 58px;
    font-size: 16px;
  }

  .footer-policy .footer-title,
  .footer-about .footer-title {
    position: relative;
    margin-bottom: 0;
    padding: 14px 40px 14px 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    cursor: pointer;
  }

  .footer-policy .footer-title::after,
  .footer-about .footer-title::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 34px;
    line-height: 1;
    font-weight: 400;
  }

  .footer-accordion.active .footer-title::after {
    content: "−";
  }

  .footer-accordion-content {
    display: none;
    padding: 14px 0 4px;
  }

  .footer-accordion.active .footer-accordion-content {
    display: block;
  }

  .footer-policy .footer-accordion-content a,
  .footer-about .footer-accordion-content a {
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.45;
    color: var(--primary);
  }

  .footer-policy .footer-accordion-content a:last-child,
  .footer-about .footer-accordion-content a:last-child {
    margin-bottom: 0;
  }
}

.product-image {
  position: relative;
}

/* =========================
   WISHLIST
========================= */
.product-wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;

  width: 38px;
  height: 38px;

  border-radius: 50%;
  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  cursor: pointer;

  box-shadow: 0 2px 10px rgba(0,0,0,0.08);

  transition: 0.25s;
}

.product-wishlist-btn svg {
  width: 22px;
  height: 22px;
}

.product-wishlist-btn svg path {
  fill: transparent;
  stroke: #6fd2eb;
  stroke-width: 1.8;
  transition: 0.25s;
}

.product-wishlist-btn:hover svg path {
  stroke: #2dccf5;
}

.product-wishlist-btn.active svg path {
  fill: #6fd2eb;
  stroke: #6fd2eb;
}





/* ===== PRODUCTS SECTION ===== */
.products-section {
  width: 100%;
  padding: 18px 0 0px;
}

.products-container {
  width: 100%;
  padding-left: 45px;
  padding-right: 45px;
}

.section-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.4;
  color: #666;
}

.section-breadcrumb a {
  color: #000;
  text-decoration: none;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  color: #000;
  margin: 0 0 14px;
  text-align: center;
}

.section-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0 0 36px;
  text-align: center;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.products-grid .product-card {
  width: calc((100% - 72px) / 4);
  min-width: calc((100% - 72px) / 4);
  max-width: calc((100% - 72px) / 4);
  flex: 0 0 calc((100% - 72px) / 4);
}

.products-grid .product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f4f0e8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.products-grid .product-image img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  display: block;
}

.products-grid .product-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  margin-top: 14px;
  margin-bottom: 14px;
  min-height: 42px;
  overflow: hidden;
}

.products-grid .product-price {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
  display: block;
}

.products-grid .product-unit {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 14px;
  display: block;
}

.products-grid .product-btn {
  margin-top: 0;
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 4px;
  background: var(--offer);
  color: #000;
  font-family: "OtherFont", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.products-grid .product-btn:hover {
  background: #6fd2eb4f;
}

.wishlist-empty {
  width: 100%;
  font-size: 18px;
}

/* MOBILE */

@media only screen and (max-width: 768px){

.products-container{
padding-left:16px;
padding-right:16px;
}

.products-grid{
gap:16px;
}

/* 2 card per row */

.products-grid .product-card{
width:calc((100% - 16px) / 2);
min-width:calc((100% - 16px) / 2);
max-width:calc((100% - 16px) / 2);
flex:0 0 calc((100% - 16px) / 2);
}

/* image */

.products-grid .product-image{
aspect-ratio:1 / 1;
}

/* title */

.products-grid .product-title{
font-size:14px;
line-height:1.3;
margin-top:10px;
margin-bottom:10px;
}

/* price */

.products-grid .product-price{
font-size:18px;
margin-bottom:6px;
}

/* unit */

.products-grid .product-unit{
font-size:13px;
margin-bottom:10px;
}

/* button */

.products-grid .product-btn{
height:42px;
font-size:13px;
}

}