/* ==========================================================================
   Equilibra Moldova — Design system v3
   Palette:  --pine (deep pharmacy green, primary — close to brand green
             #007A33), --leaf (mid green accent), --mint (pale green
             surfaces), --plum (brand crimson accent, close to #CE0037),
             --paper (warm off-white background), --ink (text)
   Type:     Display — "Space Grotesk" · Body — "Public Sans"
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Public+Sans:wght@400;500;600;700&display=swap");

:root {
  --pine: #0e5a34;
  --pine-2: #0a7a3f;
  --leaf: #2e9563;
  --mint: #eaf3ec;
  --mint-2: #f4f8f5;
  --plum: #ce0037;
  --plum-2: #fdedf3;
  --paper: #fcfbf7;
  --ink: #182420;
  --ink-60: #556059;
  --line: #dee6df;
  --white: #ffffff;

  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Public Sans", sans-serif;

  --container: 1180px;
  --radius: 4px;
  --radius-lg: 10px;

  --swiper-theme-color: var(--pine);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.15;
  color: var(--pine);
}
p {
  margin: 0;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--ink-60);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--pine);
  color: #ddefe3;
  font-size: 13px;
  text-align: center;
  padding: 8px 16px;
  letter-spacing: 0.01em;
}
.topbar .short {
  display: none;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  flex: none;
}
.logo img {
  height: 36px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 22px;
  flex: 1;
  min-width: 0;
}
.main-nav > li {
  position: relative;
}
.main-nav > li > a {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--pine);
  padding: 8px 2px;
  display: inline-block;
}
.main-nav > li > a:hover {
  color: var(--leaf);
}
.dropdown {
  position: relative;
  background: transparent;
  &:hover{
     .dropdown-menu{
      display: block;
     }
  }

  .dropdown-toggle{
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    font-size: 14.5px;
    color: var(--pine);
    padding: 8px 2px;

    img{
      width: 16px;
      height: 16px;
    }
  }
 
  .dropdown-menu{
    display: none;
    position: absolute;
    top: 100%;
    left: -10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 28px rgba(14, 90, 52, 0.12);
    padding: 10px;
    min-width: 240px;
  }
}
.main-nav li:hover .dropdown,
.main-nav li:focus-within .dropdown {
  display: block;
}
.dropdown-menu a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--ink);
}
.dropdown-menu a:hover {
  background: var(--mint);
  color: var(--pine);
}
.dropdown-menu a small {
  color: var(--ink-60);
  font-weight: 400;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pine);
  flex: none;
}
.icon-btn svg {
  width: 16px;
  height: 16px;
}
.lang-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  flex: none;
}
.lang-switch button {
  background: none;
  border: none;
  padding: 6px 12px;
  color: var(--ink-60);
}
.lang-switch button[aria-current="true"] {
  background: var(--pine);
  color: #fff;
}
.btn-cta {
  background: var(--plum);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 18px;
  border-radius: 30px;
  white-space: nowrap;
  border: none;
  box-shadow: 0 6px 16px rgba(206, 0, 55, 0.25);
  flex: none;
}
.btn-cta:hover {
  background: #a5002b;
}
.btn-cta .short {
  display: none;
}
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--pine);
  flex: none;
}

/* ---------- Buttons general ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 30px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 14.5px;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--pine);
  color: #fff;
}
.btn-primary:hover {
  background: var(--pine-2);
}
.btn-outline {
  background: transparent;
  border-color: var(--pine);
  color: var(--pine);
}
.btn-outline:hover {
  background: var(--mint);
}
.related-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.related-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.related-category img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.btn-buy {
  background: var(--plum);
  color: #fff;
}
.btn-buy:hover {
  background: #a5002b;
}
.btn-block {
  width: 100%;
}

/* ---------- Hero (two-column, static — no slider) ---------- */
.hero {
  background: linear-gradient(120deg, var(--mint) 0%, var(--paper) 60%);
  padding: 56px 0 52px;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}
.hero-eyebrow {
  color: var(--leaf);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}
.hero h1 {
  font-size: 42px;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.hero p.lede {
  font-size: 16.5px;
  color: var(--ink-60);
  max-width: 46ch;
  margin-bottom: 24px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-art {
  aspect-ratio: 4/3.3;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(14, 90, 52, 0.14);
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  box-shadow: 0 10px 24px rgba(14, 90, 52, 0.16);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero-badge b {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--pine);
  flex: none;
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  max-width: 180px;
}
.trust-item .ic {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.trust-item .ic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.trust-item h3,
.trust-item p {
  margin: 0;
}
.trust-item h3 {
  color: var(--pine);
  font-size: 18px;
  font-weight: 700;
}
.trust-item p {
  color: var(--ink-60);
}

/* ---------- Category banner strip ---------- */
.cat-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 30px;
  aspect-ratio: 5.2/1;
}
.cat-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Page hero (two-column, used on Despre etc.) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--mint) 0%, var(--paper) 60%);
  padding: 52px 0;
}
.page-hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}
.page-hero-art {
  aspect-ratio: 4/3.1;
  border-radius: 20px;
  overflow: hidden;
}
.page-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Sections ---------- */
.section {
  padding: 64px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: 28px;
}
.section-head p {
  color: var(--ink-60);
  max-width: 52ch;
  margin-top: 8px;
}
.section-alt {
  background: var(--mint-2);
}

/* ---------- Category grid ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cat-card:hover {
  border-color: var(--leaf);
  background: var(--mint);
  .ic {
    background: #fff;
  }
}
.cat-card .ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex: none;
}
.cat-card .ic img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.cat-card h3 {
  font-size: 16px;
  color: var(--pine);
  margin-bottom: 3px;
}
.cat-card span {
  font-size: 13px;
  color: var(--ink-60);
}
.cat-card.soon {
  opacity: 0.55;
  cursor: default;
}
.cat-card.soon span.badge {
  background: var(--mint);
  color: var(--leaf);
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  display: inline-block;
  margin-top: 2px;
}

/* ---------- Product grid / cards ---------- */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.prod-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.prod-thumb {
  aspect-ratio: 1/1;
  background: var(--mint-2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.prod-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prod-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--plum);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 20px;
}
.prod-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.prod-cat {
  font-size: 11.5px;
  color: var(--leaf);
  font-weight: 700;
}
.prod-body h3 {
  font-size: 15px;
  color: var(--ink);
  font-weight: 700;
  font-family: var(--font-body);
}
.prod-price {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--pine);
  margin-top: auto;
}
.prod-price s {
  color: var(--ink-60);
  font-size: 13px;
  margin-right: 6px;
  font-weight: 400;
}

/* ---------- Swiper carousels ---------- */
.swiper {
  padding-bottom: 6px;
}
.swiper .swiper-slide {
  height: auto;
  width: 250px;
}
.swiper .prod-card {
  height: 100%;
}
.swiper-button-prev,
.swiper-button-next {
  width: 40px !important;
  height: 40px !important;
  margin-top: -20px !important;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(14, 90, 52, 0.16);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 14px !important;
  font-weight: 700;
  color: var(--pine);
}
.swiper-pagination-bullet-active {
  background: var(--pine) !important;
}

/* ---------- Split (about-style content blocks) ---------- */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}
.split.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}
.split.reverse .split-media {
  order: 2;
}
.split-media img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/3.3;
  object-fit: cover;
}
.split h2 {
  font-size: 28px;
  margin-bottom: 14px;
}
.split p {
  color: var(--ink-60);
  margin-bottom: 14px;
}
.value-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 20px;
}
.value-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink);
}
.value-list li::before {
  content: "✓";
  color: var(--leaf);
  font-weight: 700;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  background: var(--pine);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 16px;
  color: var(--pine);
  margin-bottom: 6px;
}
.step p {
  font-size: 14px;
  color: var(--ink-60);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-size: 13px;
  color: var(--ink-60);
  margin: 18px auto;
  overflow-x: auto;
  white-space: nowrap;
}
.breadcrumb a {
  color: var(--leaf);
}
.breadcrumb .sep {
  margin: 0 6px;
}

/* ---------- Filters ---------- */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 26px;
}
.filter-bar select {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 9px 14px;
  font-size: 13.5px;
  background: #fff
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6"><path d="M0 0l5 6 5-6z" fill="%23556059"/></svg>')
    no-repeat right 14px center;
  appearance: none;
  padding-right: 32px;
  color: var(--ink);
}
.result-count {
  margin-left: auto;
  font-size: 13.5px;
  color: var(--ink-60);
}

/* ---------- Pagination ---------- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.pagination a,
.pagination span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--pine);
  border: 1px solid var(--line);
}
.pagination a:hover {
  background: var(--mint);
}
.pagination .active {
  background: var(--pine);
  color: #fff;
  border-color: var(--pine);
}

/* ---------- Product detail ---------- */
.product-section{
  padding: 24px 0 64px;
}
.product-detail {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  margin: 0 auto 60px;
}
.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--mint-2);
  aspect-ratio: 1/1;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-main a {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery-lightbox-links {
  display: none;
}
.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.gallery-thumbs button {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--line);
  background: none;
  padding: 0;
  flex: none;
}
.gallery-thumbs button.active {
  border-color: var(--pine);
}
.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-cat {
  color: var(--leaf);
  font-weight: 700;
  font-size: 13px;
}
.pd-title {
  font-size: 29px;
  margin: 8px 0 12px;
}
.pd-lede {
  color: var(--ink-60);
  font-size: 15.5px;
  margin-bottom: 22px;
}
.pd-description-block {
  max-width: 1024px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 20px 20px;
  margin: 0 auto;
  background: var(--white);
}
.pd-description-block h2 {
  font-size: 18px;
  margin-bottom: 10px;
}
.pd-description-block p {
  color: var(--ink-60);
  font-size: 13.5px;
  margin-bottom: 10px;
}
.pd-description-block .btn {
  margin-top: 6px;
}
.pd-buybox {
  background: var(--mint);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
}
.pd-buybox p {
  font-size: 13.5px;
  color: var(--ink-60);
  margin-bottom: 14px;
}
.pd-buybox .note {
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--ink-60);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}
.accordion-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 2px;
  font-weight: 700;
  font-size: 14.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--pine);
  gap: 12px;
}
.accordion-item summary::-webkit-details-marker {
  display: none;
}
.accordion-item summary::after {
  content: "+";
  font-size: 20px;
  color: var(--ink-60);
  font-weight: 400;
  flex: none;
}
.accordion-item[open] summary::after {
  content: "–";
}
.accordion-item .body {
  padding: 0 2px 18px;
  font-size: 14px;
  color: var(--ink-60);
}
.accordion-item .body ul {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}
.accordion-item .body li::before {
  content: "•  ";
  color: var(--leaf);
}

/* ---------- Contact / forms ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-grid > form {
  position: relative;
  overflow: hidden;
  background: var(--mint-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 12px 30px rgba(14, 90, 52, 0.07);
}
.contact-grid > form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--plum);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pine);
}
.field input,
.field textarea {
  border: 1px solid transparent;
  border-bottom-color: var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  font-size: 14.5px;
  font-family: inherit;
  background: #fff;
  width: 100%;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(46, 149, 99, 0.13);
  background: var(--white);
  outline: none;
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-grid > form .btn {
  margin-top: 4px;
  box-shadow: 0 8px 16px rgba(14, 90, 52, 0.16);
}
.info-card {
  background: var(--mint);
  border-radius: var(--radius-lg);
  padding: 26px;
  margin-bottom: 18px;
}
.info-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.info-card p {
  font-size: 14px;
  color: var(--ink-60);
}
.info-card a.link {
  color: var(--pine);
  font-weight: 700;
}

/* ---------- 404 ---------- */
.error-page {
  text-align: center;
  padding: 90px 0 60px;
}
.error-page .code {
  color: var(--leaf);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.error-page h1 {
  font-size: 34px;
  margin-bottom: 26px;
}

/* ---------- Legal ---------- */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 0 60px;
}
.legal h1 {
  font-size: 30px;
  margin-bottom: 10px;
}
.legal .updated {
  color: var(--ink-60);
  font-size: 13.5px;
  margin-bottom: 34px;
}
.legal h2 {
  font-size: 19px;
  margin: 30px 0 10px;
}
.legal p,
.legal li {
  color: var(--ink-60);
  font-size: 14.5px;
  margin-bottom: 10px;
}
.legal li::marker {
  color: var(--leaf);
}
.legal ul {
  padding-left: 20px;
  list-style: disc;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--pine);
  color: #ddefe3;
  padding: 52px 0 24px;
  margin-top: 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-brand .logo-chip {
  display: inline-flex;
  align-items: center;
  background: #fff;
  padding: 8px 14px;
  border-radius: 10px;
}
.footer-brand .logo-chip img {
  height: 32px;
  width: auto;
}
.footer-brand p {
  font-size: 13.5px;
  color: #b9d6c4;
  margin-top: 12px;
  max-width: 32ch;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 13.5px;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.site-footer ul {
  display: grid;
  gap: 10px;
}
.site-footer a {
  font-size: 13.5px;
  color: #c7e2d2;
}
.site-footer a:hover {
  color: #fff;
}
.partner-block {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 28px 0;
  flex-wrap: wrap;
}
.partner-block p {
  font-size: 13.5px;
  color: #eaf3ec;
  margin: 0;
}
.partner-block .btn {
  border-color: #fff;
  color: #fff;
  &:hover{
    background: rgba(255, 255, 255, 0.1);
  }
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom .copyright {
  font-size: 12.5px;
  color: #9fc5af;
}
.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.socials a svg {
  width: 16px;
  height: 16px;
  fill: #ddefe3;
}
.socials a:hover {
  background: rgba(255, 255, 255, 0.22);
}
.socials a:hover svg {
  fill: #fff;
}
.socials.light a {
  background: var(--mint);
}
.socials.light a svg {
  fill: var(--pine);
}
.socials.light a:hover {
  background: var(--pine);
}
.socials.light a:hover svg {
  fill: #fff;
}

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 6px 20px 18px;
}
.mobile-nav details {
  border-bottom: 1px solid var(--line);
}
.mobile-nav details summary {
  padding: 13px 0;
  font-weight: 700;
  color: var(--pine);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-nav details summary::-webkit-details-marker {
  display: none;
}
.mobile-nav details summary::after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../img/chevron-down.svg");
  background-size: cover;
}
.mobile-nav details[open] summary::after {
  transform: rotate(180deg);
}
.mobile-nav details > div {
  padding-bottom: 10px;
}
.mobile-nav a:not(.btn ) {
  display: block;
  padding: 10px 0;
  font-size: 14.5px;
  color: var(--ink);
  border-bottom: 1px solid var(--mint);
}
.mobile-nav > a:not(.btn) {
  font-weight: 700;
  color: var(--pine);
}
.mobile-nav .soon {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  color: var(--ink-60);
  border-bottom: 1px solid var(--mint);
}
.mobile-nav .mobile-cta {
  margin-top: 14px;
  text-align: center;
  border: none;
}
.mobile-nav .mobile-lang {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.mobile-nav .mobile-lang button {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 8px;
  font-weight: 700;
  font-size: 13px;
  background: #fff;
  color: var(--ink-60);
}
.mobile-nav .mobile-lang button[aria-current="true"] {
  background: var(--pine);
  color: #fff;
  border-color: var(--pine);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container,
  .page-hero .container {
    grid-template-columns: 1fr;
  }
  .hero-art,
  .page-hero-art {
    order: -1;
  }
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }
  .split.reverse .split-media {
    order: 0;
  }
  .product-detail {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prod-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .container {
    padding: 0 16px;
  }
  .topbar {
    font-size: 11.5px;
    padding: 7px 12px;
  }
  .topbar .long {
    display: none;
  }
  .topbar .short {
    display: inline;
  }
  .header-row {
    padding: 10px 16px;
    gap: 10px;
  }
  .main-nav,
  .header-actions .lang-switch,
  .header-actions .icon-btn {
    display: none;
  }
  .menu-toggle {
    display: flex;
    order: 3;
  }
  .logo {
    order: 1;
  }
  .header-actions {
    order: 2;
    margin-left: auto;
    gap: 8px;
  }
  .btn-cta .full {
    display: none;
  }
  .btn-cta .short {
    display: inline;
  }
  .btn-cta {
    padding: 10px 14px;
    font-size: 13px;
  }

  .hero {
    padding: 36px 0 40px;
  }
  .hero h1 {
    font-size: 28px;
  }
  .hero p.lede {
    font-size: 15px;
  }
  .page-hero {
    padding: 36px 0;
  }
  .section {
    padding: 40px 0;
  }
  .section-head h2 {
    font-size: 23px;
  }

  .trust-bar {
    padding: 18px 0;
  }
  .trust-bar .container {
    justify-content: center;
    gap: 18px 14px;
  }
  .trust-item {
    max-width: calc(50% - 14px);
    font-size: 11px;
  }
  .trust-item .ic {
    width: 60px;
    height: 60px;
  }

  .cat-grid {
    grid-template-columns: 1fr;
  }

  .product-section{
    padding: 0 0 40px;
  }
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .prod-body {
    padding: 12px;
    gap: 8px;
  }
  .prod-body h3 {
    font-size: 13.5px;
  }
  .prod-price {
    font-size: 16px;
  }
  .btn {
    font-size: 13.5px;
    padding: 11px 16px;
  }

  .steps {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: left;
  }
  .partner-block {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .swiper .swiper-slide {
    width: 70%;
  }
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }

  .pd-title {
    font-size: 24px;
  }
  .contact-grid {
    gap: 30px;
  }
}
