/* =============================================
   FRANÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡AISE FOOD ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Main Stylesheet
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --color-primary: #f15361;
  --color-active: #ed2839;
  --color-nav: #000091;
  --color-white: #ffffff;
  --color-bg-header: #ffffff;
  --font-main: 'Poppins', sans-serif;
  --header-height: 79px;
  --transition: 0.3s ease;
  --shadow-header: 0 4px 24px rgba(0, 0, 0, 0.10);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: #333;
  background: #f9f9f9;
}

.mobile-bottom-nav {
  display: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color-bg-header);
  z-index: 1000;
  transition: box-shadow 0.45s ease;
}

.site-header.header-scrolled {
  box-shadow: var(--shadow-header);
}

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

/* Left group: Logo + Nav */
.header-left {
  display: flex;
  align-items: center;
  /* Figma: gap-[98px] between logo and nav */
  justify-content: space-between;
  gap: 100px;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  gap: 3.923px;
  /* Figma: gap-[3.923px] */
}

.header-logo img {
  height: 40px;
  /* Figma: h-[40px] */
  width: auto;
}

/* Navigation */
.header-nav {
  display: flex;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 31px;
  /* Figma: gap-[31px] between nav items */
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list>.menu-item {
  position: relative;
  list-style: none;
}

.nav-list>.menu-item::marker {
  content: none;
}

.nav-list>.menu-item>a {
  display: flex;
  align-items: center;
  gap: 10px;
  /* Figma: gap-[10px] */
  font-family: 'Inter', var(--font-main);
  font-size: 14px;
  /* Figma: 14px Inter Medium */
  font-weight: 500;
  line-height: 20px;
  color: var(--color-nav);
  white-space: nowrap;
  padding: 10px;
  /* Figma: p-[10px] */
  height: 44px;
  /* Figma: h-[44px] */
  transition: color var(--transition);
  text-decoration: none;
}

.nav-list>.current-menu-item>a,
.nav-list>.current-menu-ancestor>a,
.nav-list>.current-menu-parent>a,
.nav-list>.current_page_item>a,
.nav-list>.menu-item>a:hover,
.nav-list>.menu-item>a:focus {
  color: var(--color-active);
}

.menu-item-has-children>a::after {
  content: '';
  width: 8px;
  /* Figma: w-[8px] */
  height: 4px;
  /* Figma: h-[4px] */
  flex-shrink: 0;
  background: url('../images/header-chevron.svg') no-repeat center / contain;
  transition: transform var(--transition);
}

/* Dropdown */
.nav-list .sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 200;
  list-style: none;
  margin: 0;
}

.nav-list .sub-menu .menu-item {
  list-style: none;
}

.nav-list .sub-menu .menu-item::marker {
  content: none;
}

.nav-list .sub-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--color-white);
  filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.06));
}

.nav-list .sub-menu .menu-item a {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-nav);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.nav-list .sub-menu .menu-item a:hover {
  background: #f5f5fc;
  color: var(--color-active);
}

.menu-item-has-children:hover>.sub-menu,
.menu-item-has-children.open>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.menu-item-has-children:hover>a::after,
.menu-item-has-children.open>a::after {
  transform: rotate(180deg);
}

/* Header Actions ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â right group */
.header-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}

/* Sign in button */
.btn-signin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: #f15361;
  color: #fff;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  border-radius: 10px;
  white-space: nowrap;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.btn-signin:hover {
  background: var(--color-active);
  box-shadow: 0 4px 16px rgba(241, 83, 97, 0.4);
  transform: translateY(-1px);
}

/* Language Switcher */
.lang-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', var(--font-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--color-nav);
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  height: 44px;
  transition: color var(--transition);
  white-space: nowrap;
}

.lang-btn:hover {
  color: var(--color-active);
}

.lang-globe {
  width: 30px;
  /* Figma: size-[30px] */
  height: 30px !important;
  flex-shrink: 0;
  margin-right: -12px;
  /* Figma: mr-[-12px] overlaps with EN text */
  position: relative;
  z-index: 1;
}

.lang-btn .lang-text {
  font-family: 'Inter', var(--font-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--color-nav);
}

.lang-arrow-img {
  width: 8px;
  height: 4px !important;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.lang-btn.open .lang-arrow-img {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 200;
}

.lang-btn.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown li {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-nav);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.lang-dropdown li a {
  display: block;
  padding: 10px 18px;
  color: inherit;
  text-decoration: none;
}

.lang-dropdown li:hover,
.lang-dropdown li.active {
  background: #f5f5fc;
  color: var(--color-active);
}

/* Header Icons: Search / Cart / User */
.header-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5.313px;
  /* Figma: gap-[5.313px] */
}

.header-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5.313px;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: opacity var(--transition);
}

.header-icon-btn:hover {
  opacity: 0.7;
}

/* Search ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma: w-[23.906px] h-[24.57px] */
.header-icon-btn.icon-search img {
  width: 23.906px;
  height: 24.57px;
  display: block;
}

/* Cart ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma: w-[27.227px] h-[25.234px] */
.header-icon-btn.icon-cart img {
  width: 27.227px;
  height: 25.234px;
  display: block;
}

/* User ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â inside p-[5.313px] container, icon size-[20px] */
.header-icon-btn.icon-user img {
  width: 20px;
  height: 20px;
  display: block;
}

/* Header Mini Cart Dropdown â€” Figma 129:5769 */
.header-cart-wrap {
  position: relative;
}

.mini-cart-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.mini-cart-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mini-cart-popup {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  width: 331.69px;
  min-height: 200px;
  padding: 26.695px;
  background: #fff;
  border: 0.667px solid #e6e6e6;
  border-radius: 20px 0 20px 20px;
  box-shadow: 0 8.009px 16.017px rgba(0, 0, 0, 0.12);
}

.mini-cart-popup__top {
  display: flex;
  flex-direction: column;
  gap: 8.009px;
  width: 100%;
}

.mini-cart-popup__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 250.937px;
  max-width: 100%;
}

.mini-cart-popup__title {
  margin: 0;
  font-family: var(--font-main);
  font-size: 13.348px;
  font-weight: 500;
  line-height: 1.5;
  color: #1a1a1a;
  white-space: nowrap;
}

.mini-cart-popup__close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30.032px;
  height: 30.032px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: opacity var(--transition);
}

.mini-cart-popup__close:hover {
  opacity: 0.75;
}

.mini-cart-popup__close img {
  width: 30.032px;
  height: 30.032px;
  display: block;
}

.mini-cart-popup__items {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-height: 220px;
  overflow-y: auto;
}

.mini-cart-popup__empty {
  margin: 0;
  padding: 8px 0;
  font-family: var(--font-main);
  font-size: 10.678px;
  font-weight: 400;
  line-height: 1.5;
  color: #808080;
}

.mini-cart-popup__item {
  display: flex;
  align-items: center;
  gap: 5.339px;
  width: 100%;
  background: #fff;
}

.mini-cart-popup__thumb {
  flex-shrink: 0;
  width: 80.086px;
  height: 66.739px;
  overflow: hidden;
  background: #f7f8fa;
}

.mini-cart-popup__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.mini-cart-popup__info {
  display: flex;
  flex-direction: column;
  gap: 1.335px;
  flex: 1;
  min-width: 0;
}

.mini-cart-popup__name {
  margin: 0;
  font-family: var(--font-main);
  font-size: 9.343px;
  font-weight: 400;
  line-height: 1.5;
  color: #1a1a1a;
  word-break: break-word;
}

.mini-cart-popup__meta {
  margin: 0;
  font-family: var(--font-main);
  font-size: 9.343px;
  font-weight: 400;
  line-height: 1.5;
  color: #808080;
  white-space: nowrap;
}

.mini-cart-popup__remove {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 16.017px;
  height: 16.017px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: opacity var(--transition);
}

.mini-cart-popup__remove:hover {
  opacity: 0.75;
}

.mini-cart-popup__remove img {
  width: 16.017px;
  height: 16.017px;
  display: block;
}

.mini-cart-popup__divider {
  width: 250.27px;
  max-width: 100%;
  height: 0.667px;
  margin: 8.009px 0;
  background: #e6e6e6;
}

.mini-cart-popup__bottom {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mini-cart-popup__subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 278.3px;
  max-width: 100%;
  padding: 16.017px 0;
  background: #fff;
}

.mini-cart-popup__count {
  margin: 0;
  font-family: var(--font-main);
  font-size: 10.678px;
  font-weight: 400;
  line-height: 1.5;
  color: #1a1a1a;
  white-space: nowrap;
}

.mini-cart-popup__total {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.67px;
  height: 12.013px;
}

.mini-cart-popup__currency {
  width: 8.563px;
  height: 9.591px;
  display: block;
  flex-shrink: 0;
}

.mini-cart-popup__currency path {
  fill: #1e1e1e;
}

.mini-cart-popup__amount {
  font-family: var(--font-main);
  font-size: 12.013px;
  font-weight: 600;
  line-height: 18.687px;
  color: #1e1e1e;
  white-space: nowrap;
}

.mini-cart-popup__actions {
  display: flex;
  flex-direction: column;
  gap: 8.009px;
  width: 278.3px;
  max-width: 100%;
}

.mini-cart-popup__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 33.369px;
  padding: 5.552px 9.253px;
  border-radius: 12px;
  font-family: var(--font-main);
  font-size: 10.68px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
}

.mini-cart-popup__btn:hover {
  opacity: 0.92;
  color: #fff;
}

.mini-cart-popup__btn--checkout {
  background: #3333a7;
}

.mini-cart-popup__btn--cart {
  background: #9999d3;
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  visibility: hidden;
}

.search-overlay.is-active {
  pointer-events: auto;
  visibility: visible;
}

.search-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: var(--shadow-header);
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  will-change: transform;
}

.search-overlay.is-open .search-panel {
  transform: translateY(0);
}

.search-panel-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: var(--header-height);
  padding: 16px 0;
}

.search-form {
  flex: 1;
  min-width: 0;
}

.search-form-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.search-form-field {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  border: 1px solid rgba(0, 0, 145, 0.12);
  border-radius: 999px;
  background: #f5f5fc;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.search-form-field:focus-within {
  border-color: rgba(237, 40, 57, 0.35);
  box-shadow: 0 0 0 4px rgba(237, 40, 57, 0.08);
  background: var(--color-white);
}

.search-form-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: 0.7;
}

.search-form-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--color-nav);
  outline: none;
}

.search-form-input::placeholder {
  color: rgba(0, 0, 145, 0.45);
}

.search-form-submit {
  flex-shrink: 0;
  padding: 10px 20px;
  border: none;
  border-radius: 999px;
  background: var(--color-active);
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.search-form-submit:hover {
  background: var(--color-primary);
}

.search-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #f5f5fc;
  color: var(--color-nav);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}

.search-close:hover {
  background: rgba(237, 40, 57, 0.1);
  color: var(--color-active);
}

.search-backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  background: rgba(0, 0, 145, 0.35);
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  cursor: pointer;
}

.search-overlay.is-open .search-backdrop {
  opacity: 1;
}

.search-panel--mobile {
  display: none;
}

body.search-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .search-panel-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px 0;
  }

  .search-form-field {
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 16px;
  }

  .search-form-submit {
    width: 100%;
  }

  .search-close {
    align-self: flex-end;
  }
}

/* Mobile drawer helpers â€” hidden on desktop */
.mobile-nav-backdrop,
.mobile-nav-head,
.mobile-nav-footer {
  display: none;
}

.mobile-nav-panel,
.mobile-nav-body {
  display: contents;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 36px;
  height: 36px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-nav);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  position: relative;
  min-height: 707px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 64px 0 214px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.hero-subtitle {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  color: #fff;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
  color: #fff;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: #fff;
  margin-bottom: 24px;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-hero-signin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: #f15361;
  color: #fff;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  border-radius: 10px;
  white-space: nowrap;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.btn-hero-signin:hover {
  background: var(--color-active);
  box-shadow: 0 6px 20px rgba(241, 83, 97, 0.45);
  transform: translateY(-2px);
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats-wrapper {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
}

.stats-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #3333A7D1;
  /* border: 0.639px solid #f2f2f2; */
  border-radius: 24px;
  box-shadow: 0 16px 32px -7.7px rgba(0, 0, 0, 0.25);
  padding: 32px 48px;
  height: 150px;
  backdrop-filter: blur(65px);
  -webkit-backdrop-filter: blur(20px);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  height: 96px;
}

.stat-icon {
  width: 39px;
  height: 39px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.stat-icon--sm {
  width: 31px;
  height: 31px;
}

.stat-item--featured .stat-icon--featured {
  width: 39px;
  height: 39px;
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  gap: 1px;
}

.stat-number,
.odometer,
.odometer.odometer-auto-theme {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #fff;
  white-space: nowrap;
  font-family: var(--font-main) !important;
}

.stat-suffix {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  line-height: 32px;
}

.stat-label {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  white-space: nowrap;
}

.stat-divider {
  display: none;
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  margin: 0 8px;
}

.stats-grid {
  display: contents;
}

/* main spacer */
main {
  padding-bottom: 0;
}

/* =============================================
   SIGN IN SECTION
   ============================================= */
.signin-section {
  background: #f2f2f2;
  padding: 48px 0;
}

.signin-card {
  display: flex;
  align-items: stretch;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* Left Panel */
.signin-left {
  width: 526px;
  flex-shrink: 0;
  background: #3333a7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 24px;
  text-align: center;
  border-radius: 12px 0 0 12px;
}

.signin-headline {
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}

.signin-sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  text-align: center;
}

.signin-safe {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  color: #f6cf45;
}

.signin-safe-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.signin-illustration {
  width: 100%;
  max-width: 413px;
  margin-top: 8px;
}

.signin-illustration img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Right Panel */
.signin-right {
  flex: 1;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  border-radius: 0 24px 24px 0;
  min-height: 633px;
}

/* Tabs */
.signin-tabs {
  width: 545px;
}

.signin-tab-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.signin-tab-btn {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #9999d3;
  padding: 4px 0;
  transition: color var(--transition);
}

.signin-tab-btn.active {
  color: #000091;
}

.signin-tab-line {
  position: relative;
  height: 1.5px;
  background: #e6e6e6;
  margin-top: 9px;
  border-radius: 2px;
}

.signin-tab-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background: #000091;
  border-radius: 2px;
  transition: left 0.3s ease;
}

.signin-tabs[data-active="register"] .signin-tab-indicator {
  left: 50%;
}

/* Form */
.signin-form-wrap {
  display: none;
  width: 545px;
}

.signin-form-wrap.active {
  display: block;
}

.signin-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.signin-field-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.signin-field {
  display: flex;
  flex-direction: column;
}

.signin-label {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #a5a5a5;
  padding: 10px;
}

.signin-input {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #333;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 11px 16px;
  width: 100%;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.signin-input::placeholder {
  color: #999;
}

.signin-input:focus {
  border-color: #3333a7;
  box-shadow: 0 0 0 3px rgba(51, 51, 167, 0.12);
}

.signin-file-wrap {
  position: relative;
  width: 100%;
}

.signin-file-input {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}

.signin-file-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  padding: 11px 16px;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.signin-file-label:hover,
.signin-file-input:focus-visible+.signin-file-label {
  border-color: #3333a7;
  box-shadow: 0 0 0 3px rgba(51, 51, 167, 0.12);
}

.signin-file-text {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #999;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 24px);
}

.signin-file-text.has-file {
  color: #333;
}

.signin-file-icon {
  width: 14px;
  height: 16px;
  flex-shrink: 0;
}

.signin-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.signin-remember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #3333a7;
  cursor: pointer;
}

.signin-checkbox {
  display: inline-block;
  width: 21px;
  height: 21px;
  border: 1px solid #3333a7;
  border-radius: 4px;
  flex-shrink: 0;
}

.signin-forgot {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #3333a7;
  transition: color var(--transition);
}

.signin-forgot:hover {
  color: var(--color-active);
}

.signin-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.signin-btn-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: #f15361;
  color: #fff;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.signin-btn-main:hover {
  background: var(--color-active);
  box-shadow: 0 6px 20px rgba(241, 83, 97, 0.4);
  transform: translateY(-1px);
}

.signin-btn-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.signin-or {
  display: flex;
  align-items: center;
  gap: 18px;
}

.signin-or-line {
  flex: 1;
  height: 1px;
  background: #e6e6e6;
}

.signin-or-text {
  font-size: 16px;
  font-weight: 400;
  color: #a5a5a5;
  flex-shrink: 0;
}

.signin-social {
  display: flex;
  gap: 19px;
}

.signin-btn-google,
.signin-btn-apple {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
}

.signin-btn-google {
  background: #fff;
  color: #a5a5a5;
  border: 1px solid #a5a5a5;
}

.signin-btn-apple {
  background: #1e1e1e;
  color: #fff;
  border: none;
}

.signin-btn-google:hover,
.signin-btn-apple:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.signin-btn-google img,
.signin-btn-apple img {
  width: 24px;
  height: 24px;
}

.signin-remember-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.signin-remember:has(.signin-remember-input:checked) .signin-checkbox {
  background: #3333a7;
  box-shadow: inset 0 0 0 3px #fff;
}

.signin-terms {
  align-items: flex-start;
}

.signin-auth-link {
  margin: 0;
  text-align: center;
  font-size: 14px;
  line-height: 22px;
  color: #666;
}

.signin-auth-link a,
.signin-auth-link button.signin-switch-tab {
  color: #3333a7;
  font-weight: 600;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.france-auth-notices {
  margin-bottom: 16px;
}

.france-auth-notices .woocommerce-error,
.france-auth-notices .woocommerce-message,
.france-auth-notices .woocommerce-info {
  list-style: none;
  margin: 0 0 8px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 20px;
}

.france-auth-notices .woocommerce-error {
  background: #fff1f2;
  color: #be123c;
}

.france-auth-notices .woocommerce-message {
  background: #ecfdf3;
  color: #047857;
}

.france-auth-notices .woocommerce-info {
  background: #eff6ff;
  color: #1d4ed8;
}

/* Notyf ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â theme colors */
.notyf {
  z-index: 99999;
}

.notyf__toast {
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  max-width: min(360px, calc(100vw - 32px));
}

.notyf__toast--success {
  background: #047857;
}

.notyf__toast--error {
  background: var(--color-active);
}

.notyf__icon--success,
.notyf__icon--error {
  background: rgba(255, 255, 255, 0.22);
}

.notyf__dismiss-btn {
  opacity: 0.85;
}

/* =============================================
   PARTNERS SECTION
   ============================================= */
.partners-section {
  background: #fff;
  padding: 48px 0 0;
  overflow: hidden;
}

.partners-title-wrap {
  display: block;
  text-align: center;
  margin-bottom: 39px;
  margin-left: auto;
  margin-right: auto;
}

.partners-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  color: #000091;
  white-space: nowrap;
  display: inline-block;
  position: relative;
  padding-bottom: 19px;
  /* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â© ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ underline */
}

/* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â®ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â· ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂªÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â²ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â  ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¶ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âµ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂªÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ */
.about-partners-title::after,
.partners-title::after {
  content: '';
  position: absolute;
  bottom: -13px;
  left: 0;
  width: 100%;
  height: 7px;
  border-radius: 0;
  background: linear-gradient(to right,
      #ed2839 0%,
      #ed2839 50.35%,
      #000091 50.35%,
      #000091 100%);
}

/* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¥ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â®ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ img ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â© */
.partners-underline {
  display: none;
}

.partners-marquee-wrap {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.partners-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 18s linear infinite;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partners-set {
  display: flex;
  align-items: center;
  gap: 60px;
  margin: 0;
  padding: 0 clamp(24px, 3vw, 60px);
  list-style: none;
  flex-shrink: 0;
  padding: 60px 30px;
}

.partners-item {
  flex-shrink: 0;
  list-style: none;
}

.partners-item::marker {
  content: none;
}

.partners-item img {
  width: 80px !important;
  height: auto;
  width: auto;
  display: block;
  object-fit: contain;
  opacity: 0.45;
  filter: grayscale(100%) brightness(1.2) contrast(0.9);
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.partners-item:hover img {
  opacity: 1;
  filter: none;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  background: #fff;
  padding: 120px 0;
}

.about-inner {
  display: flex;
  align-items: center;
  gap: 72px;
}

.about-image-wrap {
  flex-shrink: 0;
  width: 628px;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

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

.about-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.about-heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  color: #000091;
  white-space: nowrap;
}

.about-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 29.25px;
  color: #4d4d4d;
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 24px;
  background: #f15361;
  color: #fff;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 12px;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: gap 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-learn-more::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--color-active);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
  opacity: 0;
  z-index: -1;
}

.btn-learn-more:hover::before {
  width: 300px;
  height: 300px;
  opacity: 1;
}

.btn-learn-more:hover {
  box-shadow: 0 10px 30px rgba(237, 40, 57, 0.38);
  transform: translateY(-3px);
  gap: 12px;
}

.btn-learn-more:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 4px 12px rgba(237, 40, 57, 0.25);
  transition-duration: 0.15s;
}

@keyframes arrow-loop {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  40% {
    transform: translateX(140%);
    opacity: 0;
  }

  41% {
    transform: translateX(-140%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.btn-learn-more .btn-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.btn-learn-more:hover .btn-icon {
  animation: arrow-loop 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* =============================================
   FEATURED SECTION
   ============================================= */
.featured-section {
  background: #fff;
  padding: 48px 0;
}

.featured-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 203px;
}

.feat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.feat-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.feat-icon--headphones {
  width: 38px;
  height: 23px;
}

.feat-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.feat-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #000091;
}

.feat-desc {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #4d4d4d;
  white-space: nowrap;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.hiw-section {
  padding: 48px 0;
  background: #f2f2f2;
}

/* hiw section spacing */
.hiw-section .partners-title-wrap {
  margin-bottom: 43px;
}

.hiw-steps {
  display: flex;
  align-items: center;
  gap: 38px;
}

.hiw-step {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.hiw-number {
  order: 1;
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: #000091;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.hiw-text {
  order: 2;
  display: flex;
  flex-direction: column;
  width: 224px;
}

.hiw-step-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #000091;
}

.hiw-step-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #4d4d4d;
}

.hiw-icon {
  order: 3;
  object-fit: contain;
  flex-shrink: 0;
  width: 45px;
  height: 45px;
}

.hiw-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.hiw-arrow img {
  width: 36px;
  height: 33px;
  transform: rotate(180deg);
}

/* =============================================
   CATEGORIES SECTION
   ============================================= */
.categories-section {
  background: #fff;
  padding: 48px 0 48px;
}

.cat-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
}



.cat-view-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #4d4d4d;
  position: relative;
  transition: color 0.3s ease, gap 0.3s ease;
}

.cat-view-more::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #000091;
  border-radius: 2px;
  transition: width 0.35s ease;
}

.cat-view-more:hover {
  color: #000091;
  gap: 10px;
}

.cat-view-more:hover::after {
  width: 100%;
}

.cat-view-more-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.cat-view-more:hover .cat-view-more-icon {
  transform: translateX(5px);
}

/* Grid ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ Figma: large card + 2x2 right grid */
.cat-grid {
  display: flex;
  gap: 21px;
  align-items: flex-start;
}

.cat-slider-wrap {
  display: none;
}

.cat-card--large {
  flex-shrink: 0;
  width: 505px;
  height: 605px;
  /* 292+21+292 */
}

.cat-grid-right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 292px 292px;
  gap: 21px;
}

/* Base card */
a.cat-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.cat-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 30px -6px rgba(0, 0, 0, 0.18), 0 8px 12px -4px rgba(0, 0, 0, 0.12);
}

.cat-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.cat-card:hover .cat-card-img {
  transform: scale(1.05);
}

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.20) 45%, rgba(0, 0, 0, 0.00) 100%);
  pointer-events: none;
}

/* Card info ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â bottom text */
.cat-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cat-card-info--large {
  padding: 32px;
}

/* New stat block: "+000 Products" */
.cat-stat {
  display: flex;
  align-items: baseline;
  gap: 0;
  line-height: 1;
}

.cat-stat-num {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  color: #fff;
}

.cat-stat-label {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  color: #f4c317;
  /* Figma: Banana Yellow */
  margin-left: 10px;
  align-self: flex-end;
  padding-bottom: 4px;
}

/* Category name */
.cat-card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #fff;
}

.cat-card-title--new {
  font-size: 32px;
  /* Figma: 32px SemiBold */
  font-weight: 600;
  line-height: 40px;
  color: #fff;
}

/* =============================================
   PROMO BANNER SECTION
   ============================================= */
.promo-section {
  position: relative;
  background: #fff;
  padding: 0;
  min-height: 380px;
  overflow: visible;
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 380px;
  padding: 40px 0;
  position: relative;
  overflow: visible;
}

/* Falling produce ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â rain effect, full artboard width (1440px) */
.promo-rain {
  position: absolute;
  top: -50px;
  left: 50%;
  bottom: 0;
  width: 100%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.promo-rain-item {
  position: absolute;
  top: 0;
  left: var(--rain-left, 50%);
  width: var(--rain-width, 80px);
  height: auto;
  display: block;
  object-fit: contain;
  transform-origin: center center;
  will-change: transform, opacity, top;
  animation: promo-rain-fall var(--rain-duration, 3.5s) var(--rain-delay, 0s) linear infinite;
}

@keyframes promo-rain-fall {
  0% {
    top: 0;
    transform: translate3d(calc(-50% + 0px), 0, 0) rotate(var(--rain-rotate, 0deg)) scaleY(var(--rain-scale-y, 1));
    opacity: 0;
  }

  6% {
    opacity: 1;
  }

  70% {
    opacity: 0.85;
  }

  82% {
    opacity: 0.15;
  }

  100% {
    top: 100%;
    transform: translate3d(calc(-50% + var(--rain-drift, 8px)), 0, 0) rotate(var(--rain-rotate, 0deg)) scaleY(var(--rain-scale-y, 1));
    opacity: 0;
  }
}

/* Text side */
.promo-text {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 26px;
  /* Figma: gap-[26px] */
  max-width: 506px;
  /* Figma: w-[506px] */
  flex-shrink: 0;
}

.promo-text>div,
.promo-subtitle+*,
.promo-text>h2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promo-subtitle {
  font-size: 32px;
  /* Figma: 32px SemiBold */
  font-weight: 600;
  line-height: 40px;
  color: #ed2839;
  /* Figma: Scarlet Red */
}

.promo-title {
  font-size: 64px;
  /* Figma: 64px Bold */
  font-weight: 700;
  line-height: 72px;
  color: #000091;
  /* Figma: Navy Blue */
  margin-top: -6px;
  /* compensate gap on parent */
}

/* Button */
.promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  /* Figma: gap-[8px] */
  padding: 10px 16px;
  /* Figma: py-[10px] px-[16px] */
  background: #f15361;
  color: #fff;
  font-family: var(--font-main);
  font-size: 14px;
  /* Figma: text-[14px] Medium */
  font-weight: 500;
  line-height: 20px;
  border-radius: 10px;
  /* Figma: rounded-[10px] */
  white-space: nowrap;
  align-self: flex-start;
  overflow: hidden;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.promo-btn:hover {
  background: var(--color-active);
  box-shadow: 0 6px 20px rgba(241, 83, 97, 0.4);
  transform: translateY(-2px);
}

/* Arrow wrapper ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â clips the animation */
.promo-btn-arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  overflow: hidden;
  flex-shrink: 0;
}

.promo-btn-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

/* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â®ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â  ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ hover */
.promo-btn:hover .promo-btn-icon {
  animation: arrow-loop 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Image side */
.promo-image-wrap {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.promo-basket {
  width: 294px;
  /* Figma: 293.759px */
  height: 273px;
  /* Figma: 272.641px */
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
}

.promo-shadow {
  width: 311px;
  /* Figma: 311.038px */
  height: 22px;
  /* Figma: 21.702px */
  display: block;
  margin-top: -8px;
}

/* =============================================
   HOT DEALS SECTION
   ============================================= */
.hd-section {
  background: #f2f2f2;
  padding: 48px 0;
}

.hd-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}



.hd-view-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #4d4d4d;
  position: relative;
  transition: color 0.3s ease, gap 0.3s ease;
}

.hd-view-more::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #000091;
  border-radius: 2px;
  transition: width 0.35s ease;
}

.hd-view-more:hover {
  color: #000091;
  gap: 10px;
}

.hd-view-more:hover::after {
  width: 100%;
}

.hd-view-more-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.hd-view-more:hover .hd-view-more-icon {
  transform: translateX(5px);
}

/* Top Grid */
.hd-top-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 295px 295px;
  gap: 14px;
}

/* Featured Card */
a.hd-featured-card {
  color: inherit;
  text-decoration: none;
}

.hd-featured-card {
  grid-column: span 2;
  grid-row: span 2;
  background: #fff;
  border: 0.924px solid transparent;
  border-radius: 12px;
  box-shadow: 0 0 5.5px #cccce9;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 22px 22px;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: visible;
}

.hd-featured-card:hover {
  border-color: #000091;
  box-shadow: 0 8px 24px rgba(0, 0, 145, 0.15);
  transform: translateY(-3px);
}

.hd-featured-img-wrap {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hd-featured-img {
  width: 80%;
  max-height: 380px;
  object-fit: contain;
}

.hd-badge {
  position: absolute;
  top: -18px;
  left: 0;
  background: #f15361;
  color: #fff;
  font-size: 12.94px;
  font-weight: 400;
  line-height: 1.5;
  padding: 2.8px 7.4px;
  border-radius: 4px;
  white-space: nowrap;
}

.hd-featured-info {
  text-align: center;
  padding-top: 6px;
}

.hd-featured-name {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: #000091;
  margin-bottom: 6px;
}

.hd-featured-meta {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  color: #666;
  text-align: center;
}

/* Small Cards */
a.hd-card {
  color: inherit;
  text-decoration: none;
}

.hd-card {
  background: #fff;
  border: 0.9px solid transparent;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.hd-card:hover {
  border-color: #000091;
  box-shadow: 0 6px 20px rgba(0, 0, 145, 0.12);
  transform: translateY(-3px);
}

.hd-card-img-wrap {
  flex: 1;
  padding: 4.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hd-card-img {
  width: 100%;
  height: 207px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.hd-card:hover .hd-card-img {
  transform: scale(1.06);
}

.hd-card-info {
  padding: 10.8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5.4px;
}

.hd-card-name {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #000091;
}

.hd-card-meta {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #666;
}

/* Bottom Row */
.hd-bottom-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.hd-bottom-grid .hd-card {
  height: 295px;
}

.hd-slider-wrap {
  display: none;
}

/* =============================================
   IMPORTED PRODUCTS SECTION
   ============================================= */
.imported-section {
  background: #fff;
  padding: 48px 0;
}

.imported-inner {
  display: flex;
  align-items: center;
  gap: 65px;
  /* Figma: gap-[65px] */
}

/* Left text ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma: w-[564px] */
.imported-text {
  display: flex;
  flex-direction: column;
  gap: 21px;
  /* Figma: gap-[21px] */
  flex-shrink: 0;
  width: 564px;
}

.imported-title {
  font-size: 40px;
  /* Figma: 40px SemiBold */
  font-weight: 600;
  line-height: 48px;
  color: #3333a7;
  /* Figma: Navy Blue 80% */
  white-space: nowrap;
}

.imported-desc {
  font-size: 16px;
  /* Figma: 16px Medium */
  font-weight: 500;
  line-height: 24px;
  color: #787878;
  /* Figma: Charcoal 60% */
}

/* Button ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â reuses promo-btn style */
.imported-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: #f15361;
  color: #fff;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  border-radius: 10px;
  white-space: nowrap;
  align-self: flex-start;
  overflow: hidden;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.imported-btn:hover {
  background: var(--color-active);
  box-shadow: 0 6px 20px rgba(241, 83, 97, 0.4);
  transform: translateY(-2px);
}

.imported-btn:hover .promo-btn-icon {
  animation: arrow-loop 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Right image ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma: 610ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â437px rounded-24px */
.imported-img-wrap {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.imported-img {
  width: 100%;
  height: 437px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  transition: transform 0.5s ease;
}

.imported-img-wrap:hover .imported-img {
  transform: scale(1.03);
}

/* =============================================
   IMPORTED PRODUCT SLIDER
   ============================================= */
.product-slider-section {
  background: #f2f2f2;
  padding: 0 0 48px;
}

/* Title */
.product-slider-header {
  display: block;
  text-align: center;
  padding: 48px 10px 10px;
  margin-bottom: 10px;
}

.product-slider-header .partners-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  color: #000091;
  white-space: nowrap;
}

/* Slider row: arrows + swiper */
.product-slider-row {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â£ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â²ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± Swiper ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma 65:25194 */
.prod-swiper-prev,
.prod-swiper-next {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 40px !important;
  height: 40px !important;
  margin: 0 !important;
  border-radius: 500px !important;
  border: 2px solid #9999d3 !important;
  background: transparent !important;
  z-index: 10;
  transition: background var(--transition);
}

.prod-swiper-prev {
  left: -57px !important;
}

.prod-swiper-next {
  right: -57px !important;
}

.prod-swiper-prev:hover,
.prod-swiper-next:hover {
  background: #9999d3 !important;
}

/* SVG arrow ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âµ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂªÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¶ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â  */
.prod-swiper-prev::after,
.prod-swiper-next::after {
  content: '' !important;
  display: block;
  width: 14px;
  height: 14px;
  background-image: url('../images/swiper-arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.prod-swiper-prev::after {
  transform: rotate(180deg);
}

.prod-swiper-prev:hover::after,
.prod-swiper-next:hover::after {
  filter: brightness(0) invert(1);
}

/* Swiper */
.productSwiper {
  flex: 1;
  overflow: hidden;
}

/* Product Card ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Figma: 287px h, p-17px, gap-32px, rounded-12px */
/* ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã¢â‚¬Â¹ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â  hover ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â  HTML: --prod-card-bg-hover (ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€¹Ã…â€œÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂªÃƒÆ’Ã†â€™Ãƒâ€¹Ã…â€œÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ ÃƒÆ’Ã†â€™Ãƒâ€¹Ã…â€œÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™Ãƒâ€¹Ã…â€œÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨ÃƒÆ’Ã†â€™Ãƒâ€¹Ã…â€œÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± ACF) */
.prod-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 17px;
  height: 287px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition:
    background-color 0.35s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.prod-card:hover {
  background-color: var(--prod-card-bg-hover, #f5f5f5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  transform: translateY(-3px);
}

/* Image wrap ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma: 110ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â110px with p-6.027px */
.prod-card-img-wrap {
  padding: 6.027px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-card-img {
  width: 110px;
  /* Figma: size-[110px] */
  height: 110px;
  object-fit: cover;
}

/* Info */
.prod-card-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 198px;
  /* Figma: w-[198px] */
  text-align: center;
}

.prod-card-name {
  font-size: 14px;
  /* Figma: 14px Poppins Medium */
  font-weight: 500;
  line-height: 20px;
  color: #1e1e1e;
  margin: 0;
}

.prod-card-type,
.prod-card-sku {
  font-size: 8px;
  /* Figma: 8px Regular #787878 */
  font-weight: 400;
  color: #787878;
  line-height: 1;
  margin: 0;
}

/* Rating */
.prod-card-rating {
  display: flex;
  align-items: center;
  gap: 7.519px;
  /* Figma: gap-[7.519px] */
}

.prod-stars {
  display: flex;
  align-items: center;
  gap: 1.341px;
  /* Figma: gap-[1.341px] */
}

.prod-star {
  width: 10.727px;
  /* Figma: size-[10.727px] */
  height: 10.727px !important;
  display: block;
}

.prod-rating-val {
  font-size: 8px;
  font-weight: 400;
  color: #787878;
  line-height: 1;
}

/* Swiper container ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¶ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â  padding Bootstrap */
.prod-swiper-container {
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow: hidden;
}

section#imported-product-slider .container,
section#pd-related-products .container {
  position: relative;
}

.prod-slider-nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}

.prod-slider-nav .prod-swiper-prev,
.prod-slider-nav .prod-swiper-next {
  pointer-events: auto;
}

/* =============================================
   FARM FRESH BANNER ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma 65:25195
   ============================================= */
.farm-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* Background image fills the entire section */
.farm-banner-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  max-width: none;
}

/* Content pushed to the right ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma: pl-[856px] pr-[86px] pt-[54px] pb-[64px] */
.farm-banner-content {
  position: relative;
  z-index: 1;
  margin-left: auto;
  width: 497.5px;
  /* Figma: w-[497.505px] */
  padding: 54px 0 64px 0;
  /* Figma: pt-54 pr-86 pb-64 */
  display: flex;
  flex-direction: column;
  gap: 21px;
  /* Figma: gap-[21px] */
}

.farm-banner-title {
  font-size: 48px;
  /* Figma: 48px Bold */
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

.farm-banner-desc {
  font-size: 20.729px;
  /* Figma: text-[20.729px] Medium */
  font-weight: 500;
  line-height: 27.639px;
  color: #fff;
}

/* Button ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma: px-20 py-12 rounded-12 gap-8 #f15361 16px SemiBold */
.farm-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #f15361;
  color: #fff;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  border-radius: 12px;
  align-self: flex-start;
  overflow: hidden;
  white-space: nowrap;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.farm-banner-btn:hover {
  background: var(--color-active);
  box-shadow: 0 6px 20px rgba(241, 83, 97, 0.4);
  transform: translateY(-2px);
}

.farm-btn-arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  overflow: hidden;
  flex-shrink: 0;
}

.farm-btn-icon {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.farm-banner-btn:hover .farm-btn-icon {
  animation: arrow-loop 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* =============================================
   VIDEO SECTION ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma 65:25202
   ============================================= */
.video-section {
  background: #f2f2f2;
  padding: 48px 0 0px 0px;
}

/* Card ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma: rounded-[24px], aspect ratio from design */
.video-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 698px;
  cursor: pointer;
}

/* Background image */
.video-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
}

/* Dark overlay ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma: bg-[#1a1a1a] opacity-30 */
.video-card-overlay {
  position: absolute;
  inset: 0;
  background: #1a1a1a;
  opacity: 0.30;
  border-radius: 24px;
  transition: opacity 0.3s ease;
}

.video-card:hover .video-card-overlay {
  opacity: 0.45;
}

/* Play button ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma: size-[104.358px] */
.video-play-btn {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-play-btn:hover {
  transform: scale(1.12);
}

.video-play-icon {
  width: 104.358px;
  /* Figma: size-[104.358px] */
  height: 104.358px;
  display: block;
}

/* =============================================
   3 BANNERS SECTION ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma 65:25210
   ============================================= */
.banners-section {
  background: #f2f2f2;
  padding: 48px 0px;
  /* Figma: py-[48px] */
}

.banners-grid {
  display: flex;
  gap: 21px;
  /* Figma: gap-[21px] */
  align-items: center;
  height: 402px;
  /* Figma: h-[402px] */
}

.banner-item {
  display: block;
  flex: 1;
  height: 100%;
  border-radius: 12px;
  /* Figma: rounded-[12px] */
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.banner-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.banner-item:hover .banner-img {
  transform: scale(1.04);
}

/* =============================================
   IMPORTED PRODUCTS SLIDER ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma 65:25243
   ============================================= */
.imp-slider-section {
  background: #fff;
  padding: 48px 0;
}

/* Same layout as .imported-inner */
.imp-slider-inner {
  display: flex;
  align-items: center;
  gap: 71px;
  /* Figma: gap-[71px] */
}

/* Slider wrap ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma: 610ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â437px rounded-24px */
.imp-slider-wrap {
  flex: 1;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 437px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.importedSwiper {
  width: 100%;
  height: 100%;
  border-radius: 24px;
}

.imp-slide-img {
  width: 100%;
  height: 437px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

/* Gradient overlay at bottom ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma */
.importedSwiper::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 292px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
  border-radius: 24px;
  z-index: 2;
  pointer-events: none;
}

/* Arrows ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â bottom center inside the slider ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma: left-[257px] left-[314px] top-[374px] */
.imp-slider-prev,
.imp-slider-next {
  position: absolute !important;
  top: auto !important;
  bottom: 40px !important;
  transform: none !important;
  width: 40px !important;
  height: 40px !important;
  margin: 0 !important;
  border-radius: 500px !important;
  border: 2px solid #9999d3 !important;
  background: transparent !important;
  z-index: 10;
  transition: background var(--transition);
}

.imp-slider-prev {
  left: 50% !important;
  margin-left: -48px !important;
  /* center-left */
}

.imp-slider-next {
  left: 50% !important;
  margin-left: 8px !important;
  /* center-right */
}

.imp-slider-prev:hover,
.imp-slider-next:hover {
  background: #9999d3 !important;
}

.imp-slider-prev::after,
.imp-slider-next::after {
  content: '' !important;
  display: block;
  width: 14px;
  height: 14px;
  background-image: url('../images/swiper-arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.imp-slider-prev::after {
  transform: rotate(180deg);
}

.imp-slider-prev:hover::after,
.imp-slider-next:hover::after {
  filter: brightness(0) invert(1);
}

/* =============================================
   CLIENT TESTIMONIALS ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma 65:25255
   ============================================= */
.testimonials-section {
  background: #f2f2f2;
  padding-bottom: 48px;
}

.testimonials-header {
  padding: 48px 10px 10px;
  margin-bottom: 10px;
}

.testimonials-header.partners-title-wrap {
  margin-bottom: 10px;
}

/* Slider row ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma: gap-[20px], arrows inline */
.testimonials-slider-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 20px;
  padding: 0 10px 0;
  width: 100%;
}

.testimonials-slider-nav {
  display: contents;
}

.testimonials-swiper-wrap {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.testimonials-swiper-prev {
  grid-column: 1;
  grid-row: 1;
}

.testimonials-swiper-next {
  grid-column: 3;
  grid-row: 1;
}

.testimonialsSwiper {
  flex: 1;
  min-width: 0;
  width: 100%;
  overflow: hidden;
}

.testimonialsSwiper .swiper-slide {
  height: auto;
}

/* Card ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma: p-[22.545px] gap-[15.03px] rounded-[24px] */
.testimonial-card {
  background: #fff;
  border-radius: 24px;
  padding: 22.545px;
  display: flex;
  flex-direction: column;
  gap: 15.03px;
  box-shadow: 0 9.394px 9.394px rgba(0, 0, 0, 0.01);
  height: 100%;
}

/* Quote icon ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma: 30.061ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â24.424px */
.testimonial-quote {
  width: 30.061px;
  height: 24.424px !important;
  display: block;
  flex-shrink: 0;
}

/* Text ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma: 13.152px Regular #4d4d4d line-height 1.5 */
.testimonial-text {
  font-size: 13.152px;
  font-weight: 400;
  line-height: 1.5;
  color: #4d4d4d;
  margin: 0;
  flex: 1;
}

/* Client row ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma: pt-[7.515px] justify-between */
.testimonial-client {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 7.515px;
  gap: 12px;
}

/* Reviewer ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma: gap-[11.273px] */
.testimonial-reviewer {
  display: flex;
  align-items: center;
  gap: 11.273px;
  min-width: 0;
}

/* Avatar ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma: size-[52.606px] */
.testimonial-avatar {
  width: 52.606px;
  height: 52.606px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* Name ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma: 15.03px Medium #1a1a1a */
.testimonial-name {
  font-size: 15.03px;
  font-weight: 500;
  line-height: 1.5;
  color: #1a1a1a;
  margin: 0;
  white-space: nowrap;
}

/* Role ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma: 13.152px Regular #999 */
.testimonial-role {
  font-size: 13.152px;
  font-weight: 400;
  line-height: 1.5;
  color: #999;
  margin: 0;
  white-space: nowrap;
}

/* Stars ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma: size-[18.788px] gap-[0.939px] */
.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 0.939px;
  flex-shrink: 0;
}

.testimonial-star {
  width: 18.788px;
  height: 18.788px !important;
  display: block;
}

/* Navigation ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Figma 65:24377 / 65:24381 */
.testimonials-swiper-prev,
.testimonials-swiper-next {
  position: relative !important;
  flex-shrink: 0;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  width: 40px !important;
  height: 40px !important;
  margin: 0 !important;
  border-radius: 500px !important;
  border: 2px solid #9999d3 !important;
  background: transparent !important;
  z-index: 10;
  transition: background var(--transition);
}

.testimonials-swiper-prev:hover,
.testimonials-swiper-next:hover {
  background: #9999d3 !important;
}

.testimonials-swiper-prev::after,
.testimonials-swiper-next::after {
  content: '' !important;
  display: block;
  width: 14px;
  height: 14px;
  background-image: url('../images/swiper-arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.testimonials-swiper-prev::after {
  transform: rotate(180deg);
}

.testimonials-swiper-prev:hover::after,
.testimonials-swiper-next:hover::after {
  filter: brightness(0) invert(1);
}

/* =============================================
   FOLLOW US ON INSTAGRAM ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Figma 154:4473
   ============================================= */
.instagram-section {
  background: #f2f2f2;
  padding-bottom: 48px;
}

.instagram-header {
  padding: 48px 10px 10px;
  margin-bottom: 10px;
}

.instagram-header.partners-title-wrap {
  margin-bottom: 10px;
}

/* Grid ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Figma: 3 cols ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â 400px, gap 20px, h 451px */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.insta-slider-wrap {
  display: none;
}

.insta-item {
  position: relative;
  display: block;
  height: 451px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.35s ease;
}

.insta-item:hover {
  transform: translateY(-4px);
}

.insta-item-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.insta-item:hover .insta-item-img {
  transform: scale(1.04);
}

/* Gradient overlay ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Figma: h-[395px] gradient to top */
.insta-item-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 395px;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.2) 50%,
      rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Text ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Figma: left 41px, w 319px, gap 11px, bottom area */
.insta-item-content {
  position: absolute;
  left: 41px;
  right: 41px;
  bottom: 62px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  text-align: center;
  pointer-events: none;
}

/* Title ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Figma: 34.706px Bold, line-height 38.563px */
.insta-item-title {
  font-size: 34.706px;
  font-weight: 700;
  line-height: 38.563px;
  color: #fff;
  margin: 0;
  width: 100%;
}

/* Description ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Figma: 12px Regular, line-height 14px */
.insta-item-desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  color: #fff;
  margin: 0;
  width: 100%;
  max-width: 319px;
}

/* Hidden popup templates */
.insta-popups {
  display: none;
}

/* Instagram post ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Fancybox popup */
.insta-popup {
  display: none;
  width: 470px;
  max-width: 95vw;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  font-family: var(--font-main);
}

.insta-fancybox .fancybox__content {
  padding: 0;
  background: transparent;
}

.insta-fancybox .fancybox__slide {
  padding: 24px;
}

.insta-popup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #efefef;
}

.insta-popup-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  background: #f2f2f2;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insta-popup-avatar img {
  width: 22px;
  height: auto;
  display: block;
}

.insta-popup-user {
  font-size: 14px;
  font-weight: 600;
  color: #262626;
}

.insta-popup-img {
  width: 100%;
  max-height: 470px;
  object-fit: cover;
  display: block;
}

.insta-popup-body {
  padding: 12px 16px 16px;
}

.insta-popup-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.insta-popup-actions i {
  font-size: 22px;
  color: #262626;
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
}

.insta-popup-actions i:hover {
  color: #ed2839;
  transform: scale(1.1);
}

.insta-popup-likes {
  font-size: 14px;
  font-weight: 600;
  color: #262626;
  margin: 0 0 8px;
}

.insta-popup-caption {
  font-size: 14px;
  line-height: 1.45;
  color: #262626;
  margin: 0;
}

.insta-popup-caption strong {
  font-weight: 600;
  margin-right: 6px;
}

/* =============================================
   FOOTER ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Figma 154:4674
   ============================================= */

/* Newsletter bar ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â 154:3915 */
.newsletter-bar {
  background: #fff;
  padding: 48px 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 107px;
}

/* Text ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â w 448px, gap 4px */
.newsletter-text {
  flex-shrink: 0;
  width: 448px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.newsletter-kicker {
  display: none;
  margin: 0;
}

.newsletter-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  color: #3333a7;
  margin: 0;
  white-space: nowrap;
}

.newsletter-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #999;
  margin: 0;
  width: 448px;
}

/* Form ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â 432ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â60px */
.newsletter-form {
  position: relative;
  flex-shrink: 0;
  width: 432px;
  height: 60px;
}

.newsletter-input {
  width: 100%;
  height: 100%;
  border: 1px solid #e6e6e6;
  border-radius: 46px;
  background: #fff;
  padding: 14px 195px 14px 24px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #1a1a1a;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-input::placeholder {
  color: #808080;
}

.newsletter-input:focus {
  border-color: #3333a7;
}

/* Button ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â 181ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â60, rounded 43px */
.newsletter-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 181px;
  height: 60px;
  border: none;
  border-radius: 43px;
  background: #3333a7;
  color: #fff;
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
}

.newsletter-btn:hover {
  background: #000091;
  box-shadow: 0 6px 20px rgba(51, 51, 167, 0.35);
}

/* Social ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â gap 18.75px, size 36px */
.newsletter-social {
  display: flex;
  align-items: center;
  gap: 18.75px;
  flex-shrink: 0;
}

.newsletter-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  transition: opacity var(--transition), transform var(--transition);
}

.newsletter-social-link i {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
  line-height: 1;
  color: #787878;
  display: block;
  -webkit-font-smoothing: antialiased;
}

.newsletter-social-link:hover {
  opacity: 0.75;
  transform: translateY(-2px);
}

/* Main footer ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â 154:3929 */
.footer-main {
  background: #000091;
  padding: 48px 0 0;
}

.footer-main .container {
  padding-left: 100px;
  padding-right: 100px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-links-row {
  display: contents;
}

.footer-contact-mobile {
  display: none;
}

.footer-contact-desktop {
  display: block;
}

.footer-bottom-row {
  display: contents;
}

.footer-social-mobile {
  display: none;
}

.footer-col-brand {
  width: 469px;
  flex-shrink: 0;
}

/* Logo */
.footer-brand-logo {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 218px;
  height: auto;
  flex-shrink: 0;
  display: block;
}

.footer-logo-texts {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 14px;
}

.footer-logo-en {
  width: 167.48px;
  height: 21.634px !important;
  display: block;
}

.footer-logo-ar {
  width: 167.428px;
  height: 22.881px !important;
  display: block;
}

.footer-contact-intro {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #fff;
  margin: 0 0 16px;
  width: 336px;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  transition: opacity var(--transition);
}

.footer-contact-item img {
  flex-shrink: 0;
  display: block;
}

.footer-contact-item:first-child img {
  width: 19.495px;
  height: 22.235px;
}

.footer-contact-item:last-child img {
  width: 18.791px;
  height: 15.659px;
}

.footer-contact-item:hover {
  opacity: 0.8;
}

.footer-contact-or {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}

/* Link columns */
.footer-col-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: #fff;
  margin: 0 0 20px;
  white-space: nowrap;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity var(--transition);
}

.footer-links a:hover {
  opacity: 0.75;
}

/* Copyright bar ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Figma 154:4007 */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 80px;
  padding: 24px 0;
  border-top: 2px solid #fff;
  box-sizing: border-box;
}

.footer-copyright {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  margin: 0;
  white-space: nowrap;
}

.footer-payments {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Payment badge ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Figma: 45ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â31.765px, bg #1a1a1a, border 1.324px */
.footer-pay-item {
  position: relative;
  width: 45px;
  height: 31.765px;
  background: #1a1a1a;
  border: 1.324px solid #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.footer-pay-item img {
  display: block;
  width: auto;
  height: auto;
  max-width: 85%;
  max-height: 72%;
  object-fit: contain;
}

.footer-pay-item[aria-label="Apple Pay"] img {
  max-width: 72%;
  max-height: 44%;
}

.footer-pay-item[aria-label="Visa"] img {
  max-width: 70%;
  max-height: 33%;
}

.footer-pay-item[aria-label="Discover"] img {
  max-width: 88%;
  max-height: 58%;
}

.footer-pay-item[aria-label="Mastercard"] img {
  max-width: 66%;
  max-height: 56%;
}

/* Secure Payment ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Figma: 65ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â32px, radius 5.294px */
.footer-pay-item--secure {
  width: 65px;
  height: 32px;
  border-radius: 5.294px;
  display: grid;
  grid-template-columns: 11px 1fr;
  grid-template-rows: 12px 14px;
  align-content: start;
  padding: 4px 5px;
  gap: 0 2px;
}

.footer-pay-item--secure img,
.footer-pay-lock {
  grid-column: 1;
  grid-row: 1;
  width: 11px;
  height: 11px;
  max-width: 11px;
  max-height: 11px;
  align-self: start;
  margin-top: 0;
}

.footer-pay-secure-top {
  grid-column: 2;
  grid-row: 1;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  align-self: start;
  white-space: nowrap;
}

.footer-pay-secure-bottom {
  grid-column: 1 / -1;
  grid-row: 2;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-align: center;
  width: 100%;
  margin-top: 1px;
}

section#partners .partners-title-wrap {
  margin-bottom: 0;
}

/* =============================================
   AUTH PAGES ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Sign In / Sign Up (Figma 63:4197)
   ============================================= */
.auth-layout {
  background: #efefef;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.auth-layout .site-header {
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}

.auth-bg-wrap {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.auth-bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.auth-main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 96px;
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  align-items: center;
  gap: 64px;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.auth-marketing {
  width: 100%;
  max-width: 520px;
}

.auth-marketing-panel {
  display: none;
  flex-direction: column;
  gap: 24px;
}

.auth-marketing-panel.active {
  display: flex;
}

.auth-marketing-eyebrow {
  margin: 0;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #3333a7;
  text-transform: capitalize;
}

.auth-marketing-headline {
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: #191c1f;
}

.auth-marketing-brand {
  color: var(--color-nav);
}

.auth-marketing-desc {
  margin: 0;
  max-width: 480px;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #787878;
}

.auth-marketing-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.auth-marketing-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.auth-marketing-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #3333a7;
}

.auth-marketing-feature-icon img,
.auth-marketing-feature-icon i {
  width: 24px;
  height: 24px;
  object-fit: contain;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #f0f0fa;
}

.auth-marketing-feature-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 2px;
}

.auth-marketing-feature-title {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #191c1f;
}

.auth-marketing-feature-desc {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #787878;
}

.auth-marketing-trust {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 8px;
  padding: 16px 18px;
  border-radius: 12px;
  background: #3333a7;
}

.auth-marketing-trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.auth-marketing-trust-icon img,
.auth-marketing-trust-icon i {
  width: 28px;
  height: auto;
  object-fit: contain;
  font-size: 24px;
  line-height: 1;
  color: #f0f0fa;
}

.auth-marketing-trust-text {
  margin: 0;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #f0f0fa;
}

.auth-marketing-trust-text strong {
  display: block;
  margin-bottom: 2px;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  color: #f0f0fa;
}

.auth-card-wrap {
  width: 100%;
  max-width: 440px;
  flex-shrink: 0;
}

.auth-card {
  width: 424px;
  min-height: 347px;
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e4e7e9;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.auth-tabs {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.auth-tab {
  flex: 1;
  width: 212px;
  padding: 16px 0;
  text-align: center;
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: #787878;
  background: #fff;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}

.auth-tab:hover {
  color: #191c1f;
}

.auth-tab.active {
  color: #191c1f;
}

.auth-tabs[data-active="signin"] .auth-tab[data-auth-tab="signin"].active {
  box-shadow:
    inset 1px 0 0 #e4e7e9,
    inset 0 1px 0 #e4e7e9,
    inset 0 -3px 0 #3333a7;
}

.auth-tabs[data-active="signup"] .auth-tab[data-auth-tab="signup"].active {
  box-shadow:
    inset -1px 0 0 #e4e7e9,
    inset 0 1px 0 #e4e7e9,
    inset 0 -3px 0 #3333a7;
}

/* Tab panels */
.auth-panel {
  display: none;
}

.auth-panel.active {
  display: block;
}

.auth-card:has(.auth-panel[data-auth-panel="signup"].active) {
  min-height: 588px;
}

.auth-form--signup {
  gap: 32px;
}

.auth-input--plain {
  padding-right: 16px;
}

/* File upload ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â VAT / CR */
.auth-file-wrap {
  position: relative;
  width: 100%;
  height: 44px;
}

.auth-file-input {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}

.auth-file-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 44px;
  padding: 0 18px 0 15px;
  border: 1px solid #e4e7e9;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color var(--transition);
}

.auth-file-label:hover,
.auth-file-input:focus-visible+.auth-file-label {
  border-color: #00b207;
}

.auth-file-text {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #a5a5a5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 30px);
}

.auth-file-text.has-file {
  color: #1a1a1a;
}

.auth-file-icon {
  width: 14px;
  height: 16px;
  flex-shrink: 0;
}

/* Terms checkbox */
.auth-terms {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  width: 100%;
  max-width: 360px;
}

.auth-terms-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.auth-checkbox {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #e4e7e9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.auth-terms-input:checked+.auth-checkbox {
  background: #000091;
}

.auth-checkbox-icon {
  width: 14px;
  height: 14px;
  display: none;
}

.auth-terms-input:checked+.auth-checkbox .auth-checkbox-icon {
  display: block;
}

.auth-terms-text {
  font-family: 'Public Sans', var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #475156;
}

.auth-terms-text a {
  font-weight: 500;
  color: #000091;
  transition: opacity var(--transition);
}

.auth-terms-text a:hover {
  opacity: 0.8;
}

.auth-tabs-line {
  display: block;
  width: 100%;
  height: 1px;
  border: none;
  margin: 0;
}

.auth-card-body {
  padding: 24px 32px 32px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 360px;
  max-width: 100%;
  margin: 0 auto;
}

.auth-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.auth-label {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #1e1e1e;
}

.auth-field-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  line-height: 20px;
}

.auth-forgot {
  font-family: 'Public Sans', var(--font-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #000091;
  white-space: nowrap;
  transition: opacity var(--transition);
}

.auth-forgot:hover {
  opacity: 0.8;
}

.auth-resend {
  font-family: 'Public Sans', var(--font-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #000091;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity var(--transition);
}

.auth-resend:hover {
  opacity: 0.8;
}

.auth-field-head .auth-label {
  color: #191c1f;
}

.auth-input-wrap {
  position: relative;
  width: 100%;
  height: 44px;
}

.auth-input {
  width: 100%;
  height: 44px;
  padding: 0 44px 0 16px;
  border: 1px solid #e4e7e9;
  border-radius: 12px;
  background: #fff;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #1a1a1a;
  outline: none;
  transition: border-color var(--transition);
}

.auth-input::placeholder {
  color: #787878;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.auth-input:focus {
  border-color: #00b207;
}

.auth-eye-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: #787878;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.auth-eye-icon {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}

.auth-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background: #3333a7;
  color: #fff;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
}

.auth-submit:hover {
  background: #000091;
  box-shadow: 0 6px 20px rgba(51, 51, 167, 0.35);
}

.auth-submit img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.auth-layout .site-footer {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .auth-main {
    padding: 96px 20px 64px;
  }

  .auth-shell {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 440px;
  }

  .auth-marketing {
    max-width: 100%;
    order: -1;
  }

  .auth-marketing-headline {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .auth-main {
    padding: 88px 16px 48px;
  }

  .auth-shell {
    gap: 32px;
  }

  .auth-marketing-panel {
    gap: 20px;
  }

  .auth-marketing-headline {
    font-size: 30px;
  }

  .auth-marketing-desc {
    font-size: 15px;
    line-height: 22px;
  }

  .auth-marketing-features {
    gap: 16px;
  }
}

/* Forget Password card ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Figma 141:10510 */
.auth-card--forgot {
  width: 100%;
  max-width: 424px;
  min-height: auto;
  padding: 32px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.auth-forgot-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 360px;
  max-width: 100%;
  margin: 0 auto;
}

.auth-forgot-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  width: 100%;
}

.auth-forgot-title {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: #1e1e1e;
  margin: 0;
  width: 100%;
  max-width: 360px;
}

.auth-forgot-desc {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #787878;
  margin: 0;
  width: 100%;
  max-width: 360px;
}

.auth-forgot-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.auth-forgot-link-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}

.auth-forgot-muted {
  font-family: 'Public Sans', var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #5f6c72;
}

.auth-forgot-link {
  font-family: 'Public Sans', var(--font-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #000091;
  transition: opacity var(--transition);
}

.auth-forgot-link:hover {
  opacity: 0.8;
}

.auth-forgot-divider {
  display: block;
  width: 100%;
  max-width: 358px;
  height: 1px;
  margin: 0 auto;
}

.auth-forgot-help {
  font-family: 'Public Sans', var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #475156;
  margin: 0;
  width: 100%;
  max-width: 360px;
}

.auth-forgot-help-link {
  font-family: 'Public Sans', var(--font-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #000091;
  transition: opacity var(--transition);
}

.auth-forgot-help-link:hover {
  opacity: 0.8;
}

/* =============================================
   CATEGORY PAGE ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Figma 154:8022
   ============================================= */
body.category-page {
  background: #efefef;
}

.inner-page .cat-page-hero-bg {
  overflow: hidden;
}

.inner-page .cat-page-hero-overlay {
  background: transparent;
}

.inner-page .cat-page-hero-img {
  object-position: center 40%;
}

/* Hero ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â 320px, gradient overlay */
.cat-page-hero {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.cat-page-hero-bg {
  position: absolute;
  inset: 0;
}

.cat-page-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      #000 100%);
  pointer-events: none;
}

.cat-page-hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px;
  text-align: center;
}

.cat-page-hero-title {
  font-family: var(--font-main);
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
  color: #fff;
  margin: 0;
  white-space: nowrap;
}

/* Breadcrumb ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Inter Medium 14px / 20px */
.cat-page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.cat-page-breadcrumb-link {
  font-family: 'Inter', var(--font-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #e0e0e0;
  padding: 10px;
  transition: color var(--transition);
}

.cat-page-breadcrumb-link:hover {
  color: #fff;
}

.cat-page-breadcrumb-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 24px; */
  /* height: 44px; */
  flex-shrink: 0;
}

.cat-page-breadcrumb-sep img {
  width: 8px;
  height: 4px;
  transform: rotate(-90deg);
  filter: brightness(0) invert(0.88);
}

.cat-page-breadcrumb-current {
  font-family: 'Inter', var(--font-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #fff;
  padding: 10px;
}

/* Grid ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â py 48px, gap 20px, 3ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â400px cards */
.cat-page-section {
  padding: 48px 100px;
}

.cat-page-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
}

/* Card â€” Figma 151:6094 â€” 400Ã—497, white frame + colored title bar */
.cat-page-card {
  flex: 0 0 400px;
  width: 400px;
  height: 496.55px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  border-radius: 20.76px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 3.98px 7.97px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.cat-page-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.cat-page-card-img {
  flex-shrink: 0;
  width: calc(100% - 44px);
  height: 357px;
  margin: 25px 22px 0;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  background: #efefef;
}

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

.cat-page-card-title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 95px;
  min-height: 95px;
  margin: 20px 0 0;
  padding: 0 16px;
  border-radius: 0 0 20.76px 20.76px;
  box-shadow: 0 3.98px 7.97px rgba(0, 0, 0, 0.05);
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
}

@media (max-width: 1399px) {
  .cat-page-section {
    padding: 48px 40px;
  }

  .cat-page-grid {
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .cat-page-hero-title {
    font-size: 48px;
    line-height: 56px;
  }

  .cat-page-card {
    flex: 0 1 calc(50% - 10px);
    width: calc(50% - 10px);
    max-width: 400px;
    height: auto;
    min-height: 496.55px;
  }

  .cat-page-card-img {
    width: calc(100% - 44px);
    height: auto;
    aspect-ratio: 1 / 1;
    max-height: 357px;
  }
}

@media (max-width: 767px) {
  .cat-page-section {
    padding: 32px 20px;
  }

  .cat-page-hero {
    height: 260px;
  }

  .cat-page-hero-title {
    font-size: 36px;
    line-height: 44px;
    white-space: normal;
  }

  .cat-page-card {
    flex: 0 1 100%;
    width: 100%;
    max-width: 400px;
    height: auto;
    min-height: 0;
  }

  .cat-page-card-img {
    width: calc(100% - 44px);
    height: auto;
    aspect-ratio: 1 / 1;
    max-height: 357px;
    margin-top: 20px;
  }

  .cat-page-card-title {
    height: 80px;
    min-height: 80px;
    margin-top: 16px;
    font-size: 20px;
    line-height: 28px;
  }
}

/* =============================================
   PRODUCTS PAGE ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Figma 161:9002
   ============================================= */
body.products-page {
  background: #e8e8e8;
}

.cat-page-breadcrumb--multi {
  gap: 0;
}

.products-section {
  background: #e8e8e8;
}

.products-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 100px 48px;
}

/* Toolbar ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Figma 161:9327 */
.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.products-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 32px;
  background: #000091;
  border: none;
  border-radius: 43px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
}

.products-filter-btn:hover {
  background: #3333a7;
  box-shadow: 0 6px 20px rgba(0, 0, 145, 0.25);
}

.products-filter-btn img {
  display: block;
  flex-shrink: 0;
}

.products-results {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #666;
}

.products-results strong {
  font-weight: 600;
  color: #1a1a1a;
}

/* Body ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â sidebar 312px + gap 20px */
.products-body {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.products-sidebar {
  flex: 0 0 312px;
  width: 312px;
}

/* Rating filter ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Figma 161:9345 */
.products-filter-group {
  width: 312px;
  border-top: 1px solid #e6e6e6;
  box-shadow: 0 1px 0 #e6e6e6;
}

.products-filter-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 70px;
  margin-bottom: -7px;
  padding: 20px 0;
  border: none;
  background: none;
  cursor: pointer;
  box-sizing: border-box;
}

.products-filter-heading-text {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #1a1a1a;
}

.products-filter-chevron {
  display: block;
  width: 12px;
  height: 6px;
  flex-shrink: 0;
  transform: scaleY(-1);
  transition: transform var(--transition);
}

.products-filter-heading[aria-expanded='false'] .products-filter-chevron {
  transform: scaleY(1);
}

.products-filter-heading[aria-expanded='false']+.products-rating-list {
  display: none;
}

.products-rating-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.products-rating-item {
  margin-bottom: -7px;
  padding: 10px 0;
}

.products-rating-item--last {
  margin-bottom: 0;
  padding: 10px 0 24px;
}

.products-rating-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.products-rating-label input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.products-checkbox {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}

.products-checkbox-check {
  display: none;
  width: 16px;
  height: 16px !important;
  object-fit: contain;
}

.products-rating-label input:checked+.products-checkbox {
  background: #000091;
  border-color: #000091;
}

.products-rating-label input:checked+.products-checkbox .products-checkbox-check {
  display: block;
}

.products-rating-row {
  display: flex;
  align-items: center;
  min-height: 21px;
}

.products-rating-stars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.products-rating-stars img {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

.products-rating-text {
  margin-left: 18px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #1a1a1a;
  white-space: nowrap;
}

.products-sidebar-divider {
  height: 1px;
  background: #e6e6e6;
  margin-bottom: 27px;
}

/* Promo banner ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Figma 161:9446 */
.products-promo {
  margin-bottom: 30px;
}

.products-promo-inner {
  position: relative;
  width: 312px;
  height: 386px;
  background: #243e04;
  border-radius: 10px;
  overflow: hidden;
}

.products-promo-title {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 54px 39px 0;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}

.products-promo-img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 112%;
  max-width: none;
  height: auto;
  pointer-events: none;
}

/* Sale products ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Figma 161:9451 */
.products-sale {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 312px;
}

.products-sale-title {
  margin: 0;
  min-height: 30px;
  display: flex;
  align-items: center;
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #1a1a1a;
}

.products-sale-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.products-sale-item {
  margin: 0;
  padding: 0;
}

.products-sale-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 312px;
  height: 112px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.products-sale-card:hover,
.products-sale-card.is-active {
  border-color: #000091;
  box-shadow: 0 0 6px #cccce9;
}

.products-sale-img {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding: 5px;
  box-sizing: border-box;
}

.products-sale-img img {
  width: 102px;
  height: 102px;
  object-fit: contain;
  display: block;
}

.products-sale-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  padding: 24px 12px 25px;
  box-sizing: border-box;
}

.products-sale-name {
  margin: 0;
  width: 176px;
  max-width: 100%;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #4d4d4d;
}

.products-sale-stars {
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
}

.products-sale-stars img {
  width: 12px;
  height: 12px;
  display: block;
  flex-shrink: 0;
}

/* Main grid */
.products-main {
  flex: 1;
  min-width: 0;
}

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

/* Reuse .prod-card from slider ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â grid layout */
.products-grid .prod-card {
  width: 100%;
  text-decoration: none;
  color: inherit;
}

/* Pagination ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Figma 161:9166 (centered on full page width) */
.products-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 0;
  box-sizing: border-box;
}

.products-page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.products-page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 130px;
  background: #fff;
  border: none;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #666;
  text-decoration: none;
  transition:
    background var(--transition),
    color var(--transition);
}

a.products-page-num:hover {
  color: #000091;
}

.products-page-num.is-active {
  background: #000091;
  font-weight: 500;
  color: #fff;
}

.products-page-num.is-active:hover {
  color: #fff;
}

.products-page-num--dots {
  cursor: default;
  pointer-events: none;
}

/* Arrow buttons ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Figma 161:9167 / 161:9184 */
.products-page-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #e6e6e6;
  border-radius: 500px;
  background: #fff;
  cursor: pointer;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.products-page-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.products-page-arrow:not(:disabled):hover {
  border-color: #000091;
}

.products-page-arrow img {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
  pointer-events: none;
}

@media (max-width: 1399px) {
  .products-wrap {
    padding: 48px 40px;
  }
}

@media (max-width: 1199px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .products-body {
    flex-direction: column;
  }

  .products-sidebar {
    flex: none;
    width: 100%;
    max-width: 312px;
  }

  .products-promo-inner {
    width: 100%;
  }

  .products-sale,
  .products-sale-card {
    width: 100%;
    max-width: 312px;
  }
}

@media (max-width: 767px) {
  .products-wrap {
    padding: 32px 20px;
  }

  .products-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }

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

}

/* =============================================
   PRODUCT PAGE ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Figma 163:4648
   ============================================= */
body.product-page {
  background: #efefef;
}

/* Product details */
.pd-detail {
  background: #fff;
  margin-top: 0;
  border-radius: 8px;
  overflow: hidden;
}

.pd-detail-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 100px;
  box-sizing: border-box;
}

/* Gallery ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Swiper (Figma 163:4790 / 63:3238) */
.pd-gallery {
  flex: 0 0 auto;
}

.pd-gallery-layout {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.pd-gallery-thumbs {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 80px;
  height: 453px;
}

.pd-gallery-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 20px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  position: static;
  margin: 0;
}

.pd-gallery-nav::after {
  content: none;
}

.pd-gallery-nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}

.pd-gallery-nav--up img {
  display: block;
  transform: rotate(180deg);
}

.pd-gallery-nav--down img {
  display: block;
}

.pd-thumb-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 80px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 8px;
  scrollbar-width: none;
}

.pd-thumb-list::-webkit-scrollbar {
  display: none;
}

.pd-thumb {
  width: 80px;
  height: 90px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 2px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition);
  flex-shrink: 0;
}

.pd-thumb.is-active {
  border-color: #00b207;
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

.pd-main-image {
  width: 543px;
  height: 453px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pd-main-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Product info */
.pd-info {
  flex: 0 0 568px;
  max-width: 568px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pd-info-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pd-info-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pd-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.pd-title {
  margin: 0;
  font-family: var(--font-main);
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  color: #1e1e1e;
}

.pd-stock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(32, 181, 38, 0.2);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #2c742f;
  white-space: nowrap;
}

.pd-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.pd-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pd-stars {
  display: flex;
  align-items: center;
  gap: 1.3px;
}

.pd-stars img {
  width: 10.5px;
  height: 10.5px;
  display: block;
}

.pd-rating-val {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #787878;
}

.pd-meta-dot {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #b3b3b3;
}

.pd-sku {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.pd-sku-label {
  color: #787878;
}

.pd-sku-val {
  color: #666;
}

.pd-price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.pd-price-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.pd-price-current {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pd-price-amount {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: #1e1e1e;
}

.pd-price-old {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pd-price-was {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #a5a5a5;
  text-decoration: line-through;
}

.pd-discount {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(234, 75, 72, 0.1);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #ea4b48;
}

.pd-divider {
  width: 100%;
  max-width: 568px;
  height: 1px;
  background: #e6e6e6;
}

.pd-desc {
  margin: 0;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #808080;
  max-width: 568px;
}

.pd-desc p {
  margin: 0;
}

.pd-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 568px;
  margin: 0;
  padding: 18px 0;
  border: none;
  background: transparent;
  box-shadow:
    inset 0 -1px 0 #e5e5e5,
    inset 0 1px 0 #e5e5e5;
}

body.product-page form.cart.pd-cta {
  margin: 0;
}

body.product-page .woocommerce-notices-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 100px 0;
  box-sizing: border-box;
}

body.product-page .woocommerce-message,
body.product-page .woocommerce-error,
body.product-page .woocommerce-info {
  margin: 0 0 12px;
  border-radius: 8px;
  font-family: var(--font-main);
}

.pd-qty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 122px;
  height: 50px;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #fff;
  flex-shrink: 0;
}

.pd-qty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #cccce9;
  cursor: pointer;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.pd-qty-btn img {
  display: block;
  width: 14px;
  height: 14px;
  pointer-events: none;
}

.pd-qty-btn:hover {
  background: #9999d3;
  box-shadow: 0 2px 8px rgba(51, 51, 167, 0.28);
}

.pd-qty-btn:active {
  background: #3333a7;
  transform: scale(0.96);
  box-shadow: none;
}

.pd-qty-btn:focus-visible {
  outline: 2px solid #3333a7;
  outline-offset: 2px;
}

.pd-qty-val {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 40px;
  width: 40px;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #1a1a1a;
  text-align: center;
  user-select: none;
}

.pd-add-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  width: 100%;
  max-width: 417px;
  min-width: 0;
  height: 50px;
  padding: 0 14px;
  border: none;
  border-radius: 12px;
  background: #f15361;
  text-decoration: none;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: background var(--transition), box-shadow var(--transition);
}

.pd-add-cart:hover {
  background: #ed2839;
  box-shadow: 0 6px 20px rgba(241, 83, 97, 0.35);
}

.pd-details-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pd-detail-line {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 6px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.pd-detail-label {
  font-weight: 500;
  color: #1a1a1a;
}

.pd-detail-value {
  color: #808080;
}

.pd-tag-link {
  color: #1a1a1a;
  text-decoration: underline;
}

.pd-tag-link:hover {
  color: #000091;
}

/* Tabs */
.pd-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: #fff;
  border-radius: 0;
}

.pd-tab {
  padding: 16px;
  border: none;
  background: #fff;
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: #808080;
  cursor: pointer;
  transition: color var(--transition), box-shadow var(--transition);
}

.pd-tab.is-active {
  color: #1a1a1a;
  box-shadow: inset 0 -2px 0 #000091;
}

.pd-tab:hover:not(.is-active) {
  color: #666;
}

/* Tab panels */
.pd-tab-panels {
  background: #fff;
  margin-bottom: 0;
}

.pd-tab-panel {
  display: none;
  align-items: flex-start;
  justify-content: center;
  gap: 96px;
  min-height: 404px;
  padding: 48px 100px;
  box-sizing: border-box;
}

#pd-panel-feedback.pd-tab-panel {
  align-items: stretch;
  flex-direction: column;
  width: 100%;
}

.pd-tab-panel.is-active {
  display: flex;
}

.pd-features {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 0 0 403px;
  max-width: 403px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pd-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px;
  box-sizing: border-box;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #808080;
}

.pd-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background: #3333a7;
}

.pd-feature-icon img {
  width: 12px;
  height: 9px;
  display: block;
}

.pd-tab-text {
  flex: 1;
  max-width: 648px;
  padding: 10px;
  box-sizing: border-box;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #808080;
}

.pd-tab-text p:last-child {
  margin-bottom: 0;
}

.pd-feedback-testimonials {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}

.pd-tab-text p {
  margin: 0 0 0;
}

.pd-tab-text p+p {
  margin-top: 0;
}

.pd-tab-text--solo {
  max-width: 100%;
}

/* Responsive */
@media (max-width: 1200px) {
  .pd-detail-inner {
    padding: 40px 48px;
  }

  body.product-page .woocommerce-notices-wrapper {
    padding: 16px 48px 0;
  }

  .pd-tab-panel {
    padding: 40px 48px;
    gap: 48px;
  }

  .pd-info {
    flex: 1 1 400px;
    max-width: none;
  }

  .pd-desc {
    max-width: none;
  }
}

@media (max-width: 992px) {
  .pd-detail-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .pd-gallery,
  .pd-info {
    flex: none;
    width: 100%;
    max-width: none;
  }

  .pd-gallery-layout {
    justify-content: center;
  }

  .pd-gallery-main,
  .pd-main-image {
    width: 100%;
    max-width: 543px;
    height: 360px;
  }

  .pd-gallery-thumbs {
    height: auto;
  }

  .pd-thumb-list {
    width: 100%;
    max-width: 360px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .pd-tab-panel {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    min-height: 0;
  }

  .pd-features {
    flex: none;
    max-width: none;
    width: 100%;
  }

  .pd-tab-text {
    max-width: none;
  }

  .pd-cta {
    flex-wrap: wrap;
  }

  .pd-add-cart {
    max-width: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .pd-detail-inner {
    padding: 32px 20px;
  }

  body.product-page .woocommerce-notices-wrapper {
    padding: 12px 20px 0;
  }

  .pd-title {
    font-size: 32px;
    line-height: 40px;
  }

  .pd-tabs {
    gap: 8px;
    flex-wrap: wrap;
    padding: 8px 12px;
  }

  .pd-tab {
    font-size: 16px;
    line-height: 24px;
    padding: 12px;
  }

  .pd-tab-panel {
    padding: 32px 20px;
  }

  .pd-gallery-layout {
    flex-direction: column-reverse;
    align-items: center;
    gap: 16px;
  }

  .pd-gallery-thumbs {
    flex-direction: row;
    width: 100%;
    height: auto;
    justify-content: center;
    gap: 8px;
  }

  .pd-thumb-list {
    width: min(100%, 340px);
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .pd-gallery-nav {
    display: none;
  }

  .pd-main-image {
    height: 280px;
  }
}

/* =============================================
   CHECKOUT CYCLE ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Figma 163:6916
   ============================================= */
.checkout-page {
  background: #efefef;
}

.co-main-wrap {
  padding: 0 0 48px;
}

.co-main-wrap--success {
  padding: 0;
}

/* Breadcrumb ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Figma Frame 824757 */
.co-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 0;
  margin-bottom: 0;
}

.co-breadcrumb-link {
  font-family: 'Inter', var(--font-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #3333a7;
  text-decoration: none;
  transition: color var(--transition);
}

.co-breadcrumb-link:hover {
  color: #000091;
}

.co-breadcrumb-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4px;
  height: 8px;
  flex-shrink: 0;
}

.co-breadcrumb-sep img {
  display: block;
  width: 8px;
  height: 4px;
  transform: rotate(-90deg);
  opacity: 0.7;
}

.co-breadcrumb-current {
  font-family: 'Inter', var(--font-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #000091;
}

.co-layout {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-top: 48px;
}

.co-checkout-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-top: 48px;
}

/* Shopping cart card */
.co-cart-card {
  flex: 1;
  min-width: 0;
  background: #fff;
  border: 1px solid #e4e7e9;
  border-radius: 22px;
  overflow: hidden;
}

.co-cart-head {
  padding: 18px 22px;
}

.co-cart-title {
  margin: 0;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  color: #191c1f;
}

.co-cart-cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 80px 156px 102px;
  gap: 22px;
  align-items: center;
  padding: 9px 22px;
  background: #f2f4f5;
  border-top: 1px solid #e4e7e9;
  border-bottom: 1px solid #e4e7e9;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  color: #475156;
}

.co-cart-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 22px;
}

.co-cart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 80px 156px 102px;
  gap: 22px;
  align-items: center;
}

.co-cart-product {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.co-cart-remove {
  flex-shrink: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  line-height: 0;
  transition: opacity var(--transition);
}

.co-cart-remove:hover {
  opacity: 0.75;
}

.co-cart-thumb {
  flex-shrink: 0;
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 2px;
}

.co-cart-name {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  color: #191c1f;
}

.co-cart-price,
.co-cart-sub {
  display: flex;
  align-items: center;
}

.co-cart-qty-wrap {
  display: flex;
  justify-content: flex-start;
}

.co-cart-qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 135px;
  padding: 11px 18px;
  background: #fff;
  border: 1px solid #e4e7e9;
  border-radius: 3px;
}

.co-cart-qty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  line-height: 0;
  transition: opacity var(--transition);
}

.co-cart-qty-btn:hover {
  opacity: 0.65;
}

.co-cart-qty-val {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  color: #475156;
  min-width: 20px;
  text-align: center;
}

.co-cart-divider {
  height: 1px;
  background: #e4e7e9;
}

.co-cart-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
}

/* Sidebar */
.co-sidebar {
  flex-shrink: 0;
  width: 424px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.co-totals-card,
.co-coupon-card {
  background: #fff;
  border: 1px solid #e4e7e9;
  border-radius: 24px;
  overflow: hidden;
}

.co-totals-title {
  margin: 0;
  padding: 20px 24px;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #191c1f;
}

.co-coupon-card .co-totals-title {
  border-bottom: 1px solid #e4e7e9;
}

.co-totals-body {
  padding: 0 24px 24px;
}

.co-totals-lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 4px;
}

.co-totals-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #5f6c72;
}

.co-totals-line--total {
  font-family: var(--font-main);
  font-weight: 400;
  color: #191c1f;
}

.co-totals-line--total .co-price span:last-child {
  font-weight: 600;
  color: #1e1e1e;
}

.co-totals-free {
  font-weight: 500;
  color: #191c1f;
}

.co-totals-divider {
  height: 1px;
  margin: 16px 0;
  background: #e4e7e9;
}

.co-coupon-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 24px 24px;
}

/* Price */
.co-price {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #1e1e1e;
  white-space: nowrap;
}

.co-price img {
  display: block;
  flex-shrink: 0;
}

.co-price--accent {
  font-size: 12px;
  font-weight: 500;
  line-height: 19px;
  color: #3333a7;
}

.co-price--sm {
  font-size: 12px;
  font-weight: 500;
  line-height: 19px;
  color: #1e1e1e;
}

/* Buttons */
.co-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.co-btn img {
  display: block;
  flex-shrink: 0;
}

.co-btn--solid .co-btn-arrow,
.co-btn--solid img[src*="checkout-arrow"] {
  filter: brightness(0) invert(1);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.co-btn--solid:hover .co-btn-arrow:not(.co-btn-arrow--left),
.co-btn--solid:hover img[src*="checkout-arrow"]:not(.co-btn-arrow--left) {
  transform: translateX(5px);
}

.co-btn--solid .co-btn-arrow--left {
  transform: rotate(180deg);
}

.co-btn--solid:hover .co-btn-arrow--left {
  transform: rotate(180deg) translateX(5px);
}

.co-btn--outline {
  min-width: 200px;
  padding: 11px 18px;
  border: 2px solid #3333a7;
  border-radius: 8px;
  background: #fff;
  color: #3333a7;
  font-size: 15px;
  line-height: 22px;
}

.co-btn--outline:hover {
  background: #f5f5ff;
}

.co-btn--solid {
  background: #3333a7;
  color: #fff;
}

.co-btn--solid:hover {
  background: #000091;
  box-shadow: 0 4px 14px rgba(0, 0, 145, 0.25);
}

.co-cart-actions .co-btn--solid {
  min-width: 200px;
  height: 45px;
  padding: 7px 13px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.2;
}

.co-btn--block {
  width: calc(100% - 48px);
  margin: 0 24px 24px;
}

.co-btn--coupon {
  width: 175px;
  height: 50px;
  padding: 8px 14px;
  border-radius: 12px;
  line-height: 1.2;
}

.co-btn--outline .co-btn-arrow,
.co-btn--outline img[src*="checkout-arrow"] {
  filter: brightness(0) saturate(100%) invert(24%) sepia(89%) saturate(2476%) hue-rotate(226deg) brightness(88%) contrast(101%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.co-btn--outline:hover .co-btn-arrow--left {
  transform: rotate(180deg) translateX(5px);
}

.co-btn-arrow--left {
  transform: rotate(180deg);
}

/* Form ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Checkout */
.co-checkout-form {
  flex: 1;
  min-width: 0;
  max-width: 637px;
}

.co-form-section {
  margin-bottom: 29px;
}

.co-form-section--billing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.co-form-section--billing .co-section-title {
  margin: 0;
  font-size: 18px;
  line-height: 27px;
}

.co-billing-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 637px;
}

.co-form-row--billing-1 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 2.08fr);
  gap: 12px;
  align-items: start;
}

.co-form-row--billing-2 {
  display: grid;
  grid-template-columns: minmax(0, 2.08fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.co-form-row--billing-3 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.co-payment-section {
  padding: 15px 0 24px;
  background: #fff;
  border: 1px solid #e4e7e9;
  border-radius: 14px;
}

.co-payment-section .co-section-title {
  padding: 0 24px;
  margin-bottom: 15px;
}

.co-section-title {
  margin: 0 0 18px;
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: #191c1f;
}

.co-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.co-label {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: #191c1f;
}

.co-label-muted {
  color: #787878;
  font-weight: 400;
}

.co-input,
.co-textarea {
  width: 100%;
  height: 32px;
  padding: 0 10px;
  border: 1px solid #e4e7e9;
  border-radius: 9px;
  background: #fff;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #191c1f;
  transition: border-color var(--transition);
}

.co-input::placeholder {
  color: #787878;
}

.co-input--muted-ph::placeholder {
  color: #a5a5a5;
}

.co-textarea {
  height: auto;
  min-height: 91px;
  padding: 10px;
  border-radius: 14px;
  resize: vertical;
}

.co-textarea::placeholder {
  color: #787878;
}

.co-input:focus,
.co-textarea:focus {
  outline: none;
  border-color: #3333a7;
}

.co-billing-fields .co-check {
  margin-top: 6px;
}

.co-check {
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
}

.co-check-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.co-check-box {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  border: 1px solid #c9cfd2;
  border-radius: 5px;
  background: #fff;
  transition:
    border-color var(--transition),
    background var(--transition);
}

.co-check-input:checked+.co-check-box {
  border-color: #3333a7;
  background: #3333a7;
  box-shadow: inset 0 0 0 2px #fff;
}

.co-check-label {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  color: #475156;
}

/* Payment options */
.co-payment-options {
  display: flex;
  align-items: stretch;
  border-top: 1px solid #e4e7e9;
}

.co-payment-opt {
  flex: 1;
  cursor: pointer;
}

.co-payment-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.co-payment-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 106px;
  padding: 18px 8px;
  border-right: 1px solid #e4e7e9;
  transition: background var(--transition);
}

.co-payment-opt:last-child .co-payment-inner {
  border-right: none;
}

.co-payment-opt:hover .co-payment-inner {
  background: #f9f9f9;
}

.co-payment-icon {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.co-payment-name {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 15px;
  text-align: center;
  color: #191c1f;
}

.co-payment-dot {
  width: 15px;
  height: 15px;
  border: 1px solid #c9cfd2;
  border-radius: 50%;
  background: #fff;
  transition:
    border-color var(--transition),
    background var(--transition);
}

.co-payment-radio:checked~.co-payment-inner .co-payment-dot {
  border-color: #fa8232;
  background: radial-gradient(circle, #fa8232 40%, #fff 41%);
}

/* Order summary */
.co-order-summary {
  flex-shrink: 0;
  width: 392px;
  padding-bottom: 18px;
  background: #fff;
  border: 1px solid #e4e7e9;
  border-radius: 24px;
}

.co-order-summary-title {
  margin: 0;
  padding: 15px 27px;
  font-family: var(--font-main);
  font-size: 19px;
  font-weight: 600;
  line-height: 28px;
  color: #191c1f;
}

.co-order-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 27px 18px;
}

.co-order-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.co-order-thumb {
  flex-shrink: 0;
  width: 49px;
  height: 49px;
  object-fit: cover;
  border-radius: 2px;
}

.co-order-item-name {
  margin: 0 0 5px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 26px;
  color: #191c1f;
}

.co-order-item-price {
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 0;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 500;
  line-height: 19px;
  color: #787878;
}

.co-order-totals {
  padding: 0 27px 18px;
}

.co-order-totals-lines {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-bottom: 3px;
}

.co-order-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 500;
  line-height: 19px;
  color: #787878;
}

.co-order-line--total {
  color: #191c1f;
}

.co-order-free {
  color: #191c1f;
}

.co-order-divider {
  height: 1px;
  margin: 12px 0;
  background: #e4e7e9;
}

.co-btn--place {
  width: calc(100% - 54px);
  margin: 0 27px;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 19px;
  line-height: 28px;
  text-transform: uppercase;
}

/* Success */
.co-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  min-height: 516px;
  padding: 124px 0;
  text-align: center;
}

.co-success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.co-success-icon {
  display: block;
}

.co-success-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 424px;
}

.co-success-title {
  margin: 0;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #1e1e1e;
}

.co-success-desc {
  margin: 0;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #787878;
}

.co-success-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.co-btn--view {
  min-width: 183px;
}

@media (max-width: 1199px) {

  .co-layout,
  .co-checkout-layout {
    flex-direction: column;
  }

  .co-sidebar,
  .co-order-summary {
    width: 100%;
    max-width: 424px;
  }

  .co-cart-cols {
    display: none;
  }

  .co-cart-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e4e7e9;
  }

  .co-cart-row:last-child {
    border-bottom: none;
  }

  .co-payment-options {
    flex-wrap: wrap;
  }

  .co-payment-opt {
    flex: 1 1 33%;
    min-width: 110px;
  }

  .co-payment-inner {
    border-right: none;
    border-bottom: 1px solid #e4e7e9;
    min-height: 100px;
  }
}

@media (max-width: 767px) {
  .co-layout {
    padding-top: 24px;
  }

  .co-checkout-layout {
    padding-top: 24px;
    gap: 24px;
  }

  .co-cart-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .co-cart-actions .co-btn--outline,
  .co-cart-actions .co-btn--solid {
    width: 100%;
    min-width: 0;
  }

  .co-form-row--billing-1,
  .co-form-row--billing-2,
  .co-form-row--billing-3 {
    grid-template-columns: 1fr;
  }

  .co-success {
    padding: 64px 0;
  }

  .co-success-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .co-success-actions .co-btn {
    width: 100%;
  }
}

/* =============================================
   ABOUT PAGE ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Figma 181:8454
   ============================================= */
@font-face {
  font-family: "Mayonice";
  src: url("../fonts/Mayonice.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body.about-page {
  background: #efefef;
}

body.about-page main .container {
  max-width: 1440px;
  padding-left: clamp(16px, 6.94vw, 100px);
  padding-right: clamp(16px, 6.94vw, 100px);
}

/* Hero ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â dual bg layers (Figma 279:7538) */
.about-page .cat-page-hero-bg,
.inner-page .cat-page-hero-bg {
  overflow: hidden;
}

.about-hero-img {
  position: absolute;
  left: 0;
  top: -25%;
  width: 100%;
  height: 150%;
  max-width: none;
  object-fit: cover;
}

.about-hero-overlay-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  pointer-events: none;
}

.about-page .cat-page-hero-overlay,
.inner-page .cat-page-hero-overlay {
  background: transparent;
}

.about-intro-section {
  position: relative;
  background: #ffd6d6;
  padding: 48px 0;
  overflow: hidden;
}

/* Figma frame 268:6322 ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â decos sit on full section width, outside .container */
.about-intro-deco-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.about-intro-deco,
.about-intro-deco-group {
  position: absolute;
  pointer-events: none;
}

.about-intro-deco {
  display: block;
  height: auto;
  max-width: none;
  width: 105.981px;
  height: 105.399px;
}

/* Figma 279:13164 ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â large pepper (behind) */
.about-intro-deco--tl-lg {
  left: calc(135 / 1440 * 100%);
  top: -45px;
  width: auto;
  z-index: 1;
  transform: rotate(45deg);
}

/* Figma 279:13089 ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â small pepper slice (front) */
.about-intro-deco--tl-sm {
  left: calc(216 / 1440 * 100%);
  top: -36px;
  width: 149px;
  z-index: 2;
}

/* Figma 279:13267 ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â potatoes top-right */
.about-intro-deco--tr {
  right: calc(34 / 1440 * 100%);
  left: auto;
  top: 22px;
  width: 166px;
  z-index: 1;
  width: 166.174px;
  height: 111.427px;
}

/* Figma 279:13942 ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â mushrooms bottom-left (bleeds off edge) */
.about-intro-deco--bl {
  left: calc(-69 / 1440 * 100%);
  top: 396px;
  width: 245px;
  z-index: 1;
  width: 245.214px;
  height: 164.427px;
}

/* Figma 279:12908 ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â bottom-right group */
.about-intro-deco-group--br {
  right: calc(17 / 1440 * 100%);
  left: auto;
  top: 368px;
  width: 260px;
  height: 195px;
  z-index: 1;
}

/* Figma 279:12909 */
.about-intro-deco--br-pepper {
  left: 0;
  top: 0;
  width: 40.7434%;
}

/* Figma 279:12984 */
.about-intro-deco--br-shipping {
  left: 41.2434%;
  top: 3.4784%;
  width: 152.832px;
  height: 188.217px;
}

@media (min-width: 1440px) {
  .about-intro-deco--tl-lg {
    left: -59px;
    width: 152.832px;
    height: 188.217px;
    transform: rotate(135deg);
  }

  .about-intro-deco--tl-sm {
    left: 95px;
    width: 105.981px;
    height: 105.399px;
    transform: rotate(135deg);
  }

  .about-intro-deco--tr {
    right: 34px;
  }

  .about-intro-deco--bl {
    left: -69px;
  }

  .about-intro-deco-group--br {
    right: 17px;
  }
}

.about-intro-section .container {
  position: relative;
  z-index: 1;
}

.about-intro-inner {
  display: flex;
  align-items: center;
  gap: 53px;
  max-width: 1239px;
  margin: 0 auto;
}

.about-intro-photo-col {
  flex: 0 0 496px;
  width: 496px;
  min-height: 474px;
  display: flex;
  align-items: center;
  padding: 10px 0 10px 21px;
}

.about-intro-photo-wrap {
  flex-shrink: 0;
  width: 454px;
  height: 454px;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

/* AOS custom ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â equivalent to animate.css rotateInDownLeft */
[data-aos="rotate-in-down-left"] {
  opacity: 0;
  transform: rotate(-45deg);
  transform-origin: left bottom;
  transition-property: transform, opacity;
}

[data-aos="rotate-in-down-left"].aos-animate {
  opacity: 1;
  transform: rotate(0);
}

.about-intro-photo {
  position: absolute;
  left: 0.11%;
  top: 3.02%;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}

.about-intro-content {
  flex: 1;
  min-width: 0;
  max-width: 690px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-intro-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-intro-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #000091;
  margin: 0;
}

.about-intro-tagline {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #ed2839;
  margin: 0;
}

.about-intro-text>p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #1e1e1e;
  margin: 0;
  max-width: 690px;
}

.about-intro-text>p+p {
  margin-top: 0;
}

.about-intro-stats {
  display: flex;
  align-items: center;
  gap: 21px;
  width: 451px;
  max-width: 100%;
  flex-wrap: nowrap;
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  flex-shrink: 0;
  height: 136px;
  box-sizing: border-box;
}

.about-stat:nth-child(1) {
  width: 133px;
}

.about-stat:nth-child(2) {
  width: 135px;
}

.about-stat:nth-child(3) {
  width: 141px;
}

.about-stat-num {
  margin: 0;
  padding: 0;
  white-space: nowrap;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.about-stat-prefix,
.about-stat-num .odometer,
.about-stat-num .odometer.odometer-auto-theme {
  font-family: "Mayonice", "Kaushan Script", cursive !important;
  font-size: 76px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 1px;
  color: #ed2839;
}

.about-stat-prefix {
  display: inline-block;
  flex-shrink: 0;
}

.about-stat-num .odometer,
.about-stat-num .odometer.odometer-auto-theme {
  display: inline-block;
  vertical-align: middle;
}

.about-stat-label-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px 8px;
  box-sizing: border-box;
}

.about-stat-label {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #000091;
  margin: 0;
  padding: 0;
  text-align: center;
  white-space: nowrap;
}

.about-quality-section {
  position: relative;
  background: #fdf3d1;
  min-height: auto;
  padding: 48px 0;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.about-quality-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.about-quality-deco--melon {
  left: -56px;
  top: 10px;
  width: 164.154px;
  height: 161.679px;
  transform: rotate(-30.22deg);
}

.about-quality-deco--grape {
  right: -34px;
  bottom: 15px;
  width: 168.907px;
  height: 239.111px;
  transform: rotate(58.513deg);
}

.about-quality-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 100px;
  max-width: 1237px;
  margin: 0 auto;
}

.about-quality-content {
  flex: 0 0 527px;
  max-width: 527px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 37px;
  padding-top: 69px;
}

.about-section-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #000091;
  margin: 0;
}

.about-section-title--center {
  text-align: center;
}

.about-section-subtitle {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #08843b;
  margin: 0;
}

.about-section-subtitle--center {
  text-align: center;
}

.about-quality-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-quality-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-quality-text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #1e1e1e;
  margin: 0;
}

.about-quality-features {
  display: flex;
  align-items: flex-start;
  gap: 42px;
  flex-wrap: nowrap;
}

.about-quality-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  flex-shrink: 0;
}

.about-quality-feature:nth-child(1) {
  width: 114px;
}

.about-quality-feature:nth-child(2) {
  width: 86px;
}

.about-quality-feature:nth-child(3) {
  width: 103px;
}

.about-quality-feature:nth-child(4) {
  width: 83px;
}

.about-quality-feature-icon {
  width: auto;
  height: 42px;
  max-width: 46px;
  object-fit: contain;
  display: block;
}

.about-quality-feature-icon--shipping {
  height: 46px;
  max-width: 46px;
}

.about-quality-feature-icon--location {
  height: 44px;
  max-width: 37px;
}

.about-quality-feature-label {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #08843b;
  margin: 0;
}

.about-quality-gallery {
  flex: 0 0 611px;
  max-width: 611px;
  display: grid;
  grid-template-columns: repeat(2, 294.72px);
  gap: 20px 21px;
  justify-content: end;
}

.about-quality-img-wrap {
  width: 294.72px;
  height: 294.72px;
  border-radius: 45.59px;
  overflow: hidden;
  position: relative;
  background: #fff;
}

.about-quality-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-quality-img--2 {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0.3%;
  top: -0.14%;
  max-width: none;
}

.about-quality-img-wrap--offset-lg .about-quality-img--3 {
  position: absolute;
  width: 139%;
  height: 101%;
  left: -16%;
  top: -0.28%;
  max-width: none;
}

.about-commitment-section {
  position: relative;
  background: #cee6d8;
  min-height: 457px;
  padding: 48px 0;
  overflow: hidden;
}

.about-commitment-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  height: auto;
  width: 320.709px;
  height: 318.963px;
}

.about-commitment-deco--beet-left {
  left: 3%;
  top: 20%;
  width: 321px;
  transform: scaleX(-1);
}

.about-commitment-deco--beet-left-sm {
  left: 1%;
  bottom: 5%;
  width: 120px;
  transform: scaleX(-1);
  width: 151.265px;
  height: 144.156px;
}

.about-commitment-deco--beet-right {
  right: 4%;
  top: 20%;
  width: 321px;
}

.about-commitment-deco--beet-right-sm {
  right: 2%;
  bottom: 5%;
  width: 120px;
  width: 151.265px;
  height: 144.156px;
}

.about-commitment-head {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 541px;
  margin: 0 auto 46px;
}

.about-commitment-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #1e1e1e;
  text-align: center;
  margin: 0;
  max-width: 440px;
}

.about-commitment-features {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 76px;
  flex-wrap: wrap;
}

.about-commitment-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.about-commitment-feature-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.about-commitment-feature-icon--handshake {
  width: 41px;
  height: 42px;
}

.about-commitment-feature-label {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #08843b;
  margin: 0;
}

.about-page .partners-section {
  display: none;
}

/* Duo block ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Figma 291:18943 */
.about-duo-section {
  position: relative;
  overflow: visible;
}

.about-duo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  /* background: linear-gradient(180deg,
      #fdf3d1 0%,
      #fdf3d1 52%,
      #e6f4ea 52%,
      #e6f4ea 100%); */
  pointer-events: none;
}

.about-duo-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 48%);
  gap: clamp(1.5rem, 4vw, 5rem);
  align-items: start;
}

.about-duo-main {
  display: flex;
  flex-direction: column;
  max-width: 525px;
}

.about-duo-figure {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  margin-top: clamp(-20rem, -36vh, -4rem);
  pointer-events: none;
}

.about-duo-figure img {
  display: block;
  width: 100%;
  max-width: 688px;
  height: auto;
  margin-inline: auto;
  border-radius: 8px;
  object-fit: contain;
}

.about-duo-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  height: auto;
  max-width: 22vw;
}

.about-duo-deco--cucumber-lg {
  left: 0;
  bottom: 8%;
  width: min(158px, 18vw);
}

.about-duo-deco--cucumber-sm {
  left: 87px;
  bottom: 10%;
  width: min(70px, 10vw);
}

.about-duo-deco--veggie-left {
  left: -4%;
  top: 2%;
  width: min(245px, 28vw);
  opacity: 0.85;
}

.about-duo-deco--veggie-right {
  right: -6%;
  top: 22%;
  width: min(292px, 32vw);
  opacity: 0.85;
}

/* Partners ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Figma 285:15777 */
.about-duo-partners {
  padding: 48px 0 24px;
}

.about-duo-section .partners-title-wrap {
  text-align: left;
  margin: 0 0 12px;
  padding-top: 8px;
}

.about-duo-section .partners-title {
  display: block;
  white-space: normal;
  padding-bottom: 13px;
  margin-bottom: 42px;
}

.about-partners-title::after,
.about-duo-section .partners-title::after {
  width: 115px;
  background: linear-gradient(to right,
      #ed2839 0%,
      #ed2839 33.91%,
      #000091 33.91%,
      #000091 100%);
}

.about-partners-logos {
  padding: 8px 0;
}

.about-partners-grid-img {
  display: block;
  width: 100%;
  max-width: 525px;
  height: auto;
}

/* Testimonials ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Figma 285:15778 */
.about-duo-testimonials {
  padding: 48px 0 64px;
}

.about-duo-testimonials .about-duo-title-wrap {
  margin-bottom: 12px;
}

.about-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.5rem, 1.2vw, 0.65rem);
  width: 100%;
}

.about-testimonials-layout {
  display: contents;
}

.about-testimonials-figure {
  display: none;
}

.about-testimonial-card {
  background: #fff;
  border-radius: 9.56px;
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  box-shadow: 0 3.98px 3.98px rgba(0, 0, 0, 0.01);
  width: 100%;
  box-sizing: border-box;
}

.about-testimonial-quote {
  width: 12.75px;
  height: 10.36px;
  display: block;
  flex-shrink: 0;
}

.about-testimonial-text {
  font-family: var(--font-main);
  font-size: 10.5px;
  font-weight: 400;
  line-height: 1.45;
  color: #4d4d4d;
  margin: 0;
  flex: 1;
}

.about-testimonial-client {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  min-height: 25.5px;
}

.about-testimonial-reviewer {
  display: flex;
  align-items: center;
  gap: 4.78px;
  min-width: 0;
}

.about-testimonial-avatar {
  width: 22.31px;
  height: 22.31px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.about-testimonial-name {
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  color: #1e1e1e;
  margin: 0;
}

.about-testimonial-role {
  font-family: var(--font-main);
  font-size: 8px;
  font-weight: 400;
  line-height: 1;
  color: #666;
  margin: 0;
}

.about-testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-testimonial-stars {
  display: flex;
  align-items: center;
  gap: 0.4px;
  flex-shrink: 0;
}

.about-testimonial-stars img {
  width: 7.97px;
  height: 7.97px;
  display: block;
}

@media (max-width: 1199px) {
  .about-intro-inner {
    gap: 40px;
  }

  .about-intro-photo-col {
    flex: 0 0 auto;
    width: auto;
    min-height: auto;
    padding: 0;
  }

  .about-intro-photo-wrap {
    width: 380px;
    height: 380px;
  }

  .about-intro-title {
    font-size: 44px;
    line-height: 52px;
  }

  .about-quality-inner {
    gap: 48px;
    flex-wrap: wrap;
  }

  .about-quality-content {
    flex: 1 1 100%;
    max-width: 100%;
    padding-top: 0;
  }

  .about-quality-gallery {
    flex: 1 1 100%;
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
  }

  .about-quality-img-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .about-quality-features {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .about-intro-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-intro-photo-col {
    justify-content: center;
    padding: 0;
  }

  .about-intro-content {
    align-items: center;
  }

  .about-intro-stats {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    row-gap: 16px;
  }

  .about-quality-inner {
    flex-direction: column;
  }

  .about-quality-deco {
    opacity: 0.35;
  }

  .about-commitment-deco {
    opacity: 0.25;
  }

  .about-commitment-deco--beet-left,
  .about-commitment-deco--beet-right {
    width: 220px;
  }

  .about-testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-duo-layout {
    grid-template-columns: 1fr;
  }

  .about-duo-figure {
    grid-column: 1;
    margin-top: 0;
    max-width: 420px;
    margin-inline: auto;
    order: -1;
  }

  .about-duo-main {
    max-width: 100%;
  }
}

@media (max-width: 767px) {

  .about-intro-section,
  .about-quality-section,
  .about-commitment-section,
  .about-duo-partners,
  .about-duo-testimonials {
    padding: 32px 0;
  }

  .about-duo-partners,
  .about-duo-testimonials {
    padding-block: 32px;
  }

  .about-intro-photo-col {
    padding: 0;
  }

  .about-intro-photo-wrap {
    width: min(100%, 320px);
    height: min(100%, 320px);
  }

  .about-stat:nth-child(1),
  .about-stat:nth-child(2),
  .about-stat:nth-child(3) {
    width: auto;
    height: auto;
    min-height: 0;
  }

  .about-intro-title,
  .about-section-title {
    font-size: 32px;
    line-height: 40px;
  }

  .about-intro-tagline,
  .about-section-subtitle {
    font-size: 20px;
    line-height: 28px;
  }

  .about-stat-num {
    height: 62px;
  }

  .about-stat-prefix,
  .about-stat-num .odometer,
  .about-stat-num .odometer.odometer-auto-theme {
    font-size: 56px;
  }

  .about-quality-features,
  .about-commitment-features {
    gap: 24px;
    justify-content: center;
  }

  .about-quality-gallery {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .about-duo-deco {
    opacity: 0.35;
  }

  .about-testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .about-testimonial-card {
    width: 100%;
  }

  .about-testimonial-text {
    font-size: 12px;
  }

  .about-testimonial-name {
    font-size: 12px;
  }

  .about-testimonial-role {
    font-size: 10px;
  }

  .about-testimonial-avatar {
    width: 32px;
    height: 32px;
  }

  .about-testimonial-stars img {
    width: 12px;
    height: 12px;
  }

  .about-duo-deco {
    display: none;
  }

  .about-commitment-deco {
    display: none;
  }

  .about-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   WOOCOMMERCE MY ACCOUNT ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Sign-in section style
   ============================================= */
body.france-account-page {
  background: #f5f6fa;
}

body.france-account-page .site-main {
  padding: 48px 0 80px;
}

body.france-account-page .site-header img,
body.france-account-page .site-footer img,
body.france-account-page .search-overlay img {
  max-width: none;
}

body.france-account-page .entry-content>.woocommerce {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  font-family: var(--font-main);
  color: #333;
}

/* Shared card ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â matches .signin-card */
.france-account-card {
  display: flex;
  align-items: stretch;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* Left brand panel ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â matches .signin-left */
.france-account-aside {
  width: min(100%, 380px);
  flex-shrink: 0;
  background: #3333a7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 24px;
  text-align: center;
}

.france-account-aside-title {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  text-transform: uppercase;
}

.france-account-aside-text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
}

.france-account-aside-safe {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  color: #f6cf45;
}

.france-account-aside-safe img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.france-account-aside-art {
  width: 100%;
  max-width: 320px;
  margin-top: 8px;
}

.france-account-aside-art img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Guest login panel ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â matches .signin-right */
.france-account-card--guest .france-account-main>h2 {
  display: none;
}

.france-account-card--guest .france-account-main {
  flex: 1;
  background: #fff;
  padding: 40px 32px;
  min-width: 0;
}

.france-account-card--guest .france-account-main>h2 {
  margin: 0 0 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #000091;
  text-align: center;
}

.france-account-card--guest .u-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

/* Logged-in account shell ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â profile dashboard layout */
.france-account-shell {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.france-account-sidebar-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.france-account-sidebar-col .woocommerce-MyAccount-navigation {
  background: #fff;
  border-radius: 20px;
  padding: 20px 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  width: 100%;
}

body.france-account-page .woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.france-account-page .woocommerce-MyAccount-navigation li {
  margin: 0;
  list-style: none;
}

body.france-account-page .woocommerce-MyAccount-navigation a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  color: #475156;
  transition: background var(--transition), color var(--transition);
}

body.france-account-page .woocommerce-MyAccount-navigation a i {
  width: 18px;
  text-align: center;
  color: #000091;
  font-size: 16px;
}

body.france-account-page .woocommerce-MyAccount-navigation li.is-active a,
body.france-account-page .woocommerce-MyAccount-navigation a:hover {
  background: #ececff;
  color: #000091;
}

body.france-account-page .woocommerce-MyAccount-content {
  min-width: 0;
  padding: 0;
  background: transparent;
  width: 100%;
}

.france-account-help {
  background: #ececff;
  border-radius: 16px;
  padding: 18px 16px;
  text-align: center;
}

.france-account-help-title {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  color: #000091;
}

.france-account-help-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #000091;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 145, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.france-account-help-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 145, 0.12);
}

/* Dashboard blocks */
.france-dashboard {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.france-dashboard-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.france-dashboard-hero-title {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: #000091;
}

.france-dashboard-hero-desc {
  margin: 0;
  max-width: 620px;
  font-size: 15px;
  line-height: 24px;
  color: #667085;
}

.france-dashboard-hero-art {
  width: min(100%, 220px);
  flex-shrink: 0;
}

.france-dashboard-hero-art img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.france-dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.france-stat-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-height: 148px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.france-stat-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.france-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 18px;
}

.france-stat-card--orders .france-stat-icon {
  background: #ececff;
  color: #3333a7;
}

.france-stat-card--pending .france-stat-icon {
  background: #e8f8ef;
  color: #1b9a58;
}

.france-stat-card--wishlist .france-stat-icon {
  background: #fff1e8;
  color: #f15361;
}

.france-stat-card--addresses .france-stat-icon {
  background: #e8f1ff;
  color: #000091;
}

.france-stat-label {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 20px;
  color: #667085;
}

.france-stat-value {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #101828;
}

.france-stat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #3333a7;
}

.france-stat-link:hover {
  color: var(--color-active);
}

.france-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
}

.france-dashboard-panel {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.france-dashboard-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.france-dashboard-panel-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #101828;
}

.france-dashboard-panel-link,
.france-dashboard-panel-foot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #3333a7;
}

.france-dashboard-panel-link:hover,
.france-dashboard-panel-foot:hover {
  color: var(--color-active);
}

.france-dashboard-empty {
  margin: 0;
  color: #667085;
}

.france-order-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.france-order-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #eef0f3;
}

.france-order-item:last-child {
  border-bottom: none;
}

.france-order-thumb {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  background: #f2f2f2;
}

.france-order-title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
  color: #101828;
}

.france-order-date {
  margin: 0;
  font-size: 13px;
  color: #667085;
}

.france-order-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.france-order-badge.is-completed {
  background: #e8f8ef;
  color: #1b9a58;
}

.france-order-badge.is-processing {
  background: #fff1e8;
  color: #e67e22;
}

.france-order-badge.is-on-hold,
.france-order-badge.is-pending {
  background: #f2f4f7;
  color: #667085;
}

.france-order-badge.is-cancelled,
.france-order-badge.is-refunded,
.france-order-badge.is-failed,
.france-order-badge.is-default {
  background: #fff0f1;
  color: var(--color-active);
}

.france-order-price {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #101828;
  white-space: nowrap;
}

.france-dashboard-panel-foot {
  margin-top: 16px;
}

.france-profile-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.france-profile-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #eef0f3;
}

.france-profile-item:last-child {
  border-bottom: none;
}

.france-profile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f5f5fc;
  color: #000091;
  flex-shrink: 0;
}

.france-profile-label {
  margin: 0 0 4px;
  font-size: 13px;
  color: #667085;
}

.france-profile-value {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #101828;
  word-break: break-word;
}

.france-profile-doc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3333a7;
}

.france-profile-secure {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #e8f8ef;
}

.france-profile-secure-icon {
  color: #1b9a58;
  font-size: 22px;
}

.france-profile-secure-title {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 600;
  color: #1b9a58;
}

.france-profile-secure-text {
  margin: 0;
  font-size: 13px;
  color: #3d8f63;
}

/* Team members panel */
.france-team-panel {
  margin-top: 24px;
}

.france-team-panel__title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.france-team-panel__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: #f5f5fc;
  color: #3333a7;
  font-size: 13px;
  font-weight: 600;
}

.france-team-panel__add-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border: none;
  border-radius: 10px;
  background: #3333a7;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.france-team-panel__add-btn:hover {
  background: var(--color-active);
}

.france-team-panel__company {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  font-size: 14px;
  color: #667085;
}

.france-team-panel__company i {
  color: #3333a7;
}

.france-team-form {
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 14px;
  background: #f9fafb;
  border: 1px solid #eef0f3;
}

.france-team-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.france-team-form__field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #667085;
}

.france-team-form__field input {
  width: 100%;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  font-size: 15px;
  color: #101828;
  background: #fff;
}

.france-team-form__field input:focus {
  outline: none;
  border-color: #3333a7;
  box-shadow: 0 0 0 3px rgba(51, 51, 167, 0.12);
}

.france-team-form__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.france-team-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: none;
  border-radius: 10px;
  background: #3333a7;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.france-team-form__submit:hover:not(:disabled) {
  background: var(--color-active);
}

.france-team-form__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.france-team-form__cancel {
  min-height: 44px;
  padding: 0 16px;
  border: none;
  background: transparent;
  color: #667085;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.france-team-form__cancel:hover {
  color: #101828;
}

.france-team-panel__toast {
  margin-bottom: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}

.france-team-panel__toast--success {
  background: #e8f8ef;
  color: #1b9a58;
}

.france-team-panel__toast--error {
  background: #fff0f1;
  color: var(--color-active);
}

.france-team-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 16px;
  text-align: center;
  color: #667085;
}

.france-team-empty i {
  font-size: 32px;
  color: #3333a7;
}

.france-team-empty p {
  margin: 0;
  max-width: 420px;
  font-size: 14px;
  line-height: 1.5;
}

.france-team-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.france-team-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #eef0f3;
}

.france-team-item:last-child {
  border-bottom: none;
}

.france-team-item__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f5f5fc;
  color: #3333a7;
  flex-shrink: 0;
}

.france-team-item__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.france-team-item__name {
  font-size: 15px;
  font-weight: 600;
  color: #101828;
}

.france-team-item__email {
  font-size: 14px;
  color: #667085;
  word-break: break-word;
}

.france-team-item__date {
  font-size: 12px;
  color: #98a2b3;
}

.france-team-item__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: #fff0f1;
  color: var(--color-active);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.france-team-item__remove:hover:not(:disabled) {
  background: #ffe1e4;
}

.france-team-item__remove:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 767px) {
  .france-team-form__grid {
    grid-template-columns: 1fr;
  }

  .france-dashboard-panel-head .france-team-panel__add-btn {
    width: 100%;
    justify-content: center;
  }

  .france-team-panel .france-dashboard-panel-head {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Other account endpoints */
body.france-account-page .woocommerce-MyAccount-content>.woocommerce:not(.france-dashboard) {
  background: #fff;
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

body.france-account-page .woocommerce form .form-row label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #667085;
}

body.france-account-page .woocommerce form .input-text,
body.france-account-page .woocommerce form select,
body.france-account-page .woocommerce form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #fff;
  font-family: var(--font-main);
  font-size: 15px;
  color: #333;
}

body.france-account-page .woocommerce form .input-text:focus,
body.france-account-page .woocommerce form select:focus,
body.france-account-page .woocommerce form textarea:focus {
  outline: none;
  border-color: #3333a7;
  box-shadow: 0 0 0 3px rgba(51, 51, 167, 0.12);
}

body.france-account-page .woocommerce button.button,
body.france-account-page .woocommerce input.button,
body.france-account-page .woocommerce a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border: none;
  border-radius: 12px;
  background: #f15361;
  color: #fff;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
}

body.france-account-page .woocommerce button.button:hover,
body.france-account-page .woocommerce input.button:hover,
body.france-account-page .woocommerce a.button:hover {
  background: var(--color-active);
  color: #fff;
}

body.france-account-page .woocommerce table.shop_table {
  width: 100%;
  border: 1px solid #eef0f3;
  border-radius: 16px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

body.france-account-page .woocommerce table.shop_table th,
body.france-account-page .woocommerce table.shop_table td {
  padding: 14px 16px;
  border-bottom: 1px solid #eef0f3;
}

body.france-account-page .woocommerce table.shop_table thead th {
  background: #f9fafb;
  color: #000091;
}

body.france-account-page .woocommerce-message,
body.france-account-page .woocommerce-info {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(51, 51, 167, 0.15);
  background: #ececff;
  color: #000091;
  margin-bottom: 16px;
}

.woocommerce-info::before {
  display: none;
}

.woocommerce-info {
  padding-left: 18px;
}

body.france-account-page .woocommerce-error {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(241, 83, 97, 0.2);
  background: rgba(241, 83, 97, 0.08);
  color: var(--color-active);
  margin-bottom: 16px;
  list-style: none;
}

/* =============================================
   MY ACCOUNT ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â ADDRESSES
   ============================================= */
body.france-account-page .woocommerce-MyAccount-content>.woocommerce:not(.france-dashboard):has(.france-addresses),
body.france-account-page .woocommerce-MyAccount-content>.woocommerce:not(.france-dashboard):has(.france-address-edit) {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.france-addresses {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.france-addresses__header {
  padding: 28px 32px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.france-addresses__title {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  color: #000091;
}

.france-addresses__desc {
  margin: 0;
  max-width: 560px;
  font-size: 15px;
  line-height: 24px;
  color: #667085;
}

.france-addresses__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.france-address-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.france-address-card:hover {
  border-color: rgba(51, 51, 167, 0.12);
  box-shadow: 0 12px 36px rgba(51, 51, 167, 0.08);
}

.france-address-card__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 24px 0;
}

.france-address-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  flex-shrink: 0;
  font-size: 20px;
}

.france-address-card--billing .france-address-card__icon {
  background: #ececff;
  color: #3333a7;
}

.france-address-card--shipping .france-address-card__icon {
  background: #e8f8ef;
  color: #1b9a58;
}

.france-address-card__title {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #101828;
}

.france-address-card__subtitle {
  margin: 0;
  font-size: 13px;
  line-height: 20px;
  color: #667085;
}

.france-address-card__body {
  flex: 1;
  padding: 20px 24px;
}

.france-address-card__address {
  margin: 0;
  font-style: normal;
  font-size: 14px;
  line-height: 24px;
  color: #344054;
  white-space: pre-line;
}

.france-address-card__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 120px;
  padding: 20px;
  text-align: center;
  background: #f9fafb;
  border: 1px dashed #e4e7ec;
  border-radius: 14px;
}

.france-address-card__empty i {
  font-size: 28px;
  color: #98a2b3;
}

.france-address-card__empty p {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  color: #667085;
}

.france-address-card__foot {
  padding: 0 24px 24px;
}

.france-address-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 12px;
  background: #3333a7;
  color: #fff;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.france-address-card__btn:hover {
  background: #000091;
  color: #fff;
  box-shadow: 0 6px 20px rgba(51, 51, 167, 0.28);
}

/* Edit address form */
.france-address-edit {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.france-address-edit__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 14px;
  font-weight: 500;
  color: #3333a7;
  text-decoration: none;
  transition: color 0.2s ease;
}

.france-address-edit__back:hover {
  color: #000091;
}

.france-address-edit__header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 32px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.france-address-edit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #ececff;
  color: #3333a7;
  font-size: 22px;
  flex-shrink: 0;
}

.france-address-edit__title {
  margin: 0 0 6px;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  color: #000091;
}

.france-address-edit__desc {
  margin: 0;
  max-width: 540px;
  font-size: 14px;
  line-height: 22px;
  color: #667085;
}

.france-address-form {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  padding: 28px 32px 32px;
}

.france-address-form__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  margin-bottom: 28px;
}

.france-address-form__fields .form-row {
  margin: 0;
  padding: 0;
  width: 100%;
  float: none;
}

.france-address-form__fields .form-row-wide,
.france-address-form__fields .form-row-first.form-row-last {
  grid-column: 1 / -1;
}

.france-address-form__fields .clear {
  display: none;
}

.france-address-form__fields label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #344054;
}

.france-address-form__fields .required {
  color: var(--color-active);
  text-decoration: none;
}

.france-address-form__fields .input-text,
.france-address-form__fields select,
.france-address-form__fields textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 16px;
  border: 1px solid #e4e7ec;
  border-radius: 12px;
  background: #fff;
  font-family: var(--font-main);
  font-size: 15px;
  color: #101828;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.france-address-form__fields .input-text:focus,
.france-address-form__fields select:focus,
.france-address-form__fields textarea:focus {
  outline: none;
  border-color: #3333a7;
  box-shadow: 0 0 0 3px rgba(51, 51, 167, 0.12);
}

.france-address-form__fields .select2-container .select2-selection--single {
  min-height: 46px;
  border: 1px solid #e4e7ec;
  border-radius: 12px;
}

.france-address-form__fields .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 44px;
  padding-left: 16px;
  color: #101828;
}

.france-address-form__fields .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 44px;
}

.france-address-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid #eef0f3;
}

.france-address-form__submit {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  min-width: 180px;
  background: #3333a7 !important;
  color: #fff !important;
}

.france-address-form__submit:hover {
  background: #000091 !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(51, 51, 167, 0.28);
}

.france-address-form__cancel {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 600;
  color: #667085;
  text-decoration: none;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease;
}

.france-address-form__cancel:hover {
  color: #3333a7;
  background: #f4f4f8;
}

@media (max-width: 991px) {
  .france-addresses__grid {
    grid-template-columns: 1fr;
  }

  .france-address-form__fields {
    grid-template-columns: 1fr;
  }

  .france-address-form__fields .form-row-wide,
  .france-address-form__fields .form-row-first.form-row-last {
    grid-column: auto;
  }
}

@media (max-width: 767px) {

  .france-addresses__header,
  .france-address-edit__header,
  .france-address-form {
    padding: 22px 20px;
  }

  .france-address-card__head,
  .france-address-card__body,
  .france-address-card__foot {
    padding-left: 20px;
    padding-right: 20px;
  }

  .france-address-form__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .france-address-form__submit,
  .france-address-form__cancel {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 1199px) {
  .france-dashboard-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .france-dashboard-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .france-account-shell {
    grid-template-columns: 1fr;
  }

  body.france-account-page .woocommerce-MyAccount-navigation ul {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  body.france-account-page .site-main {
    padding: 32px 0 56px;
  }

  .france-dashboard-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }

  .france-dashboard-hero-art {
    width: 180px;
    align-self: center;
  }

  .france-dashboard-stats {
    grid-template-columns: 1fr;
  }

  .france-order-item {
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-areas:
      "thumb meta"
      "badge price";
  }

  .france-order-thumb {
    grid-area: thumb;
  }

  .france-order-meta {
    grid-area: meta;
  }

  .france-order-badge {
    grid-area: badge;
    justify-self: start;
  }

  .france-order-price {
    grid-area: price;
    justify-self: end;
  }

  .france-account-card--guest .france-account-main,
  .france-account-card--guest .france-account-aside {
    padding: 24px 20px;
  }
}

/* ============================================================
   CONTACT PAGE ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Figma 221:6409
   ============================================================ */

body.contact-page {
  background: #efefef;
}

body.contact-page main .container {
  max-width: 1440px;
  padding-left: clamp(16px, 6.94vw, 100px);
  padding-right: clamp(16px, 6.94vw, 100px);
}

.contact-section {
  padding: 48px 0;
  background: #efefef;
}

.contact-layout {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 27px;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 36px;
  flex: 0 1 auto;
  min-height: 513px;
  padding: 48px;
  border-radius: 24px;
  background: #fff;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}

.contact-info-block--location {
  gap: 12px;
}

.contact-info-block--email,
.contact-info-block--phone {
  gap: 24px;
}

.contact-info-icon {
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.contact-info-icon--location {
  width: 37.07px;
  height: 44.245px;
}

.contact-info-icon--email {
  width: 37px;
  height: 36px;
}

.contact-info-icon--phone {
  width: 37px;
  height: 37px;
}

.contact-info-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px;
}

.contact-info-text {
  margin: 0;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #333;
  white-space: nowrap;
}

.contact-info-divider {
  display: none;
}

.contact-form-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex: 0 0 704px;
  width: 704px;
  max-width: 100%;
  min-height: 513px;
  padding: 48px;
  border-radius: 24px;
  background: #fff;
}

.contact-form-head {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-form-title {
  margin: 0;
  padding: 8px 0;
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #000091;
}

.contact-form-desc {
  margin: 0;
  padding: 8px 0;
  max-width: 601px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #787878;
}

.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.contact-form-row {
  display: flex;
  gap: 11px;
  width: 100%;
}

.contact-form-row .contact-field--wide {
  flex: 0 0 346px;
  max-width: 346px;
}

.contact-form-row .contact-field--narrow {
  flex: 0 0 251px;
  max-width: 251px;
}

.contact-input,
.contact-textarea {
  width: 100%;
  border: 0.685px solid #e4e7e9;
  border-radius: 9.046px;
  background: #fff;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #1a1a1a;
  transition: border-color var(--transition);
}

.contact-input {
  height: 36px;
  padding: 0 10px;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #a5a5a5;
}

.contact-textarea {
  height: 123px;
  padding: 10px;
  resize: vertical;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: #3333a7;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 209px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background: #3333a7;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #fff;
  cursor: pointer;
  transition: background var(--transition);
}

.contact-submit:hover {
  background: #000091;
}

.contact-map-section {
  padding: 48px 8px 0;
  background: #efefef;
}

.contact-map-wrap {
  height: 400px;
  overflow: hidden;
}

.contact-map-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1199px) {
  .contact-layout {
    flex-direction: column;
    align-items: center;
  }

  .contact-form-card {
    flex: 1 1 auto;
    width: 100%;
  }

  .contact-form-row {
    flex-direction: column;
  }

  .contact-form-row .contact-field--wide,
  .contact-form-row .contact-field--narrow {
    flex: 1 1 auto;
    max-width: 100%;
  }
}

@media (max-width: 767px) {

  .contact-info-card,
  .contact-form-card {
    padding: 32px 24px;
    min-height: auto;
  }

  .contact-map-section {
    padding: 32px 0 0;
  }
}

/* =============================================
   REGISTRATION SUCCESS MODAL
   ============================================= */
body.france-reg-modal-open {
  overflow: hidden;
}

.france-reg-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.france-reg-modal[hidden] {
  display: none;
}

.france-reg-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 28, 31, 0.62);
  backdrop-filter: blur(6px);
  animation: franceRegOverlayIn 0.3s ease;
}

@keyframes franceRegOverlayIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.france-reg-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(51, 51, 167, 0.06),
    0 24px 48px rgba(25, 28, 31, 0.14),
    0 48px 96px rgba(51, 51, 167, 0.08);
  overflow: hidden;
  animation: franceRegModalIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes franceRegModalIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.france-reg-modal__accent {
  height: 4px;
  background: linear-gradient(90deg, #3333a7 0%, #000091 50%, #3333a7 100%);
}

.france-reg-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #e8e8f0;
  background: #fff;
  border-radius: 10px;
  color: #787878;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.france-reg-modal__close:hover {
  background: #f8f8fc;
  border-color: #d0d0de;
  color: #191c1f;
}

.france-reg-modal__body {
  padding: 36px 36px 24px;
  text-align: center;
}

.france-reg-modal__badge {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
}

.france-reg-modal__badge-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(51, 51, 167, 0.12) 0%, rgba(0, 0, 145, 0.06) 100%);
  animation: franceRegBadgePulse 2.4s ease-in-out infinite;
}

@keyframes franceRegBadgePulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.7;
  }
}

.france-reg-modal__badge-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: green;
  color: #fff;
  box-shadow: 0 8px 24px rgba(51, 51, 167, 0.32);
}

.france-reg-modal__eyebrow {
  margin: 0 0 6px;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3333a7;
}

.france-reg-modal__title {
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 700;
  color: #191c1f;
  margin: 0 0 10px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.france-reg-modal__message {
  font-size: 15px;
  line-height: 1.65;
  color: #787878;
  margin: 0 0 28px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.france-reg-modal__steps {
  text-align: left;
  margin-bottom: 20px;
  padding: 20px 22px;
  background: #f8f8fc;
  border: 1px solid #ededf5;
  border-radius: 14px;
}

.france-reg-modal__steps-title {
  margin: 0 0 16px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  color: #191c1f;
  letter-spacing: 0.01em;
}

.france-reg-modal__steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.france-reg-modal__steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.france-reg-modal__step-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #3333a7;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  color: #3333a7;
  line-height: 1;
}

.france-reg-modal__steps-list li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 3px;
}

.france-reg-modal__steps-list strong {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  color: #191c1f;
  line-height: 1.3;
}

.france-reg-modal__steps-list span {
  font-size: 13px;
  line-height: 1.5;
  color: #787878;
}

.france-reg-modal__info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 12px;
  text-align: left;
}

.france-reg-modal__info-icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: #3333a7;
}

.france-reg-modal__info p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #64648c;
}

.france-reg-modal__footer {
  padding: 0 36px 32px;
}

.france-reg-modal__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  background: #3333a7;
  color: #fff;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.france-reg-modal__btn img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}

.france-reg-modal__btn:hover {
  background: #000091;
  box-shadow: 0 8px 24px rgba(51, 51, 167, 0.35);
}

.france-reg-modal__btn:hover img {
  transform: translateX(3px);
}

.france-reg-modal__btn:active {
  transform: scale(0.98);
}

@media (max-width: 520px) {
  .france-reg-modal__body {
    padding: 28px 24px 20px;
  }

  .france-reg-modal__footer {
    padding: 0 24px 24px;
  }

  .france-reg-modal__title {
    font-size: 21px;
  }

  .france-reg-modal__steps {
    padding: 16px 18px;
  }
}

/* =============================================
   ABOUT PAGE ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â Figma 181:8454
   ============================================= */
@font-face {
  font-family: "Mayonice";
  src: url("../fonts/Mayonice.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body.about-page {
  background: #efefef;
}

body.about-page main .container {
  max-width: 1440px;
  padding-left: clamp(16px, 6.94vw, 100px);
  padding-right: clamp(16px, 6.94vw, 100px);
}

.about-page .cat-page-hero-img,
.inner-page .cat-page-hero-img {
  object-position: center 40%;
}

.about-intro-section {
  position: relative;
  background: #ffd6d6;
  padding: 48px 0;
  overflow: hidden;
}

/* Figma frame 268:6322 ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â decos sit on full section width, outside .container */
.about-intro-deco-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.about-intro-deco,
.about-intro-deco-group {
  position: absolute;
  pointer-events: none;
}

.about-intro-deco {
  display: block;
  height: auto;
  max-width: none;
  width: 105.981px;
  height: 105.399px;
}

/* Figma 279:13164 ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â large pepper (behind) */
.about-intro-deco--tl-lg {
  left: calc(135 / 1440 * 100%);
  top: -45px;
  width: auto;
  z-index: 1;
  transform: rotate(45deg);
}

/* Figma 279:13089 ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â small pepper slice (front) */
.about-intro-deco--tl-sm {
  left: calc(216 / 1440 * 100%);
  top: -36px;
  width: 149px;
  z-index: 2;
}

/* Figma 279:13267 ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â potatoes top-right */
.about-intro-deco--tr {
  right: calc(34 / 1440 * 100%);
  left: auto;
  top: 22px;
  width: 166px;
  z-index: 1;
  width: 166.174px;
  height: 111.427px;
}

/* Figma 279:13942 ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â mushrooms bottom-left (bleeds off edge) */
.about-intro-deco--bl {
  left: calc(-69 / 1440 * 100%);
  top: 396px;
  width: 245px;
  z-index: 1;
  width: 245.214px;
  height: 164.427px;
}

/* Figma 279:12908 ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â bottom-right group */
.about-intro-deco-group--br {
  right: calc(17 / 1440 * 100%);
  left: auto;
  top: 368px;
  width: 260px;
  height: 195px;
  z-index: 1;
}

/* Figma 279:12909 */
.about-intro-deco--br-pepper {
  left: 0;
  top: 0;
  width: 40.7434%;
}

/* Figma 279:12984 */
.about-intro-deco--br-shipping {
  left: 41.2434%;
  top: 3.4784%;
  width: 152.832px;
  height: 188.217px;
}

@media (min-width: 1440px) {
  .about-intro-deco--tl-lg {
    left: -59px;
    width: 152.832px;
    height: 188.217px;
    transform: rotate(135deg);
  }

  .about-intro-deco--tl-sm {
    left: 95px;
    width: 105.981px;
    height: 105.399px;
    transform: rotate(135deg);
  }

  .about-intro-deco--tr {
    right: 34px;
  }

  .about-intro-deco--bl {
    left: -69px;
  }

  .about-intro-deco-group--br {
    right: 17px;
  }
}

.about-intro-section .container {
  position: relative;
  z-index: 1;
}

.about-intro-inner {
  display: flex;
  align-items: center;
  gap: 53px;
  max-width: 1239px;
  margin: 0 auto;
}

.about-intro-photo-col {
  flex: 0 0 496px;
  width: 496px;
  min-height: 474px;
  display: flex;
  align-items: center;
  padding: 10px 0 10px 21px;
}

.about-intro-photo-wrap {
  flex-shrink: 0;
  width: 454px;
  height: 454px;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

/* AOS custom ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â equivalent to animate.css rotateInDownLeft */
[data-aos="rotate-in-down-left"] {
  opacity: 0;
  transform: rotate(-45deg);
  transform-origin: left bottom;
  transition-property: transform, opacity;
}

[data-aos="rotate-in-down-left"].aos-animate {
  opacity: 1;
  transform: rotate(0);
}

.about-intro-photo {
  position: absolute;
  left: 0.11%;
  top: 3.02%;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}

.about-intro-content {
  flex: 1;
  min-width: 0;
  max-width: 690px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-intro-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-intro-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #000091;
  margin: 0;
}

.about-intro-tagline {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #ed2839;
  margin: 0;
}

.about-intro-text>p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #1e1e1e;
  margin: 0;
  max-width: 690px;
}

.about-intro-text>p+p {
  margin-top: 0;
}

.about-intro-stats {
  display: flex;
  align-items: center;
  gap: 21px;
  width: 451px;
  max-width: 100%;
  flex-wrap: nowrap;
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  flex-shrink: 0;
  height: 136px;
  box-sizing: border-box;
}

.about-stat:nth-child(1) {
  width: 133px;
}

.about-stat:nth-child(2) {
  width: 135px;
}

.about-stat:nth-child(3) {
  width: 141px;
}

.about-stat-num {
  margin: 0;
  padding: 0;
  white-space: nowrap;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.about-stat-prefix,
.about-stat-num .odometer,
.about-stat-num .odometer.odometer-auto-theme {
  font-family: "Mayonice", "Kaushan Script", cursive !important;
  font-size: 76px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 1px;
  color: #ed2839;
}

.about-stat-prefix {
  display: inline-block;
  flex-shrink: 0;
}

.about-stat-num .odometer,
.about-stat-num .odometer.odometer-auto-theme {
  display: inline-block;
  vertical-align: middle;
}

.about-stat-label-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px 8px;
  box-sizing: border-box;
}

.about-stat-label {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #000091;
  margin: 0;
  padding: 0;
  text-align: center;
  white-space: nowrap;
}

.about-quality-section {
  position: relative;
  background: #fdf3d1;
  min-height: auto;
  padding: 48px 0;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.about-quality-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.about-quality-deco--melon {
  left: -56px;
  top: 10px;
  width: 164.154px;
  height: 161.679px;
  transform: rotate(-30.22deg);
}

.about-quality-deco--grape {
  right: -34px;
  bottom: 15px;
  width: 168.907px;
  height: 239.111px;
  transform: rotate(58.513deg);
}

.about-quality-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 100px;
  max-width: 1237px;
  margin: 0 auto;
}

.about-quality-content {
  flex: 0 0 527px;
  max-width: 527px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 37px;
  padding-top: 69px;
}

.about-section-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #000091;
  margin: 0;
}

.about-section-title--center {
  text-align: center;
}

.about-section-subtitle {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #08843b;
  margin: 0;
}

.about-section-subtitle--center {
  text-align: center;
}

.about-quality-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-quality-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-quality-text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #1e1e1e;
  margin: 0;
}

.about-quality-features {
  display: flex;
  align-items: flex-start;
  gap: 42px;
  flex-wrap: nowrap;
}

.about-quality-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  flex-shrink: 0;
}

.about-quality-feature:nth-child(1) {
  width: 114px;
}

.about-quality-feature:nth-child(2) {
  width: 86px;
}

.about-quality-feature:nth-child(3) {
  width: 103px;
}

.about-quality-feature:nth-child(4) {
  width: 83px;
}

.about-quality-feature-icon {
  width: auto;
  height: 42px;
  max-width: 42px;
  object-fit: contain;
  display: block;
}

.about-quality-feature-icon--shipping {
  height: 46px;
  max-width: 46px;
}

.about-quality-feature-icon--location {
  height: 44px;
  max-width: 37px;
}

.about-quality-feature-label {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #08843b;
  margin: 0;
}

.about-quality-gallery {
  flex: 0 0 611px;
  max-width: 611px;
  display: grid;
  grid-template-columns: repeat(2, 294.72px);
  gap: 20px 21px;
  justify-content: end;
}

.about-quality-img-wrap {
  width: 294.72px;
  height: 294.72px;
  border-radius: 45.59px;
  overflow: hidden;
  position: relative;
  background: #fff;
}

.about-quality-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-quality-img--2 {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0.3%;
  top: -0.14%;
  max-width: none;
}

.about-quality-img-wrap--offset-lg .about-quality-img--3 {
  position: absolute;
  width: 139%;
  height: 101%;
  left: -16%;
  top: -0.28%;
  max-width: none;
}

.about-commitment-section {
  position: relative;
  background: #cee6d8;
  min-height: 457px;
  padding: 48px 0;
  overflow: hidden;
}

.about-commitment-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  height: auto;
  width: 320.709px;
  height: 318.963px;
}

.about-commitment-deco--beet-left {
  left: 3%;
  top: 20%;
  width: 321px;
  transform: scaleX(-1);
}

.about-commitment-deco--beet-left-sm {
  left: 1%;
  bottom: 5%;
  width: 120px;
  transform: scaleX(-1);
  width: 151.265px;
  height: 144.156px;
}

.about-commitment-deco--beet-right {
  right: 4%;
  top: 20%;
  width: 321px;
}

.about-commitment-deco--beet-right-sm {
  right: 2%;
  bottom: 5%;
  width: 120px;
  width: 151.265px;
  height: 144.156px;
}

.about-commitment-head {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 541px;
  margin: 0 auto 46px;
}

.about-commitment-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #1e1e1e;
  text-align: center;
  margin: 0;
  max-width: 440px;
}

.about-commitment-features {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 76px;
  flex-wrap: wrap;
}

.about-commitment-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.about-commitment-feature-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.about-commitment-feature-icon--handshake {
  width: 41px;
  height: 42px;
}

.about-commitment-feature-label {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #08843b;
  margin: 0;
}

.about-page .partners-section {
  display: none;
}

/* Partners ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â Figma 285:15777 */
.about-partners-section {
  position: relative;
  overflow: visible;
  background: #fdf3d1;
  padding: 48px 0;
}

.about-partners-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 525px) minmax(0, 1fr);
  gap: clamp(1.5rem, 3.5vw, 4.5rem);
  align-items: end;
}

.about-partners-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  max-width: 525px;
  overflow: visible;
}

.about-partners-figure {
  width: 100%;
  width: 777px;
  position: absolute;
  right: 100px;
  z-index: 9;
  bottom: 0;
  margin: 0;
}

.about-partners-figure img {
  display: block;
  width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-partners-section-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  height: auto;
}

.about-partners-section-deco--veggie-left {
  left: max(-2rem, calc(50% - 50vw));
  top: 1%;
  width: min(246px, 17vw);
  opacity: 0.85;
}

.about-partners-section-deco--veggie-right {
  right: calc(50% - 50vw - 80px);
  top: 20%;
  width: min(331px, 23vw);
  opacity: 0.85;
}

.about-partners-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  padding: 8px 0;
  width: 100%;
  max-width: 334px;
}

.about-partners-title {
  margin: 0;
  font-family: var(--font-main);
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  color: #000091;
  position: relative;
}

h2.about-partners-title {}

.about-partners-underline {
  display: block;
  width: 115px;
  height: 7px;
  flex-shrink: 0;
}

.about-partners-grid {
  display: grid;
  grid-template-columns: 119.607px 118.248px 118.248px 118.248px;
  gap: 16.31px;
  width: 100%;
  max-width: 523px;
  padding: 8px 8px 8px 0;
  box-sizing: border-box;
}

.about-partner-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 80.191px;
  padding: 16.31px;
  border: 1.359px solid #a5a5a5;
  border-radius: 21.747px;
  background: transparent;
}

.about-partner-logo-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 47.57px;
  object-fit: contain;
}

.about-partners-deco {
  position: absolute;
  left: max(-6rem, calc(50% - 50vw));
  bottom: 0;
  width: 158px;
  height: auto;
  pointer-events: none;
  z-index: 1;
}

/* Testimonials ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â Figma 285:15778 */
.about-testimonials-section {
  background: #e6f4ea;
  padding: 48px 0 64px;
}

.about-testimonials-section .about-testimonials-title-wrap {
  text-align: left;
  margin: 0 0 12px;
  padding-top: 8px;
}

.about-testimonials-section .partners-title {
  display: block;
  white-space: normal;
  padding-bottom: 0;
}

.about-testimonials-section .partners-title::after {
  width: 115px;
  background: linear-gradient(to right,
      #ed2839 0%,
      #ed2839 33.91%,
      #000091 33.91%,
      #000091 100%);
}

.about-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10.39px;
  width: 100%;
  max-width: 525px;
}

.about-testimonials-layout {
  display: contents;
}

.about-testimonials-figure {
  display: none;
}

.about-testimonial-card {
  background: #fff;
  border-radius: 9.56px;
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  box-shadow: 0 3.98px 3.98px rgba(0, 0, 0, 0.01);
  width: 100%;
  box-sizing: border-box;
}

.about-testimonial-quote {
  width: 12.75px;
  height: 10.36px;
  display: block;
  flex-shrink: 0;
}

.about-testimonial-text {
  font-family: var(--font-main);
  font-size: 10.5px;
  font-weight: 400;
  line-height: 1.45;
  color: #4d4d4d;
  margin: 0;
  flex: 1;
}

.about-testimonial-client {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  min-height: 25.5px;
}

.about-testimonial-reviewer {
  display: flex;
  align-items: center;
  gap: 4.78px;
  min-width: 0;
}

.about-testimonial-avatar {
  width: 22.31px;
  height: 22.31px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.about-testimonial-name {
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  color: #1e1e1e;
  margin: 0;
}

.about-testimonial-role {
  font-family: var(--font-main);
  font-size: 8px;
  font-weight: 400;
  line-height: 1;
  color: #666;
  margin: 0;
}

.about-testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-testimonial-stars {
  display: flex;
  align-items: center;
  gap: 0.4px;
  flex-shrink: 0;
}

.about-testimonial-stars img {
  width: 7.97px;
  height: 7.97px;
  display: block;
}

@media (max-width: 1199px) {
  .about-intro-inner {
    gap: 40px;
  }

  .about-intro-photo-col {
    flex: 0 0 auto;
    width: auto;
    min-height: auto;
    padding: 0;
  }

  .about-intro-photo-wrap {
    width: 380px;
    height: 380px;
  }

  .about-intro-title {
    font-size: 44px;
    line-height: 52px;
  }

  .about-quality-inner {
    gap: 48px;
    flex-wrap: wrap;
  }

  .about-quality-content {
    flex: 1 1 100%;
    max-width: 100%;
    padding-top: 0;
  }

  .about-quality-gallery {
    flex: 1 1 100%;
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
  }

  .about-quality-img-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .about-quality-features {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .about-intro-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-intro-photo-col {
    justify-content: center;
    padding: 0;
  }

  .about-intro-content {
    align-items: center;
  }

  .about-intro-stats {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    row-gap: 16px;
  }

  .about-quality-inner {
    flex-direction: column;
  }

  .about-quality-deco {
    opacity: 0.35;
  }

  .about-commitment-deco {
    opacity: 0.25;
  }

  .about-commitment-deco--beet-left,
  .about-commitment-deco--beet-right {
    width: 220px;
  }

  .about-testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-partners-layout {
    grid-template-columns: 1fr;
  }

  .about-partners-figure {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    margin-top: 0;
    max-width: 420px;
    order: -1;
  }

  .about-partners-content {
    max-width: 100%;
  }

  .about-partners-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 100%;
    padding-right: 0;
  }

  .about-partner-logo-card {
    height: auto;
    min-height: 72px;
    padding: 12px;
  }
}

@media (max-width: 767px) {

  .about-intro-section,
  .about-quality-section,
  .about-commitment-section,
  .about-partners-section,
  .about-testimonials-section {
    padding-block: 32px;
  }

  .about-partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 8px 0;
  }

  .about-partners-deco {
    width: 120px;
  }

  .about-intro-photo-col {
    padding: 0;
  }

  .about-intro-photo-wrap {
    width: min(100%, 320px);
    height: min(100%, 320px);
  }

  .about-stat:nth-child(1),
  .about-stat:nth-child(2),
  .about-stat:nth-child(3) {
    width: auto;
    height: auto;
    min-height: 0;
  }

  .about-intro-title,
  .about-section-title {
    font-size: 32px;
    line-height: 40px;
  }

  .about-intro-tagline,
  .about-section-subtitle {
    font-size: 20px;
    line-height: 28px;
  }

  .about-stat-num {
    height: 62px;
  }

  .about-stat-prefix,
  .about-stat-num .odometer,
  .about-stat-num .odometer.odometer-auto-theme {
    font-size: 56px;
  }

  .about-quality-features,
  .about-commitment-features {
    gap: 24px;
    justify-content: center;
  }

  .about-quality-gallery {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .about-partners-section-deco {
    opacity: 0.35;
  }

  .about-testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .about-testimonial-card {
    width: 100%;
  }

  .about-testimonial-text {
    font-size: 12px;
  }

  .about-testimonial-name {
    font-size: 12px;
  }

  .about-testimonial-role {
    font-size: 10px;
  }

  .about-testimonial-avatar {
    width: 32px;
    height: 32px;
  }

  .about-testimonial-stars img {
    width: 12px;
    height: 12px;
  }

  .about-partners-section-deco {
    display: none;
  }

  .about-commitment-deco {
    display: none;
  }

  .about-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.about-duo-section {
  position: relative;
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
}