@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%;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: #fff;
  color: var(--primary);
  font-family: "OtherFont", sans-serif;
  overflow-x: hidden;

  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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;
  align-items: center;
  justify-content: space-between;
  width: 283px;
  max-width: 100%;
  height: 29px;
  border-bottom: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.desktop-search-input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: none;
  background: transparent;
  padding: 0;
  margin: 0;
  color: var(--primary);
  font-family: "OtherFont", sans-serif;
  font-size: 16px;
  line-height: 1;
}

.desktop-search-input::placeholder {
  color: var(--primary);
  opacity: 1;
}

.desktop-search-submit {
  width: 24px;
  height: 24px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 24px;
}

.desktop-search-submit svg {
  width: 24px;
  height: 24px;
  display: block;
}

.desktop-search-submit svg path,
.desktop-search-submit 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: #f7f3eb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 65%;
  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;
    height: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 22px;
    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: 22px;
    height: 22px;
    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: 16px;
    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: 16px;
    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-menu-link {
  width: 100%;
  min-height: 50px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
  color: var(--menu-green);
  font-family: "OtherFont", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-align: left;
}

.mobile-menu-link span {
  min-width: 0;
  overflow-wrap: break-word;
}


.mobile-menu-link {
  width: 100%;
  min-height: 50px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
  color: var(--menu-green);
  font-family: "OtherFont", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-align: left;
}

.mobile-menu-link span {
  min-width: 0;
  overflow-wrap: break-word;
}

  /* 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: 3px 40px 14px 0;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    cursor: pointer;
  }

.footer-accordion{
  border-bottom:1px solid #000;
}

.footer-policy{
  border-top:1px solid #000;
}

  .footer-policy .footer-title::after,
  .footer-about .footer-title::after {
    content: "+";
    position: absolute;
    top: 20%;
    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 14px;
  }

  .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 0;
  flex: 1;
}

.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: #f7f3eb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.products-grid .product-image img {
  width: 65%;
  height: 78%;
  max-height: 230px;
  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-grid .product-image img {
  width: 91%;
  height: 78%;
  max-height: 160px;
  object-fit: contain;
  display: block;
}


.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;
}

}

/****** SHOW + SORT *******/
.category-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 40px 0 32px;
  flex-wrap: wrap;
}

.category-count {
  font-size: 14px;
  line-height: 1.4;
  color: #111;
}

.category-count strong {
  font-weight: 700;
}

.category-sort-form {
  margin: 0;
}

.category-sort-select {
  min-width: 260px;
  height: 44px;
  padding: 0 44px 0 16px;
  border: 1px solid #111;
  background-color: #fff;
  font-size: 14px;
  line-height: 1;
  color: #111;
  outline: none;
  cursor: pointer;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("assets/down1.png");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
}

.category-sort-select:focus {
  box-shadow: none;
}

@media (max-width: 768px) {
  .category-topbar {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    margin: 28px 0 24px;
  }

  .category-count {
    width: 100%;
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
  }

  .category-sort-form {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .category-sort-select {
    width: 100%;
    max-width: 320px;
    min-width: unset;
    height: 46px;
    text-align: center;
    text-align-last: center;
    padding: 0 42px 0 16px;
    background-position: right 14px center;
    background-size: 11px;
  }
}

/****** PAGINATION ******/
.pagination {
  width: 100%;
  border-top: 1px solid #dcdcdc;
  margin-top: 60px;
  padding-top: 30px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.page-number {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  font-size: 16px;
  color: #111;

  border-radius: 50%;
  transition: all 0.2s ease;
}

.page-number:hover {
  background: #f2f2f2;
}

.page-number.active {
  background: #8bd0e6;
  color: #000;
}

.page-arrow {
  font-size: 26px;
  text-decoration: none;
  color: #111;
  padding: 0 12px;
  transition: opacity 0.2s ease;
}

.page-arrow:hover {
  opacity: 0.6;
}

/* mobile */

@media (max-width:768px){

.pagination{
  margin-top:40px;
  padding-top:20px;
  gap:10px;
}

.page-number{
  width:36px;
  height:36px;
  font-size:15px;
}

.page-arrow{
  font-size:22px;
}

}

/* =========================
   PRODUCT HOVER GALLERY
========================= */

/* PRODUCT IMAGE */

.product-gallery-image{
  width:78%;
  height:78%;
  object-fit:contain;
  display:block;
  margin:0 auto;
  transition:opacity .25s ease;
}

/* =========================
   NAVIGATION BUTTONS
========================= */

.gallery-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);

  width:42px;
  height:42px;

  border:none;
  border-radius:50%;
  background:#ffffff;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:30px;
  color:#6fd2eb;

  cursor:pointer;

  box-shadow:0 2px 10px rgba(0,0,0,0.08);

  opacity:0;
  visibility:hidden;
  pointer-events:none;

  transition:.25s ease;

  z-index:4;
}

/* =========================
   ARROW POSITION
========================= */

.gallery-prev{
  left:12px;
}

.gallery-next{
  right:12px;
}

/* =========================
   THIS CONTROLS BLACK ARROW
   MOVE PX HERE
========================= */

.gallery-nav{

  padding-bottom:6px;


}

/* =========================
   SHOW ARROWS ON HOVER
========================= */

.product-hover-gallery.has-gallery:hover .gallery-nav{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

/* =========================
   DOTS
========================= */

.gallery-dots{
  position:absolute;
  left:50%;
  bottom:12px;

  transform:translateX(-50%);

  display:flex;
  align-items:center;
  gap:6px;

  z-index:4;
}

.gallery-dot{
  width:8px;
  height:8px;

  border-radius:50%;

  background:rgba(255,255,255,.8);

  transition:.2s ease;
}

.gallery-dot.active{
  background:#6fd2eb;
}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

.gallery-nav{
  width:36px;
  height:36px;
  font-size:24px;
}

.gallery-prev{
  left:8px;
}

.gallery-next{
  right:8px;
}

.gallery-dots{
  bottom:8px;
}

.gallery-dot{
  width:7px;
  height:7px;
}

}

/* =========================
   SHOW STYLE
========================= */
.product-single-section {
  padding-top: 20px;
  padding-bottom: 80px;
}

.single-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 32px;
}

.single-product-main-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f7f3eb;
  overflow: hidden;
}

.single-product-main-image {
  width: 35%;
  height: 100%;
  object-fit: contain;
  display: block;
  margin-top: 35px;
}

.single-product-info {
  padding-top: 0;
}

.single-product-title {
  margin: 0 0 32px;
  color: #000;
  font-size: 35px;
  line-height: 1.05;
  font-weight: 400;
}

.single-product-meta {
  margin-bottom: 32px;
}

.single-product-unit-label {
  margin-bottom: 16px;
  font-size: 16px;
  color: #000;
}

.size-switchers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.size-option {
  min-width: 104px;
  padding: 12px 18px;
  border: 1px solid #6fd2eb;
  background: #fff;
  color: #000;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
  border-radius: 4px;
}

.size-option.active {
  background: #6fd2eb;
  color: #000;
}

.size-option-volume {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.size-option-price {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 4px;
}

.single-product-price {
  margin-bottom: 32px;
  color: #000;
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
}

.single-product-cart-area {
  margin-bottom: 32px;
}

.cart-inline-notice {
  display: none;
  width: 100%;
  background: #e7eef4;
  color: #000;
  font-size: 16px;
  line-height: 1.4;
  padding: 14px 18px;
  margin-bottom: 8px;
}

.cart-inline-notice.show {
  display: block;
}

.single-product-cart-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-box {
  display: flex;
  align-items: center;
  min-width: 132px;
  height: 42px;
  border: 1px solid #000000;
  border-radius: 4px;
}

.qty-btn {
  width: 42px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #000;
  font-size: 28px;
  cursor: pointer;
}

.qty-box input {
  width: 48px;
  border: 0;
  outline: none;
  background: transparent;
  text-align: center;
  font-size: 20px;
  color: #000;
}

.single-add-to-cart-btn {
  flex: 1;
  height: 42px;
  border: 0;
  background: #6fd2eb;
  color: #000;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  border-radius: 4px;
}

.single-product-accordion {
  border-top: 1px solid #000000;
}

.acc-item {
  border-bottom: 1px solid #000000;
}

.acc-btn {
  width: 100%;
  padding: 9px 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.acc-plus {
  color: #000;
  font-size: 34px;
  line-height: 1;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 16px;
}

.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.acc-inner {
  padding: 0 0 32px;
  color: #000;
  font-size: 16px;
  line-height: 1.8;
}

.acc-item.active .acc-content {
  max-height: 1000px;
}

.section-breadcrumb a,
.section-breadcrumb span {
  color: #000;
}

@media (max-width: 900px) {
  .single-product-layout {
    grid-template-columns: 1fr;
  }

  .single-product-title {
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  .single-product-cart-row {
    flex-direction: column;
    align-items: stretch;
  }

  .qty-box,
  .single-add-to-cart-btn {
    width: 100%;
  }

  .single-product-title {
    font-size: 22px;
  }

  .size-switchers {
    gap: 10px;
  }

  .size-option {
   /* min-width: calc(50% - 5px); */
  }
}

.btn-text-mobile{
display:none;
}

@media (max-width:640px){

.single-product-cart-row{
flex-direction:row;
align-items:stretch;
gap:8px;
}

.qty-box{
width:132px;
flex:0 0 132px;
}

.single-add-to-cart-btn{
flex:1;
font-size:15px;
padding:0 12px;
}

.btn-text-desktop{
display:none;
}

.btn-text-mobile{
display:inline;
}

.single-add-to-cart-btn svg{
width:22px;
height:18px;
}
}

/***** PRICE *****/
.product-price-box {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.price-current {
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  color: #000;
}

.price-current.has-old {
  color: #ff5a5a;
}

.price-old {
  font-size: 16px;
  line-height: 1.2;
  color: #000;
  text-decoration: line-through;
}

/***** CART PAGE *****/
.cart-item-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.cart-price-main {
  font-size: 20px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0;
  padding: 0;
  order: 2;
}

.cart-price-main.has-discount {
  color: #ef5a54;
}

.cart-item-price-sub {
  font-size: 14px;
  color: #8f8f8f;
  text-decoration: line-through;
  margin: 0 0 3px 0;
  padding: 0;
  order: 1;
}

/*** /CHAGES ***/

.cart-page {
  background: #ffffff;
  padding: 24px 0 40px;
}

.cart-container {
  width: 100%;
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 16px;
}

.cart-page .section-breadcrumb {
  margin-bottom: 26px;
}

.cart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 58px;
}

.cart-header h1 {
  margin: 0;
  font-size: 55px;
  line-height: 1;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0;
  text-transform: none;
}

.cart-count-top {
  font-size: 18px;
  line-height: 1.2;
  color: #000000;
  margin-top: 6px;
}

.cart-list {
  width: 100%;
}

.cart-item {
  position: relative;
  padding: 0 0 18px;
  margin-bottom: 38px;
  border-bottom: 1px solid rgb(0 0 0 / 35%);
}

.cart-remove {
  position: absolute;
  top: -20px;
  right: 6px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font-size: 52px;
  line-height: 1;
  font-weight: 300;
  color: #000000;
}

.cart-item-top {
  margin-bottom: 12px;
  padding-right: 60px;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  height: 160px;
  max-width: 520px;
}

.cart-item-title {
  display: inline-block;
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
}

.cart-item-title:hover {
  text-decoration: none;
}

.cart-item-unit {
  font-size: 15px;
  line-height: 1.2;
  color: #000000;
}

.cart-item-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
}

.cart-left {
  display: flex;
  align-items: stretch;
  gap: 34px;
}

.cart-image-box {
  width: 111px;
  height: 160px;
  background: #f7f3eb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
  min-width: 110px;
  max-width: 110px;
}

.cart-image-box img {
  max-width: 72px;
  max-height: 118px;
  object-fit: contain;
  display: block;
}

.cart-qty-wrap {
  padding-bottom: 1px;
}

.cart-qty-box {
  width: 76px;
  height: 42px;
  border: 1px solid #000000;
  display: flex;
  align-items: stretch;
  background: transparent;
}

.cart-qty-btn {
  width: 22px;
  border: none;
  background: transparent;
  color: #000000;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
}

.cart-qty-input {
  width: 32px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 18px;
  color: #000000;
  outline: none;
  -moz-appearance: textfield;
}

.cart-qty-input::-webkit-outer-spin-button,
.cart-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;

  min-width: 200px;
  text-align: right;
}

.cart-price-main {
  font-size: 20px;
  line-height: 1.1;
  font-weight: 700;
  color: #000000;
}

.cart-price-sub {
  font-size: 16px;
  line-height: 1.2;
  color: #000000;
}

.cart-summary {
  max-width: 970px;
  margin: 34px auto 0;
}

.cart-summary-title {
  margin: 0 0 28px;
  font-size: 56px;
  line-height: 1;
  font-weight: 400;
  color: #000000;
}

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.2;
  color: #000000;
}

.cart-summary-total {
  font-weight: 700;
  margin-bottom: 16px;
}

.cart-summary-divider {
  width: 100%;
  height: 1px;
  background: #000000;
  margin: 0 0 16px;
}

.cart-summary-actions {
  display: flex;
  justify-content: flex-end;
}

.cart-checkout-btn {
  width: 340px;
  height: 49px;
  border: none;
  background: #6fd2eb;
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
}

.cart-checkout-btn:hover {
  opacity: 0.96;
}

@media (max-width: 991px) {
  .cart-header {
    margin-bottom: 34px;
  }

  .cart-header h1 {
    font-size: 38px;
  }

  .cart-count-top {
    font-size: 16px;
  }

  .cart-item-title {
    font-size: 15px;
  }

  .cart-item-bottom {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    min-height: auto;
  }

  .cart-left {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    flex: 1;
    min-width: 0;
  }

  .cart-right {
    text-align: right;
    min-width: fit-content;
    padding-bottom: 2px;
    margin-left: auto;
  }

  .cart-item-price-wrap {
    flex-shrink: 0;
  }
}

  .cart-summary {
    max-width: 100%;
  }

  .cart-summary-title {
    font-size: 40px;
  }

  .cart-summary-actions {
    justify-content: stretch;
  }

  .cart-checkout-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .cart-page {
    padding: 20px 0 30px;
  }

  .cart-container {
    padding: 0 14px;
  }

  .cart-page .section-breadcrumb {
    margin-bottom: 18px;
  }

  .cart-header {
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 26px;
  }

  .cart-header h1 {
    font-size: 30px;
  }

  .cart-count-top {
    font-size: 14px;
    margin-top: 3px;
  }

  .cart-item {
    padding-bottom: 18px;
    margin-bottom: 24px;
  }

  .cart-remove {
    top: 0;
    right: 0;
    font-size: 40px;
  }

  .cart-item-top {
    padding-right: 34px;
  }

  .cart-item-title {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .cart-item-unit {
    font-size: 15px;
  }

  .cart-left {
    gap: 18px;
  }

  .cart-image-box {
    width: 96px;
    height: 138px;
  }

  .cart-image-box img {
    max-width: 62px;
    max-height: 105px;
  }

  .cart-qty-box {
    width: 70px;
    height: 40px;
  }

  .cart-qty-btn {
    width: 20px;
    font-size: 16px;
  }

  .cart-qty-input {
    width: 30px;
    font-size: 16px;
  }

  .cart-price-main {
    font-size: 22px;
  }

  .cart-price-sub {
    font-size: 15px;
  }

  .cart-summary-title {
    font-size: 30px;
    margin-bottom: 14px;
  }

  .cart-summary-row {
    font-size: 16px;
  }

  .cart-checkout-btn {
    height: 46px;
    font-size: 16px;
  }
}

/***** SHOW + SEE ******/
/* =========================
   SINGLE PRODUCT GALLERY
========================= */

.single-product-gallery {
  width: 100%;
}

.single-product-main-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f7f3eb;
  overflow: hidden;
}

.product-gallery.single-product-gallery-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.single-main-image-button {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: zoom-in;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-product-main-image {
  width: 55%;
  height: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  padding: 32px 0;
}

.single-product-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.single-thumb {
  width: 100%;
  height: 150px;
  border: 0;
  padding: 0;
  background: #f7f3eb;
  cursor: pointer;
  overflow: hidden;
}

.single-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.single-thumb.active {
  outline: 2px solid #6fd2eb;
  outline-offset: -2px;
}

/* badge */

.single-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--offer);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

/* ძველი ისრები და dots აქ აღარ ჩანს */

.gallery-nav,
.gallery-dots {
  display: none !important;
}

/* =========================
   LIGHTBOX
========================= */

body.lightbox-open {
  overflow: hidden;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.96);
  z-index: 5000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.2s ease;
}

.lightbox-overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #000000;
  font-size: 48px;
  line-height: 1;
  cursor: pointer;
  z-index: 12;
  padding: 0;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: #000000;
  font-size: 56px;
  line-height: 1;
  cursor: pointer;
  z-index: 12;
  padding: 0;
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(92vw, 820px);
  height: min(72vh, 720px);
  transform: translate(-50%, -56%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  background: #f7f3eb;
}

.lightbox-thumbs {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 12;
  flex-wrap: nowrap;
  overflow-x: auto;
  max-width: calc(100vw - 120px);
  padding: 0;
}

.lightbox-thumb {
  width: 130px;
  height: 88px;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
  overflow: hidden;
}

.lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #f7f3eb;
}

.lightbox-thumb.active {
  border-color: #6fd2eb;
}

@media (max-width: 900px) {
  .single-product-main-image {
    width: 60%;
    padding: 24px 0;
  }

  .single-thumb {
    height: 120px;
  }

  .lightbox-content {
    width: min(90vw, 680px);
    height: min(62vh, 560px);
    transform: translate(-50%, -58%);
  }

  .lightbox-thumb {
    width: 100px;
    height: 72px;
  }
}

@media (max-width: 640px) {
  .single-product-thumbs {
    gap: 6px;
    margin-top: 10px;
  }

  .single-thumb {
    height: 95px;
  }

  .single-product-main-image {
    width: 62%;
    padding: 20px 0;
  }

  .lightbox-close {
    top: 12px;
    right: 14px;
    font-size: 38px;
    width: 34px;
    height: 34px;
  }

  .lightbox-nav {
    width: 34px;
    height: 34px;
    font-size: 38px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-content {
    width: min(92vw, 420px);
    height: min(56vh, 360px);
    transform: translate(-50%, -62%);
  }

  .lightbox-thumbs {
    gap: 8px;
    bottom: 18px;
    max-width: calc(100vw - 24px);
  }

  .lightbox-thumb {
    width: 72px;
    height: 56px;
  }
}

/*** COMING SOON BADGE ***/
.product-image.out-of-stock::after,
.products-grid .product-image.out-of-stock::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(255 255 255 / 44%);
  z-index: 4;
  pointer-events: none;
}

.coming-soon-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-size: 20px;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 999px;
  z-index: 5;
  white-space: nowrap;
  pointer-events: none;
}

/*** MAIN PAGE DISCOUNT ***/
.product-card .product-price-box,
.offer-card .product-price-box,
.products-grid .product-price-box {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.product-card .price-current,
.offer-card .price-current,
.products-grid .price-current {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  color: #111;
}

.product-card .price-current.has-old,
.offer-card .price-current.has-old,
.products-grid .price-current.has-old {
  color: #ef5a54;
}

.product-card .price-old,
.offer-card .price-old,
.products-grid .price-old {
  font-size: 16px;
  line-height: 1;
  color: #111;
  text-decoration: line-through;
  opacity: 0.8;
}