@import url("reset.css");
/* @import url("fonts.css"); */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

/* VARIABLES */
:root {
  /* COLORS */
  --color-background: #fff;
  --color-bg-secondary: #f4f7f9;
  --color-white: #fff;
  --color-black: #1c1b1b;
  --color-dark-blue: #001a33;
  --text-color: #657078;
  --link-color: #52baf0;
  --light-blue: #f4f7f9;
  --light-gray-1: #f2f2f2;
  --light-gray-2: #e1e4e6;
  --primary-green: #42b883;

  /* BORDER RADIUS */
  --border-radius-8: 12px;
  --border-radius-12: 12px;
  --border-radius-24: 24px;
  --border-radius-32: 32px;
  --border-rounded: 100%;

  /* LINE HEIGHT */
  --line-height-115: 115%;
  --line-height-135: 135%;
  --line-height-150: 150%;
  --line-height-175: 175%;
  --line-height-200: 200%;

  /* TRANSITIONS */
  --transition-base: 0.3s ease-in-out;

  /* GREENS */
  --color-green-dark: #297050;
  --color-success: #198754;
  --color-green-medium: #27925f;
  --color-green-bright: #2ecc71;
  --color-green-hover: #36966b;
  --color-green-tint: #d8f3e6;
  --color-green-tint-2: #ebf7f0;
  --color-green-deepest: #16281f;

  /* REDS / DANGER */
  --color-danger: #c82333;
  --color-red-accent: #e74c3c;
  --color-red-bright: #ff4d4f;
  --color-status-cancelled: #ef4444;
  --color-status-hot: #e53935;
  --color-red-light: #ff8080;

  /* BLUES */
  --color-focus-blue: #0d6efd;
  --color-blue-dark: #0556c1;
  --color-status-new: #2196f3;
  --color-status-processing: #3b82f6;
  --color-blue-accent: #5a99d4;

  /* WARM (status) */
  --color-status-best: #ff9800;
  --color-status-pending: #f59e0b;
  --color-status-completed: #22c55e;

  /* DARK NEUTRALS */
  --pure-black: #000;
  --color-heading-dark: #181d25;
  --color-icon-dark: #253d4e;
  --color-text-strong: #212529;

  /* GRAY SCALE (lightest -> darkest) */
  --gray-005: #f8f9fa;
  --gray-010: #f7f7f7;
  --gray-015: #f5f7fa;
  --gray-020: #f3f4f6;
  --gray-025: #f1f1f1;
  --gray-030: #eee;
  --gray-035: #e6e9ec;
  --gray-040: #e5e7eb;
  --gray-045: #e6e6e6;
  --gray-050: #e5e5e5;
  --gray-055: #ddd;
  --gray-060: #d9d9d9;
  --gray-065: #d1d5db;
  --gray-070: #ced4da;
  --gray-075: #ccc;
  --gray-080: #cccccc;
  --gray-085: #bfbfbf;
  --gray-090: #bbb;
  --gray-095: #9ca3af;
  --gray-100: #999;
  --gray-105: #8c8c8c;
  --gray-110: #888;
  --gray-115: #777;
  --gray-120: #6c757d;
  --gray-125: #6b7280;
  --gray-130: #595959;
  --gray-135: #495057;
  --gray-140: #333333;

  /* RGB TRIPLETS (for rgba() usage) */
  --shadow-rgb: 0, 0, 0;
  --color-white-rgb: 255, 255, 255;
  --primary-green-rgb: 66, 184, 131;
  --color-focus-blue-rgb: 13, 110, 253;
  --light-gray-1-rgb: 242, 242, 242;
  --color-pulse-green-rgb: 68, 187, 133;
  --color-blue-accent-rgb: 90, 153, 212;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "DM Sans", sans-serif;
  background-color: var(--color-background);
}

._lock {
  overflow: hidden;
}

.site-wrapper {
  min-height: 100vh;
}

.container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.account-page,
.pod-gallery-row {
  --bs-gutter-x: 1.5rem;
}

.container-max {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

.page-dark-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(var(--shadow-rgb), 0.5);
  transition: all var(--transition-base);
  visibility: hidden;
  opacity: 0;
  z-index: 1000;
}

.page-dark-overlay._active {
  visibility: visible;
  opacity: 1;
}

.ds-none {
  display: none !important;
}

/***** Header *****/

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 1001;
  background: var(--color-white);
  transition: all var(--transition-base);
  box-shadow:
    0 6px 20px rgba(var(--shadow-rgb), 0.06),
    0 1px 0 rgba(var(--shadow-rgb), 0.04);
}

header._behind-overlay {
  z-index: 999;
}

.pre-header {
  padding: 10px 35px;
  width: 100%;
  /* background-color: var(--primary-green); */
  border: 1px solid var(--light-gray-1);
}

.pre-header span {
  height: 100%;
  width: 1px;
  background-color: var(--gray-045);
  /* border: 1px solid red; */
}

.pre-header a {
  color: var(--text-color);
  font-weight: 300;
  font-size: 14px;
  /* color: var(--color-white);
  text-decoration: underline; */
}

.pre-header a.message {
  color: var(--primary-green);
  font-weight: 500;
  text-decoration: underline;
}

.header-row {
  gap: 110px;
  padding: 5px 35px;
  height: 80px;
}

.header-row .header-logo {
  max-width: 175px;
  width: 100%;
  height: auto;
}

.navigation-bar {
  width: 100%;
}

.menu-links {
  gap: 40px;
}

.menu-links li {
  position: relative;
}

.hd-drop-link {
  position: relative;
}

/* submenu */
.hd-drop-link .sub-menu {
  position: absolute;
  top: 110%;
  left: -25%;
  min-width: 80px;

  background: var(--color-white);
  border-radius: 8px;
  padding: 6px 0;
  box-shadow:
    0 12px 24px rgba(var(--shadow-rgb), 0.18),
    0 6px 12px rgba(var(--shadow-rgb), 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-base);
  z-index: 1000;
}

/* show dropdown */
.hd-drop-link:hover .sub-menu,
.hd-drop-link:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* submenu links */
.sub-menu li a {
  position: relative;
  padding: 5px 14px;
  display: block;
  color: var(--color-black);
  text-decoration: none;
  font-size: 14px;
}

.sub-menu li a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 1px;
  background: var(--primary-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.sub-menu li a:hover {
  color: var(--primary-green);
}

.sub-menu li a:hover::after {
  transform: scaleX(1);
}

/* "back to menu" row shown only inside the Shop sub-menu once it becomes
   its own off-canvas panel on mobile/tablet (see responsive.css). Needs
   !important: the <li> also carries Bootstrap's .d-flex utility, whose
   own !important would otherwise force it visible at every width. */
.sub-menu-back {
  display: none !important;
}

/* mobile-only phone/email quick actions at the bottom of the off-canvas
   nav panel; hidden by .ds-none on desktop, shown in responsive.css once
   the panel becomes a slide-in menu (see .navigation-bar in responsive.css) */
.mobile-contact-btns {
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 320px;
  margin-top: 24px;
}

.mobile-contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--gray-055);
  border-radius: 10px;
  background: var(--color-white);
  color: var(--color-dark-blue);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition-base);
}

.mobile-contact-btn i {
  font-size: 16px;
  color: var(--primary-green);
}

.mobile-contact-btn:hover {
  background: var(--gray-025);
  border-color: var(--primary-green);
}

/* rotate arrow */
.hd-drop-link:hover .hd-drop-smb {
  transform: rotate(180deg);
}

.hd-drop-smb {
  margin-left: 6px;
  transition: all var(--transition-base);
}

.menu-links a,
.menu-links .main-nv-ln {
  gap: 10px;
  color: var(--color-black);
  font-weight: 500;
  font-size: 17px;
  line-height: var(--line-height-150);
  text-transform: capitalize;
  cursor: pointer;
  transition: all var(--transition-base);
}

.main-nv-ln:hover {
  color: var(--primary-green);
}

.hd-drop-smb._active {
  transform: rotate(180deg);
  color: var(--primary-green);
}

.header-contacts {
  flex: 1;
  gap: 40px;
  cursor: pointer;
  align-items: center !important;
  justify-content: end;
}

.header-icons {
  gap: 40px;
}

.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  transition: opacity var(--transition-base);
}

.search-btn i {
  font-size: 28px;
  color: var(--color-green-dark);
}

.search-btn:hover {
  opacity: 0.9;
}

/***** SEARCH MODAL *****/
.search-modal .modal-dialog {
  max-width: 700px;
  width: calc(100% - 32px);
  margin: 4vh auto;
}

.search-modal .modal-content {
  border: none;
  border-radius: var(--border-radius-12);
  overflow: hidden;
}

.search-modal .modal-header {
  border-bottom: none;
  align-items: flex-start;
  padding: 24px 24px 0 24px;
}

.search-modal .modal-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-black);
}

.search-modal-subtitle {
  color: var(--gray-090);
  font-size: 14px;
  margin: 4px 0 0 0;
}

.search-modal .btn-close {
  width: 36px;
  height: 36px;
  border-radius: var(--border-rounded);
  background-color: var(--gray-015);
  background-size: 14px;
  opacity: 1;
}

.search-modal .modal-body {
  padding: 16px 24px 24px 24px;
  position: static;
  bottom: auto;
  visibility: visible;
  opacity: 1;
  transition: none;
}

.search-modal-input-wrapper {
  position: relative;
  margin-bottom: 16px;
}

.search-modal-input-wrapper i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--primary-green);
}

.search-modal-input-wrapper input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border-radius: var(--border-radius-12);
  border: 1px solid var(--gray-060);
  outline: none;
  font-size: 15px;
  transition: border-color var(--transition-base);
}

.search-modal-input-wrapper input:focus {
  border-color: var(--primary-green);
}

.search-modal-results {
  max-height: 55vh;
  overflow-y: auto;
}

.search-modal-category {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--primary-green);
  padding: 12px 4px 8px 4px;
  border-bottom: 1px solid var(--gray-025);
  margin-bottom: 8px;
}

.search-modal-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 8px;
  border-radius: var(--border-radius-8);
  text-decoration: none;
  color: var(--color-black);
  transition: background-color var(--transition-base);
}

.search-modal-item:hover {
  background-color: var(--gray-015);
}

.search-modal-item img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: var(--border-radius-8);
  flex-shrink: 0;
}

.search-modal-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.search-modal-item-info strong {
  font-size: 15px;
  font-weight: 600;
}

.search-modal-item-info span {
  font-size: 13px;
  color: var(--gray-090);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-modal-item-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-green);
  flex-shrink: 0;
}

.search-modal-empty {
  text-align: center;
  padding: 40px 0;
  color: var(--gray-090);
  font-size: 15px;
}

body.modal-open {
  padding-right: 0 !important;
  padding-left: 0 !important;
  overflow: hidden !important;
}

/***** End SEARCH MODAL *****/

/***** LOGOUT CONFIRM MODAL *****/

.logout-confirm-modal .modal-content {
  border: none;
  border-radius: var(--border-radius-12);
}

.logout-confirm-modal .modal-body {
  padding: 36px 28px 28px;
  position: static;
  bottom: auto;
  visibility: visible;
  opacity: 1;
  transition: none;
}

.logout-confirm-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-rounded);
  background-color: rgba(var(--primary-green-rgb), 0.12);
}

.logout-confirm-icon i {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-green);
}

.logout-confirm-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 8px;
}

.logout-confirm-text {
  font-size: 14px;
  color: var(--gray-090);
  margin-bottom: 24px;
}

.logout-confirm-actions .btn {
  padding: 11px 0;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  transition: all var(--transition-base);
}

.logout-confirm-actions .logout-cancel-btn {
  border: 1px solid var(--gray-055);
  background-color: var(--color-white);
  color: var(--color-dark-blue);
}

.logout-confirm-actions .logout-cancel-btn:hover {
  background-color: var(--gray-025);
}

.logout-confirm-actions .logout-confirm-btn {
  border: 1px solid var(--color-red-accent);
  background-color: var(--color-red-accent);
  color: var(--color-white);
}

.logout-confirm-actions .logout-confirm-btn:hover {
  background-color: var(--color-white);
  color: var(--color-red-accent);
}

/***** End LOGOUT CONFIRM MODAL *****/

.contact-wrapper {
  gap: 0px;
}

.contact-wrapper span {
  font-size: 15px;
  line-height: var(--line-height-150);
  color: var(--color-black);
  font-weight: 500;
  transition: all var(--transition-base);
}

.contact-wrapper i {
  font-size: 18px;
  color: var(--primary-green);
  padding: 12px;
  position: relative;
  transition: all var(--transition-base);
  background-color: transparent;
}

.contact-wrapper:hover span {
  color: var(--primary-green);
}

.header-shop-icon {
  position: relative;
}

.header-shop-icon i {
  font-size: 28px;
  color: var(--color-green-dark);
}

.header-shop-icon span {
  font-size: 16px;
  color: var(--color-green-dark);
  text-transform: capitalize;
}

.header-shop-icon span.counter {
  position: absolute;
  top: -6px;
  right: -8px;
  padding: 3px;
  font-size: 11px;
  border-radius: var(--border-rounded);
  color: var(--color-white);
  background-color: var(--primary-green);
  width: 18px;
  height: 18px;
}

.account-drop {
  position: relative;
}

.account-drop .sub-menu.account-menu {
  left: auto;
  right: 0;
  min-width: 220px;
  padding: 10px 0;
}

.account-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  font-size: 16px;
  white-space: nowrap;
}

.account-menu li a i {
  font-size: 20px;
  color: var(--color-green-dark);
}

.get-quote {
  color: var(--color-white);
  background-color: var(--primary-green);
  padding: 16px 50px;
  font-size: 15px;
  border-radius: var(--border-radius-24);
  font-weight: 500;
  transition: all var(--transition-base);
}

.get-quote:hover {
  animation: pulse-animation 1.5s infinite;
}

.menu-icon {
  z-index: 5;
  display: block;
  position: relative;
  width: 30px;
  height: 18px;
  cursor: pointer;
  margin-left: 5px;
  display: none;
}

.menu-icon span,
.menu-icon::before,
.menu-icon::after {
  left: 0;
  position: absolute;
  height: 10%;
  width: 100%;
  transition: all var(--transition-base);
  background-color: var(--primary-green);
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  transform: perspective(1px) scale(1) translate3d(0, 0, 0);
}

.menu-icon::before {
  top: 0;
}

.menu-icon::after {
  bottom: 0;
}

.menu-icon span {
  top: 50%;
  transform: perspective(1px) scale(1) translate(0px, -50%) translate3d(0, 0, 0);
}

.menu-icon._active span {
  transform: scale(0) translate(0px, -50%);
}

.menu-icon._active::before {
  top: 50%;
  transform: rotate(-45deg) translate(0px, -50%);
}

.menu-icon._active::after {
  bottom: 50%;
  transform: rotate(45deg) translate(0px, 50%);
}

/***** End Header *****/

/***** CART *****/
/***** STEPS *****/
.checkout-steps.small {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 24px;
}

/* BACK LINE */
.checkout-steps.small::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  /* half circle width */
  right: 16px;
  /* half circle width */
  height: 2px;
  background: var(--gray-040);
  z-index: 0;
}

/* PROGRESS LINE */
.checkout-steps.small::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  /* half circle width */
  height: 2px;
  background: var(--primary-green);
  width: var(--progress, 0%);
  transition: width var(--transition-base);
  z-index: 0;
}

/* STEP */
.checkout-steps.small .step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 50px;
}

/* CIRCLE */
.checkout-steps.small .step-index {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--gray-065);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-125);
  transition: all var(--transition-base);
}

/* LABEL */
.checkout-steps.small .step-label {
  font-size: 12px;
  color: var(--gray-125);
}

/* DONE */
.checkout-steps.small .step._done .step-index {
  background: var(--color-success);
  border-color: var(--color-success);
  color: var(--color-white);
}

.checkout-steps.small .step._done .step-label {
  color: var(--color-success);
}

/* ACTIVE */
.checkout-steps.small .step._active .step-index {
  border-color: var(--primary-green);
  color: var(--primary-green);
  box-shadow: 0 0 0 6px rgba(var(--color-focus-blue-rgb), 0.15);
}

.checkout-steps.small .step._active .step-label {
  color: var(--primary-green);
  font-weight: 600;
}

/***** End STEPS *****/

/***** added cart modal *****/
/* ===== Overlay ===== */
.added-to-cart-overlay {
  position: fixed;
  transition: all var(--transition-base);
  opacity: 0;
  visibility: hidden;
  inset: 0;
  background: rgba(var(--shadow-rgb), 0.45);
  z-index: 1055;
  backdrop-filter: blur(2px);
}

.added-to-cart-overlay._active {
  opacity: 1;
  visibility: visible;
}

/* ===== Popup box ===== */
.added-to-cart-box {
  width: 460px;
  max-width: calc(100% - 32px);
  border-radius: 16px;
  animation: cartPopupIn 0.25s ease;
}

.added-to-cart-box .added-header {
  margin-bottom: 18px;
  border-bottom: 1px solid var(--gray-045);
  padding-bottom: 15px;
}

.added-to-cart-box h6 {
  font-size: 16px;
  color: var(--color-black);
  font-weight: 500;
  line-height: var(--line-height-135);
  transition: all var(--transition-base);
}

.added-to-cart-box h6:hover {
  color: var(--primary-green);
}

/* ===== Animation ===== */
@keyframes cartPopupIn {
  from {
    transform: scale(0.92) translateY(10px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* ===== Product image ===== */
.added-to-cart-box img {
  width: 125px;
  height: 125px;
  object-fit: cover;
}

.added-to-cart-box .qty {
  font-size: 14px;
  font-weight: 500;
}

.modal-added-img-wr .badge-discount {
  position: absolute;
  top: -2px !important;
  left: 5px;
  color: var(--color-white) !important;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
}

/* ===== Close button hover ===== */
.added-to-cart-box .btn-close {
  opacity: 0.6;
  transition: opacity var(--transition-base);
}

.added-to-cart-box .btn-close:hover {
  opacity: 1;
}

/* ===== Buttons spacing ===== */

.added-to-cart-box .added-actions button,
.added-to-cart-box .added-actions a {
  font-size: 16px;
  padding: 15px 10px;
  width: 50%;
  border-radius: 4px;
  transition: all var(--transition-base);
  font-weight: 400;
}

.added-to-cart-box .added-actions button {
  border: none;
  background-color: var(--gray-045);
}

.added-to-cart-box .added-actions a {
  background-color: var(--primary-green);
  color: var(--color-white);
}

.added-to-cart-box .added-actions a:hover {
  background-color: var(--color-green-dark);
}

.added-to-cart-box .added-actions button:hover {
  background-color: var(--gray-130);
  color: var(--color-white);
}

/***** End added cart modal *****/

/***** promo image modal (Bootstrap modal) *****/

.promo-image-modal {
  padding-right: 0 !important;
}

.promo-image-modal .modal-dialog {
  width: fit-content;
  max-width: calc(100vw - 24px);
  max-height: calc(100vh - 24px);
}

.promo-image-modal .modal-content {
  position: relative;
  width: auto;
  max-width: calc(100vw - 24px);
  max-height: calc(100vh - 200px);
  border: none;
  border-radius: var(--border-radius-24);
  overflow: hidden;
}

.promo-image-modal .modal-body {
  padding: 0;
  line-height: 0;
  display: flex;
  max-height: calc(100vh - 24px);
}

.promo-image-modal .modal-body img {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100vw - 24px);
  max-height: calc(100vh - 24px);
  object-fit: contain;
}

.promo-image-modal .btn-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: var(--border-rounded);
  background-color: rgba(255, 255, 255, 0.9);
  background-size: 13px;
  opacity: 1;
  z-index: 2;
  transition: background-color var(--transition-base);
}

.promo-image-modal .btn-close:hover {
  background-color: var(--color-white);
}

/***** End promo image modal *****/

/***** promo concept modals (design demos) *****/
.promo-demo-section {
  padding: 32px 0 0;
}

.promo-demo-section h6 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-black);
}

.promo-demo-section p {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--gray-090);
}

.promo-demo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.promo-demo-btn {
  border: 1px solid var(--color-green-tint);
  background: var(--color-white);
  color: var(--color-black);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: var(--border-rounded);
  cursor: pointer;
  transition: all var(--transition-base);
}

.promo-demo-btn:hover {
  border-color: var(--primary-green);
  color: var(--color-green-dark);
  background: var(--color-green-tint-2);
}

/* ===== shared concept-modal chrome ===== */

.promo-concept-modal .modal-content {
  position: relative;
  border: none;
  border-radius: var(--border-radius-32);
  animation: cartPopupIn 0.25s ease;
  color: var(--color-black);
}

.promo-concept-modal .modal-body {
  padding: 32px 30px 30px;
}

.promo-letter-modal .modal-content {
  background: var(--color-green-tint-2);
}

.promo-arrival-modal .modal-content {
  flex-direction: row;
  overflow: hidden;
}

.promo-arrival-modal .modal-body {
  padding: 0;
  display: contents;
}

.promo-season-modal .modal-dialog {
  max-width: 620px;
}

.promo-season-modal .modal-content {
  flex-direction: row;
  overflow: hidden;
}

.promo-season-modal .modal-body {
  padding: 0;
  display: contents;
}

.promo-concept-modal .btn-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: var(--border-rounded);
  background-color: var(--color-green-tint-2);
  background-size: 12px;
  opacity: 1;
  z-index: 2;
  transition: background-color var(--transition-base);
}

.promo-concept-modal .btn-close:hover {
  background-color: var(--color-green-tint);
}

.promo-concept-modal .m-eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-green-dark);
  margin: 0 0 10px;
}

.promo-concept-modal .m-title {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.promo-concept-modal .m-body {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-090);
}

.promo-concept-modal .m-cta {
  width: 100%;
  border: none;
  border-radius: 999px;
  background: var(--primary-green);
  color: var(--color-white);
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 700;
  padding: 13px 20px;
  cursor: pointer;
  transition: background var(--transition-base);
}

.promo-concept-modal .m-cta:hover {
  background: var(--color-green-hover);
}

.promo-concept-modal .m-cta.ghost {
  background: none;
  border: 1.5px solid var(--gray-060);
  color: var(--color-black);
}

.promo-concept-modal .m-cta.ghost:hover {
  background: var(--color-green-tint-2);
  border-color: var(--primary-green);
}

.promo-concept-modal .m-skip {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--gray-090);
  background: none;
  border: none;
  width: 100%;
  font-family: inherit;
  cursor: pointer;
}

.promo-concept-modal .m-skip:hover {
  color: var(--color-green-dark);
}

.promo-concept-modal .m-field {
  width: 100%;
  border: 1.5px solid var(--color-green-tint);
  border-radius: var(--border-radius-12);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--color-black);
  background: var(--color-white);
}

.promo-concept-modal .m-field:focus {
  outline: none;
  border-color: var(--primary-green);
}

.promo-concept-modal .m-fine {
  font-size: 11.5px;
  color: var(--gray-090);
  text-align: center;
  margin: 10px 0 0;
  line-height: 1.5;
}

.promo-concept-modal .m-center {
  text-align: center;
}

.promo-concept-modal {
  padding-right: 0 !important;
}

/* --- welcome offer badge --- */
.promo-badge-ring {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--color-green-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto 18px;
}

.promo-badge-ring b {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-green-dark);
  line-height: 1;
}

.promo-badge-ring span {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-green-dark);
  text-transform: uppercase;
  margin-top: 2px;
}

/* --- free shipping progress --- */
.promo-ship-row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: var(--color-green-dark);
}

.promo-ship-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: var(--color-green-tint-2);
  overflow: hidden;
  margin-bottom: 8px;
}

.promo-ship-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-green-dark), var(--primary-green));
  width: 71%;
}

.promo-ship-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray-090);
  font-variant-numeric: tabular-nums;
  margin-bottom: 20px;
}

.promo-ship-meta strong {
  color: var(--color-green-dark);
  font-weight: 700;
}

/* --- seasonal sale countdown --- */
.promo-season-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-020);
  color: #8a5a1f;
  border-radius: 999px;
  padding: 4px 10px 4px 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.promo-season-flag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c98a3e;
  flex-shrink: 0;
}

.promo-cd-row {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.promo-cd-cell {
  flex: 1;
  background: var(--color-green-tint-2);
  border: 1px solid var(--color-green-tint);
  border-radius: var(--border-radius-12);
  padding: 10px 4px;
  text-align: center;
}

.promo-cd-cell b {
  display: block;
  font-size: 21px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--color-green-dark);
}

.promo-cd-cell span {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray-090);
  margin-top: 3px;
}

/* --- exit-intent cart save --- */
.promo-cart-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.promo-cart-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-090);
}

.promo-cart-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-green);
  flex-shrink: 0;
}

.promo-code-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gray-020);
  border: 1px dashed #c98a3e;
  border-radius: var(--border-radius-12);
  padding: 10px 14px;
  margin-bottom: 18px;
  font-size: 13px;
  color: #6b4a1c;
}

.promo-code-chip b {
  letter-spacing: 0.06em;
  color: #8a5a1f;
}

/* --- new arrival --- */
.promo-arrival-media {
  width: 42%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 10px;
}

.promo-arrival-media img {
  width: 100%;
  object-fit: cover;
  height: auto;
  display: block;
}

.promo-arrival-copy {
  padding: 26px 26px 20px;
  display: flex;
  flex-direction: column;
}

.promo-arrival-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-green-dark);
  margin: 4px 0 16px;
  font-variant-numeric: tabular-nums;
}

/* --- harvest season, image on the left, full modal height --- */
.promo-season-media {
  width: 42%;
  min-width: 50%;
  flex-shrink: 0;
  align-self: stretch;
}

.promo-season-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.promo-season-copy {
  flex: 1;
  min-width: 0;
  padding: 32px 30px 30px;
}

/* --- newsletter --- */
.promo-sprig {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--color-green-dark);
}

.promo-m-italic i {
  font-style: italic;
  font-weight: 700;
  color: var(--color-green-dark);
}

/***** End promo concept modals *****/

/***** CHECKOUT PAGE *****/

.checkout-form .row label.form-label {
  font-size: 14px;
}

/***** End CHECKOUT PAGE *****/

/***** SAVED ADDRESS CARDS *****/

.address-card {
  position: relative;
  height: 100%;
  padding: 20px;
  border: 1px solid var(--gray-060);
  border-radius: var(--border-radius-12);
}

.address-card.default {
  border-color: var(--primary-green);
}

.address-card-header {
  gap: 10px;
  margin-bottom: 20px;
}

.address-card-header h4 {
  margin-bottom: 0;
}

.address-card .badge-default {
  flex: none;
  padding: 6px 14px;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-white);
  background-color: var(--primary-green);
  cursor: pointer;
  transition: all var(--transition-base);
}

.address-card .badge-default:hover {
  background-color: var(--color-success);
}

.address-card h4 {
  font-size: 16px;
  font-weight: 600;
}

.address-card p {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 2px;
}

.address-card .address-actions {
  gap: 15px;
  margin-top: 15px;
}

.address-card .address-actions i {
  font-size: 16px;
  color: var(--gray-100);
  cursor: pointer;
  transition: color var(--transition-base);
}

.address-card .address-actions i:hover {
  color: var(--primary-green);
}

.address-card .address-actions i.bi-trash:hover {
  color: var(--color-red-accent);
}

/***** End SAVED ADDRESS CARDS *****/

/***** HELP CENTER *****/

.help-accordion .accordion-item {
  border: 1px solid var(--gray-060);
  border-radius: var(--border-radius-12);
  overflow: hidden;
  margin-bottom: 16px;
}

.help-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.help-accordion .accordion-button {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231c1b1b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2342b883'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  gap: 12px;
  padding: 18px 20px;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-black);
  background-color: var(--color-white);
  box-shadow: none;
}

.help-accordion .accordion-button i {
  color: var(--primary-green);
  font-size: 18px;
}

.help-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-green);
  background-color: var(--light-blue);
  box-shadow: none;
}

.help-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--gray-060);
}

.help-accordion .accordion-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.help-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--gray-060);
  border-radius: var(--border-radius-12);
  transition: border-color var(--transition-base);
}

.help-info-item:hover {
  border-color: var(--primary-green);
}

.help-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: none;
  font-size: 18px;
  color: var(--color-white);
  background-color: var(--primary-green);
  border-radius: var(--border-rounded);
}

.help-info-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 2px;
}

.help-info-text p {
  font-size: 14px;
  color: var(--text-color);
  margin: 0;
}

.help-info-text p a {
  color: var(--text-color);
  transition: color var(--transition-base);
}

.help-info-text p a:hover {
  color: var(--primary-green);
}

/***** End HELP CENTER *****/

/***** CART TOTALS *****/
.totals-wrapper {
  max-width: 30%;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: sticky !important;
  height: auto;
  top: 10px;
  left: 0;
  /* margin-top: 100px; */
}

.info-text {
  font-size: 16px;
  line-height: 165%;
  color: var(--color-heading-dark);
  font-weight: 400;
  background-color: var(--color-green-tint-2);
  padding: 10px;
  border-radius: 12px;
}

.info-text .item-succes {
  color: var(--color-green-dark);
  font-weight: 600;
}

.info-text i {
  font-size: 22px;
  color: var(--color-green-dark);
  margin-right: 4px;
}

.totals-header {
  margin-top: 10px;
  padding: 10px 10px;
  border-bottom: 1px solid var(--light-gray-1);
}

.totals-header h3 {
  font-size: 24px;
  font-weight: 400;
  color: var(--color-primary);
  padding: 0px 0px 0px 0px;
  margin-bottom: 0;
}

.totals-header .edit-cart {
  color: var(--text-color);
  font-size: 14px;
  transition: all var(--transition-base);
}

.totals-header .edit-cart:hover {
  color: var(--primary-green);
}

.totals-body .total-products img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border: 1px solid var(--light-gray-1);
  border-radius: 4px;
}

.totals-body .total-products .other-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border: 1px solid var(--light-gray-1);
  border-radius: 4px;
  background-color: var(--light-gray-1);
}

.totals-body .total-products .other-img span {
  font-size: 18px;
  font-weight: 500;
  color: var(--gray-140);
}

.chk-view-all-btn {
  border: none;
  outline: none;
  font-size: 14px;
  padding: 10px;
  border-radius: 4px;
  background-color: var(--primary-green);
  color: var(--color-white);
  transition: all var(--transition-base);
}

.chk-view-all-btn:hover {
  background-color: var(--color-green-dark);
}

.totals-body .body-item {
  padding-bottom: 10px;
}

.totals-body .body-item.total {
  padding-top: 20px;
  border-bottom: none;
  border-top: 1px solid var(--light-gray-1);
}

.totals-body .body-item h3 {
  font-size: 16px;
  color: var(--text-color);
  font-weight: 500;
}

.totals-body .body-item span {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black);
}

.totals-body .body-item .promo-label {
  font-size: 14px;
  color: var(--color-black);
}

.totals-body .body-item h3.total {
  font-size: 18px;
  color: var(--text-color);
}

.totals-body .body-item span.total {
  font-size: 18px;
  color: var(--color-black);
}

.totals-body .body-item.promo-code input {
  width: 65%;
}

.totals-body .body-item.promo-code button {
  width: 35%;
}

.totals-body .body-item.promo-code input,
.totals-body .body-item.promo-code button {
  padding: 7px;
  font-size: 16px;
  border-radius: 4px;
  outline: none;
}

.totals-body .body-item.promo-code input {
  border: 1px solid var(--gray-085);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.totals-body .body-item.promo-code button {
  border: none;
  background-color: var(--primary-green);
  color: var(--color-white);
  letter-spacing: 1.1px;
  transition: all var(--transition-base);
}

.totals-body .body-item.promo-code button:hover {
  background-color: var(--color-green-dark);
}

.totals-body .body-item.promo-code .promo-list .promo-success {
  font-size: 14px;
  color: var(--color-green-dark);
  font-weight: 600;
}

.totals-body .body-item.promo-code .promo-list i {
  font-size: 30px;
  color: var(--text-color);
  cursor: pointer;
  transition: all var(--transition-base);
}

.totals-body .body-item.promo-code .promo-list i:hover {
  color: var(--color-red-accent);
}

.totals-body .body-item.promo-code .promo-list .promo-success span {
  font-size: 14px;
  color: var(--primary-green);
}

.checkout-button {
  border: none;
  outline: none;
  font-size: 18px;
  padding: 13px 40px;
  border-radius: 8px;
  color: var(--color-white) !important;
  font-weight: 500;
  text-decoration: none;
  background-color: var(--primary-green);
  transition: all var(--transition-base);
  letter-spacing: 1.1px;
}

.continue-shoppoing {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--text-color);
  transition: all var(--transition-base);
}

.points-info {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--text-color);
  transition: all var(--transition-base);
}

.continue-shoppoing:hover {
  color: var(--color-black);
}

.checkout-button i {
  font-size: 18px;
  margin-right: 5px;
}

.checkout-button:hover {
  background-color: var(--color-green-dark);
}

/***** End CART TOTALS *****/

/***** RECEIPT *****/

.receipt-wrapper {
  width: 100%;
  max-width: 640px;
  margin: 20px auto 60px;
  gap: 24px;
}

.receipt-success i {
  font-size: 56px;
  color: var(--primary-green);
  margin-bottom: 12px;
}

.receipt-success h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-dark-blue);
  margin-bottom: 6px;
}

.receipt-success p {
  color: var(--gray-110);
  max-width: 420px;
}

.receipt-card {
  width: 100%;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(var(--shadow-rgb), 0.08);
  padding: 28px;
}

.receipt-head {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-025);
}

.receipt-head h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-dark-blue);
  margin-bottom: 4px;
}

.receipt-order-no {
  font-size: 14px;
  color: var(--gray-110);
}

.receipt-date {
  font-size: 14px;
  color: var(--gray-110);
  white-space: nowrap;
}

.receipt-info-grid {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-025);
}

.receipt-info-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
}

.receipt-info-item i {
  font-size: 20px;
  color: var(--primary-green);
  margin-top: 5px;
}

.receipt-info-item h4 {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--gray-110);
  font-weight: 600;
  margin-bottom: 5px;
}

.receipt-info-item p {
  font-size: 14px;
  color: var(--color-dark-blue);
}

.receipt-products {
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-025);
}

.receipt-products h4 {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--gray-110);
  font-weight: 600;
  margin-bottom: 14px;
}

.receipt-product-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}

.receipt-product-row img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.receipt-product-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.receipt-product-info strong {
  font-size: 15px;
  color: var(--color-dark-blue);
}

.receipt-product-info span {
  font-size: 13px;
  color: var(--gray-110);
}

.receipt-product-total {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-dark-blue);
  white-space: nowrap;
}

.receipt-totals {
  padding-top: 20px;
}

.receipt-actions {
  width: 100%;
}

.receipt-actions .checkout-button,
.receipt-home-button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  font-size: 16px;
  letter-spacing: normal;
  white-space: nowrap;
  cursor: pointer;
}

.receipt-home-button {
  border: none;
  outline: none;
  border-radius: 8px;
  color: var(--color-dark-blue) !important;
  font-weight: 500;
  text-decoration: none;
  background-color: var(--gray-025);
  transition: all var(--transition-base);
}

.receipt-home-button:hover {
  background-color: var(--gray-040);
}

/***** End RECEIPT *****/

/***** CART-MODAL *****/

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--shadow-rgb), 0.7);
  z-index: 1002;
  visibility: hidden;
  opacity: 0;
  inset: 0;
  transition: all var(--transition-base);
}

.modal-overlay._active {
  visibility: visible;
  opacity: 1;
}

.modal-body-right {
  transition: all var(--transition-base);
  transition-delay: 0.2s;
  position: relative;
  opacity: 0;
  visibility: hidden;
  right: -100%;
  height: 100%;
}

.modal-overlay._active .modal-body-right {
  visibility: visible;
  opacity: 1;
  visibility: visible;
  right: 0;
}

.add-cart-modal-body {
  max-width: 450px;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  border-radius: 8px;
  /* padding: 20px; */
  overflow-y: scroll;
}

/* width */
.add-cart-modal-body::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.add-cart-modal-body::-webkit-scrollbar-track {
  background: var(--gray-025);
  margin-top: 70px;
}

.add-cart-modal-body::-webkit-scrollbar-button {
  height: 12px;
}

/* Handle */
.add-cart-modal-body::-webkit-scrollbar-thumb {
  background: var(--gray-110);
}

/* Handle on hover */
.add-cart-modal-body::-webkit-scrollbar-thumb:hover {
  background: var(--gray-105);
}

.add-cart-modal-body .cart-md-header {
  top: 0;
  left: 0;
  position: sticky;
  width: 100%;
  background-color: var(--color-white);
  padding: 20px;
  z-index: 100;
}

.additional-info-oreder span {
  font-size: 14px;
  color: var(--text-color);
  font-weight: 500;
}

.add-cart-modal-body .cart-md-header.checkout {
  top: 0;
  left: 0;
  position: sticky;
  width: 100%;
  background-color: var(--color-white);
  padding: 20px;
}

.add-cart-modal-body .cart-md-header h3 {
  font-size: 22px;
}

.add-cart-modal-body .cart-md-header h3 i {
  color: var(--primary-green);
}

.detail-block {
  padding: 5px 15px;
}

.detail-block h3 {
  font-size: 16px;
  font-weight: 500;
}

.detail-item-row-md .prim,
.detail-item-row-md .second {
  font-size: 14px;
  font-weight: 500;
}

.cart-md-footer {
  position: sticky;
  bottom: 0;
  left: 0;
  padding: 20px;
  background-color: var(--color-white);
  box-shadow: 0 -10px 10px -10px var(--gray-060);
  border: 1px;
  margin-top: auto;
}

.cart-md-total h5 {
  font-size: 20px;
}

.cart-md-total p {
  font-size: 14px;
}

.cart-md-button {
  display: flex;
  width: 100%;
  margin-top: 20px;
}

.cart-md-button a {
  flex: 1 1 0;
  min-width: 0;
  font-size: 16px;
  color: var(--color-white);
  border-radius: var(--border-radius-8);
  line-height: 1;
  padding: 16px 12px;
  background-color: var(--primary-green);
  font-family: "Quicksand", sans-serif;
  outline: none;
  transition: all var(--transition-base);
  opacity: 0.7;
  font-weight: 600;
  white-space: nowrap;
}

.cart-md-button a.outline {
  background-color: var(--gray-080);
  color: var(--gray-130);
}

.cart-md-button a:hover {
  opacity: 1;
}

.cart-md-products-wrap {
  padding: 20px;
  gap: 25px;
}

.cart-md-products-wrap .product {
  margin: 0;
  padding: 0;
}

/* Discount badge */
.product-img .badge-discount {
  position: absolute;
  top: -5px !important;
  left: 8px;
  color: var(--color-white) !important;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
}

.cart-md-products-wrap .product img {
  max-width: 125px;
  width: 100;
  height: 125px;
}

.cart-md-products-wrap .product .product-cart-title {
  margin-top: 7px;
}

.cart-md-products-wrap .product .product-cart-title h3 a {
  color: var(--color-black) !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 135%;
  transition: all var(--transition-base);
}

.cart-md-products-wrap .product .product-cart-title h3 a:hover {
  color: var(--primary-green) !important;
}

.cart-md-products-wrap .product .product-cart-title h4 {
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
}

.cart-md-products-wrap .product .product-cart-title h4.qty {
  font-size: 13px;
  color: var(--text-color);
  display: inline-flex;
  /* or inline-block */
  align-self: flex-start;
}

.cart-md-products-wrap .product .product-cart-title h4.qty .price-old {
  position: absolute;
  top: -8px;
  right: -30px;
  font-size: 11px;
  color: var(--text-color);
}

.cart-md-products-wrap .product .product-cart-title h4.qty .price-new {
  font-size: 14px;
  color: var(--text-color);
}

/***** End CART-MODAL *****/

/* ===== WRAPPER ===== */

.cart-parent {
  margin-top: 100px;
}

.cart-layer {
  max-width: 74%;
  width: 100%;
}

.cart-info a {
  font-size: 16px;
  color: var(--text-color);
  transition: all var(--transition-base);
}

.cart-info a:hover {
  color: var(--color-danger);
}

.clear-cart._has-selection {
  color: var(--color-danger);
}

.clear-cart i {
  font-size: 20px;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-info a.view-cart-info {
  font-size: 14px;
}

.cart-info a.view-cart-info:hover {
  color: var(--primary-green);
}

.cart-info .hd-cart p {
  font-size: 14px;
  font-weight: 400;
}

.cart-info .hd-cart p span {
  font-weight: 600;
}

.cart-info h3 {
  font-size: 24px;
  font-weight: 500;
}

/* .cart-wrapper {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(var(--shadow-rgb), 0.08);
  overflow: hidden;
  width: 100%;
} */

/* ===== TABLE ===== */
.cart-table {
  width: 100%;
}

.cart-table-head,
.cart-row {
  display: flex;
  column-gap: 10px;
  border-bottom: 1px solid var(--gray-025);
}

.cart-table-head {
  border-bottom-color: var(--gray-030);
}

.cart-table-h {
  flex: 1;
  min-width: 0;
  padding: 18px;
  text-align: left;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--gray-115);
}

.cart-table:not(._history) .cart-table-h:first-child {
  flex: 2.5;
}

.sortable {
  cursor: pointer;
  user-select: none;
}

.sortable::after {
  content: " ⇅";
  opacity: 0.4;
}

.cart-table._history .cart-table-h {
  text-transform: capitalize !important;
}

span.circle {
  width: 10px;
  height: 10px;
  border-radius: var(--border-rounded);
  background-color: var(--primary-green);
}

.text-item span {
  font-size: 14px;
}

.cart-row>div {
  display: flex;
  flex: 1;
  align-items: center;
  padding: 18px;
  min-width: 0;
}

.details button {
  padding: 10px;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  background-color: var(--primary-green);
  color: var(--color-white);
  transition: all var(--transition-base);
}

.details button:hover {
  background-color: var(--color-green-dark);
}

/* ===== PRODUCT ===== */
.cart-row>.cart-product {
  flex: 2.5;
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-product-info {
  flex: 1;
  min-width: 150px;
}

.cart-product img {
  width: 125px;
  height: 125px;
  object-fit: cover;
}

.cart-product-thumb {
  position: relative;
  flex-shrink: 0;
}

.cart-product-info strong a {
  color: var(--color-dark-blue);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  font-size: 16px;
  font-weight: 600;
  transition: all var(--transition-base);
  max-width: 100%;
  line-height: var(--line-height-150);
}

.cart-product-info strong a:hover {
  color: var(--primary-green);
  text-decoration: underline;
}

.cart-code {
  display: block;
  font-size: 14px;
  color: var(--gray-110);
}

.stock {
  font-size: 14px;
}

.in-stock {
  color: var(--color-green-bright);
}

/* ===== PRICE ===== */
.cart-price {
  white-space: nowrap;
}

.price-new {
  font-size: 16px;
  font-weight: 600;
}

.cart-price .badge-discount {
  display: inline-flex;
  /* or inline-block */
  align-self: flex-start;
  margin: 0;
  padding: 3px 8px;
  font-size: 12px;
  border-radius: 6px;
  color: var(--color-white);
}

/* ===== QTY ===== */
.qty-control {
  display: inline-flex;
  border: 1px solid var(--gray-055);
  border-radius: 8px;
  overflow: hidden;
}

.qty-control.md-cart {
  display: inline-flex;
  /* or inline-block */
  align-self: flex-start;
  border: 1px solid var(--gray-055);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 5px;
}

.qty-control button {
  width: 34px;
  height: 34px;
  border: none;
  background: var(--gray-010);
  cursor: pointer;
}

.qty-control button:disabled {
  color: var(--gray-075);
  cursor: not-allowed;
}

.qty-control input {
  width: 44px;
  border: none;
  text-align: center;
  outline: none;
  -moz-appearance: textfield;
}

.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.prod-page .qty-control.md-cart {
  margin-top: 0;
}

/* ===== TOTAL ===== */
.cart-total {
  font-size: 16px;
  font-weight: 700;
}

/* ===== CHECKBOX OVERLAY ===== */
.cart-remove-inner {
  position: absolute;
  top: -5px;
  left: -5px;
}

/* ===== REMOVE ===== */
.cart-row>.cart-remove-cell {
  align-items: flex-start;
}

.cart-remove-cell {
  justify-content: center;
}

.cart-remove {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--gray-090);
  cursor: pointer;
  transition: all var(--transition-base);
}

.cart-remove:hover {
  color: var(--color-red-bright);
}

/* ===== CUSTOM CHECKBOX ===== */
.custom-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.custom-checkbox-label {
  position: relative;
  display: inline-flex;
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-055);
  border-radius: 5px;
  background-color: var(--color-white);
  cursor: pointer;
  transition: all var(--transition-base);
}

.custom-checkbox-label:hover {
  border-color: var(--color-green-medium);
}

.custom-checkbox:checked+.custom-checkbox-label {
  background-color: var(--color-green-medium);
  border-color: var(--color-green-medium);
}

.custom-checkbox:checked+.custom-checkbox-label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-checkbox:indeterminate+.custom-checkbox-label {
  background-color: var(--color-green-medium);
  border-color: var(--color-green-medium);
}

.custom-checkbox:indeterminate+.custom-checkbox-label::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 8px;
  width: 10px;
  height: 2px;
  background-color: var(--color-white);
}

.payment-card {
  display: block;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--gray-035);
  cursor: pointer;
  transition: all var(--transition-base);
  background: var(--color-white);
}

.payment-card:hover {
  border-color: var(--primary-green);
  box-shadow: 0 4px 12px rgba(var(--primary-green-rgb), 0.15);
}

.btn-check:checked+.payment-card {
  /* border-color: var(--primary-green); */
  background: var(--primary-green);
  box-shadow: none;
}

.btn-check:checked+.payment-card .payment-title,
.btn-check:checked+.payment-card .payment-subtitle,
.btn-check:checked+.payment-card .payment-icon {
  color: var(--color-white);
}

.address-card.selectable {
  display: block;
  width: 100%;
  cursor: pointer;
  transition: all var(--transition-base);
}

.address-card.selectable:hover {
  border-color: var(--primary-green);
  box-shadow: 0 4px 12px rgba(var(--primary-green-rgb), 0.15);
}

.btn-check:checked+.address-card.selectable {
  border-color: var(--primary-green);
  box-shadow: 0 4px 12px rgba(var(--primary-green-rgb), 0.15);
}

.delivery-info .form-control[readonly] {
  background-color: var(--gray-015);
  color: var(--gray-090);
}

.address-card.selectable.new-address {
  height: 100%;
  min-height: 64px;
  color: var(--gray-090);
  font-size: 14px;
  font-weight: 600;
  border-style: dashed;
}

.btn-check:checked+.address-card.selectable.new-address {
  color: var(--primary-green);
}

.payment-title {
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text-strong);
}

.payment-subtitle {
  font-size: 13px;
  color: var(--gray-120);
  margin-top: 10px;
}

.payment-icon {
  font-size: 26px;
  color: var(--primary-green);
}

.payment-img {
  width: 35px;
  height: auto;
}

.agreement-check {
  margin-top: 20px;
}

.agreement-check .form-check-input {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid var(--primary-green);
  cursor: pointer;
}

.agreement-check .form-check-input:checked {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

.agreement-check .form-check-input:focus {
  box-shadow: 0 0 0 0.15rem rgba(var(--primary-green-rgb), 0.25);
}

.agreement-check .form-check-label {
  margin-left: 8px;
  font-size: 16px;
  color: var(--gray-135);
  margin-top: 6px;
}

.agreement-check .form-check-label a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 500;
}

.agreement-check .form-check-label a:hover {
  text-decoration: underline;
}

/***** End CART *****/

/***** Main  *****/

main._homepage {
  flex: 1 1 auto;
}

main._page {
  margin-top: var(--header-height, 100px);
  margin-bottom: 50px;
}

/***** Main Slider homepage (index) *****/

.main-slider__slide {
  position: relative;
}

.main-slider__slide .img-wrapper {
  position: relative;
  width: 100%;
  padding: 0 0 47% 0;
}

.main-slider__slide .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(55%);
}

.main-slider__slide .main-slider__text {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  color: var(--color-white);
  gap: 10px;
  max-width: 600px;
  width: 100%;
}

.main-slider__slide .main-slider__text h2 {
  font-size: 70px;
  line-height: var(--line-height-150);
}

.main-slider__slide .main-slider__text p {
  font-size: 20px;
  line-height: var(--line-height-150);
  margin-bottom: 20px;
}

.main-slider__slide .main-slider__text .slider__link {
  margin-left: 20px;
}

.main-slider__slide .main-slider__text h2,
.main-slider__slide .main-slider__text p,
.main-slider__slide .main-slider__text .slider__link {
  position: relative;
  left: 0;
}

.main-slider__wrapper .main-slider__slide.swiper-slide-active .main-slider__text h2 {
  animation: leftright 2s;
}

.main-slider__wrapper .main-slider__slide.swiper-slide-active .main-slider__text p {
  animation: leftright 2.5s;
}

.main-slider__wrapper .main-slider__slide.swiper-slide-active .main-slider__text .slider__link {
  animation: leftright 3s;
}

@keyframes leftright {

  0%,
  20% {
    opacity: 0;
    transform: translateX(-60px);
  }

  80%,
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.main-slider .swiper-pagination .swiper-pagination-bullet {
  width: 45px;
  height: 7px;
  background-color: var(--color-white);
  border-radius: 2px;
  border: none !important;
}

.main-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-white);
  border: none !important;
}

.main-slide-btn-wr {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  padding: 0 10px;
  visibility: hidden;
  opacity: 0;
  transition: all var(--transition-base);
}

.main-slide-btn-wr button {
  background: var(--light-blue);
  width: 50px;
  height: 50px;
  border-radius: var(--border-rounded);
  color: var(--text-color);
  outline: none;
  border: none;
  font-size: 20px;
  transition: all var(--transition-base);
}

.main-slide-btn-wr button:hover {
  background: var(--primary-green);
  color: var(--color-white);
}

.main-slider:hover .main-slide-btn-wr {
  visibility: visible;
  opacity: 1;
}

/***** End Main Slider homepage (index) *****/

/***** CART ITEM *****/
.prod-card-swiper {
  padding: 20px 10px;
}

.prod-card-swiper .swiper-slide {
  height: auto;
}

.wish-list-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.prod-card {
  position: relative;
  /* flex: 1 1 200px; */
  border-radius: var(--border-radius-8);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(var(--shadow-rgb), 0.08);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
  cursor: pointer;
}

.prod-card.single {
  max-width: 340px;
  flex: 1 1 200px;
  width: 100%;
  margin: 0 auto;
}

/* Base badge */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  padding: 6px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 8px;
  color: var(--color-white);
  line-height: 1;
}

.badge.no-ab {
  position: static;
  top: unset;
  left: unset;
}

.badge.stock {
  /* max-width: 200px; */
  width: auto;
  position: relative;
  top: 0px;
  left: 0px;
  z-index: 1;
}

/* Variants */
.badge-stock,
.badge-discount {
  background: var(--primary-green);
}

.badge-best {
  background: var(--color-status-best);
}

.badge-new {
  background: var(--color-status-new);
}

.badge-nostock,
.badge-hot {
  background: var(--color-status-hot);
}

.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(var(--shadow-rgb), 0.12);
}

.prod-card .img-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  /* 1:1 ratio */
  overflow: hidden;
}

.prod-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-base);
}

.prod-card .seconadry-img {
  opacity: 0;
  visibility: hidden;
}

.prod-card:hover .seconadry-img {
  opacity: 1;
  visibility: visible;
}

.prod-card:hover .primary-img {
  opacity: 0;
  visibility: hidden;
}

.prod-card:hover img {
  transform: scale(1.08);
}

.prod-desc {
  padding: 10px;
  flex: 1;
}

.prod-desc .cat {
  color: var(--text-color);
  font-size: 14px;
}

.prod-desc .title {
  color: var(--color-dark-blue);
  font-size: 18px;
  line-height: var(--line-height-150);
  font-weight: 500;
  transition: all var(--transition-base);
}

.prod-card:hover .prod-desc .title {
  color: var(--primary-green);
}

.price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.price-current {
  color: var(--primary-green);
  font-size: 1.1rem;
}

.price-old {
  color: var(--gray-100);
  font-size: 0.8rem;
  text-decoration: line-through;
}

/* small info icon with an explanatory tooltip, e.g. next to Florado points */
.info-tip {
  position: relative;
  z-index: 10;
  display: inline-flex;
  font-size: 14px;
  color: var(--gray-090);
  cursor: help;
}

.info-tip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  right: -6px;
  left: auto;
  transform: translateY(4px);
  width: 190px;
  max-width: calc(100vw - 32px);
  background: var(--text-color);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  white-space: normal;
  padding: 8px 10px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--transition-base),
    transform var(--transition-base);
}

.info-tip:hover {
  color: var(--primary-green);
}

.info-tip:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* Florado points earned on this product, shown under the price
   (icon/color match .account-bonuses on the account page) */
.prod-points {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-color);
}

.prod-points i {
  color: var(--primary-green);
  font-size: 15px;
}

.prod-points b {
  color: cornflowerblue;
  font-weight: 600;
}

.actions-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: auto;
}

.action-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: var(--color-green-tint);
  border-radius: 8px;
  transition:
    background var(--transition-base),
    transform var(--transition-base);
}

/* Tooltip bubble */
.action-item::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-color);
  color: var(--color-white);
  font-size: 12px;
  padding: 10px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--transition-base),
    transform var(--transition-base);
}

/* Arrow */
.action-item::before {
  content: "";
  position: absolute;
  bottom: calc(99%);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--text-color);
  opacity: 0;
}

/* Show on hover */
.action-item:hover::after,
.action-item:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

.action-item i {
  color: var(--text-color);
  font-size: 20px;
  transition: all var(--transition-base);
}

.action-item:hover {
  background: var(--color-green-medium);
  color: var(--color-white);
  transform: translateY(-2px);
}

.action-item:hover i {
  color: var(--color-white);
}

.action-item.fav-btn._active {
  background: var(--color-green-medium);
}

.action-item.fav-btn._active i {
  color: var(--color-white);
}

/***** End CART ITEM *****/

/***** Prodcut page *****/

.pro-sg-gall {
  position: sticky;
  top: 110px;
  /* adjust if you have sticky header */
  align-self: flex-start;
}

.prod-page {
  margin-top: 75px;
}

.prod-page h1 {
  font-size: 28px;
  font-weight: 600;
}

.prod-page .hd-page {
  padding-bottom: 10px;
}

.prod-page .prod-pricing {
  display: inline-flex;
  /* or inline-block */
  align-self: flex-start;
}

.prod-page .prod-pricing .price-new {
  font-size: 34px;
}

.prod-page .prod-pricing .price-old {
  font-size: 18px;
  font-weight: 500;
  position: absolute;
  top: -20%;
  right: -55%;
}

.variation {
  border: 1px solid var(--gray-055);
  cursor: pointer;
  user-select: none;
  transition: all var(--transition-base);
  font-size: 16px;
  font-weight: 500;
  padding: 12px;
  color: var(--color-black);
}

.variation:hover {
  border: 1px solid var(--primary-green) !important;
  color: var(--primary-green);
  background-color: rgba(var(--light-gray-1-rgb), 0.2);
}

.prod-page .prod-actions-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.prod-page .add-to-cart-btn {
  transition: all var(--transition-base);
  max-width: 300px;
  width: 100%;
  font-size: 20px;
}

.prod-page .add-to-cart-btn i {
  font-size: 22px;
}

.prod-page .add-to-fav-btn {
  min-width: 50px;
  height: auto;
  display: flex;
  align-content: center;
  justify-items: center;
  justify-content: center;
  align-items: center;
  border-radius: var(--border-radius-8);
  border: 1px solid var(--primary-green);
  transition: all var(--transition-base);
  cursor: pointer;
}

.prod-page .add-to-fav-btn i {
  color: var(--primary-green);
  transition: all var(--transition-base);
  font-size: 20px;
}

.prod-page .add-to-fav-btn:hover {
  background-color: var(--color-green-hover);
  border: 1px solid var(--color-white);
}

.prod-page .add-to-fav-btn:hover i {
  color: var(--color-white);
}

.prod-page .prod-description h5 {
  font-size: 22px;
  color: var(--color-black);
  line-height: var(--line-height-150);
  font-weight: 500;
}

.prod-page .prod-description .prod-desc {
  font-size: 16px;
  line-height: var(--line-height-150);
  padding: 0;
}

.prod-info-list {
  gap: 14px;
}

.prod-info-list li {
  align-items: flex-start;
}

.prod-info-list i {
  flex-shrink: 0;
  font-size: 20px;
  color: var(--primary-green);
  line-height: var(--line-height-150);
}

.prod-info-list li span {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-black);
  line-height: var(--line-height-150);
}

.prod-info-list li small {
  font-size: 13px;
  font-weight: 400;
  margin-top: 2px;
}

.composition-table {
  padding: 0;
}

.composition-table h5 {
  font-size: 22px;
  color: var(--color-black);
  line-height: var(--line-height-150);
  font-weight: 500;
}

.composition-item {
  background: var(--gray-005);
  transition: all var(--transition-base);
}

.composition-item span {
  font-size: 0.95rem;
}

/***** PRODUCT DESCRIPTION / COMMENTS TABS *****/
.prod-tabs-row {
  margin-top: 24px;
}

.prod-tabs-nav {
  border-bottom: 1px solid var(--gray-045);
  gap: 8px;
}

.prod-tabs-nav .nav-link {
  border: none;
  background: none;
  padding: 14px 4px;
  margin-right: 32px;
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-100);
  border-bottom: 2px solid transparent;
  border-radius: 0;
  transition: all var(--transition-base);
}

.prod-tabs-nav .nav-link:hover {
  color: var(--primary-green);
}

.prod-tabs-nav .nav-link.active {
  color: var(--color-black);
  border-bottom-color: var(--primary-green);
  background: none;
}

.prod-tabs-content {
  padding-top: 32px;
  max-width: 760px;
}

/* Comments pane */
.prod-comments-stars,
.prod-comment-stars,
.prod-comment-form-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--color-status-best);
  font-size: 14px;
}

.prod-comments-count {
  font-size: 14px;
}

.prod-comment-form-stars i {
  font-size: 18px;
  cursor: pointer;
}

.prod-comment-avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--border-rounded);
  background-color: var(--color-green-tint);
  color: var(--color-green-dark);
  font-size: 14px;
  font-weight: 700;
}

.prod-comment-body {
  flex: 1;
}

.prod-comment-body h6 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-black);
}

.prod-comment-date {
  font-size: 13px;
  flex-shrink: 0;
}

.prod-comment-stars {
  margin: 4px 0 8px;
}

.prod-comment-body p {
  font-size: 14px;
  line-height: var(--line-height-150);
}

.prod-comment-form {
  background: var(--color-green-tint-2);
  border: 1px solid var(--color-green-tint);
  border-radius: var(--border-radius-12);
  padding: 24px;
}

.prod-comment-form h6 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-black);
}

.prod-comment-form h6 i {
  color: var(--primary-green);
  font-size: 18px;
}

.prod-comment-form textarea.form-control {
  border-radius: var(--border-radius-12);
  border: 1px solid var(--gray-055);
  font-size: 14px;
  resize: vertical;
  background: var(--color-white);
}

.prod-comment-form textarea.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(var(--primary-green-rgb), 0.15);
}

.prod-comment-form .btn-success {
  padding: 10px 26px;
  border-radius: var(--border-radius-12);
  font-weight: 600;
}

/***** End PRODUCT DESCRIPTION / COMMENTS TABS *****/

/* ===== Gallery thumbs ===== */
.prod-page .swiper-button-prev::after,
.prod-page .swiper-button-next::after {
  display: none !important;
}

.prod-page .swiper-button-prev,
.prod-page .swiper-button-next {
  width: 40px;
  height: 40px;
  background: rgba(var(--color-white-rgb), 0.8);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-base);
}

.prod-page .swiper-button-prev:hover,
.prod-page .swiper-button-next:hover {
  background: rgba(var(--color-white-rgb), 1);
  box-shadow: 0 4px 12px rgba(var(--shadow-rgb), 0.15);
}

.prod-page .swiper-button-prev {
  left: 10px;
}

.prod-page .swiper-button-next {
  right: 10px;
}

.prod-page .swiper-button-prev i,
.prod-page .swiper-button-next i {
  pointer-events: none;
}

.product-gallery-thumbs img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0.6;
}

.product-gallery-thumbs .swiper-slide-thumb-active img {
  opacity: 1;
  border: 2px solid var(--color-success);
}

.prod-specs-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/***** PRODUCT GALLERY LIGHTBOX *****/

.product-gallery-main .swiper-slide img {
  cursor: zoom-in;
}

.gallery-lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1060;
  background: rgba(var(--shadow-rgb), 0.9);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.gallery-lightbox-overlay._active {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: var(--border-rounded);
  background: rgba(var(--color-white-rgb), 0.15);
  color: var(--color-white);
  font-size: 18px;
  cursor: pointer;
  transition: all var(--transition-base);
}

.gallery-lightbox-close:hover {
  background: rgba(var(--color-white-rgb), 0.3);
}

.gallery-lightbox-slider {
  width: 100%;
  max-width: 900px;
  margin: 0 90px;
  overflow: hidden;
}

.gallery-lightbox-slider .swiper-wrapper {
  align-items: center;
}

.gallery-lightbox-slider .swiper-slide {
  width: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox-slider img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  border-radius: var(--border-radius-12);
  object-fit: contain;
}

/* On desktop the wrapper stays out of the box tree entirely, so its two
   children keep positioning themselves against the overlay's edges. Small
   devices turn it into a real row below the slider — see responsive.css. */
.gallery-lightbox-nav {
  display: contents;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-rounded);
  background: rgba(var(--color-white-rgb), 0.15);
  color: var(--color-white);
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 1;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  background: rgba(var(--color-white-rgb), 0.3);
}

.gallery-lightbox-prev {
  left: 20px;
}

.gallery-lightbox-next {
  right: 20px;
}

.gallery-lightbox-prev i,
.gallery-lightbox-next i {
  pointer-events: none;
}

/***** End PRODUCT GALLERY LIGHTBOX *****/

/* ===== Variations ===== */

/* ===== Price badges ===== */
.prod-page .badge {
  font-size: 0.875rem;
}

/* ===== Price ===== */
.text-decoration-line-through {
  text-decoration: line-through;
}

/***** End Prodcut page *****/

/***** CATALOG-PAGE *****/

.filter-hd-title {
  font-size: 24px;
  font-weight: 600;
}

.filter-aside {
  /* position: sticky;
  top: 140px;
  align-self: flex-start; */
}

.filter-aside .filter-box {
  position: relative;
}

.filter-close-btn {
  display: none;
}

.mobile-filter-btn {
  display: none;
  border: 1px solid var(--gray-055);
  border-radius: 8px;
  background: var(--color-white);
  padding: 9.45px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-dark-blue);
  cursor: pointer;
  transition: all var(--transition-base);
}

.mobile-filter-btn:hover {
  background-color: var(--gray-025);
}

.filter-search {
  width: 100%;
  padding: 6px 12px;
  margin-bottom: 8px;
  border: 1px solid var(--gray-075);
  border-radius: 6px;
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition-base);
}

.filter-search:focus {
  border-color: var(--color-focus-blue);
  box-shadow: 0 2px 6px rgba(var(--color-focus-blue-rgb), 0.2);
}

.filter-list {
  max-height: 300px;
  overflow-y: auto;
  padding: 10px 5px;
}

.filter-list::-webkit-scrollbar {
  width: 8px;
}

.filter-list::-webkit-scrollbar-track {
  background: var(--gray-025);
  border-radius: 10px;
}

.filter-list::-webkit-scrollbar-thumb {
  background-color: var(--primary-green);
  border-radius: 10px;
  border: 2px solid var(--gray-025);
}

.filter-list::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-blue-dark);
}

/* Firefox */
.filter-list {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-green) var(--gray-025);
}

/* Hide native checkbox */
.filter-list input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Label wrapper */
.filter-list label {
  display: inline-flex;
  /* or inline-block */
  align-self: flex-start;
  cursor: pointer;
  font-size: 16px;
  color: var(--color-black);
  gap: 7px;
  position: relative;
  padding-left: 28px;
  /* space for custom box */
}

/* Custom checkbox box */
.filter-list label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 2px solid var(--gray-075);
  border-radius: 5px;
  background-color: var(--color-white);
  transition: all var(--transition-base);
}

/* Hover effect */
.filter-list label:hover::before {
  border-color: var(--primary-green);
}

/* Checked box background */
.filter-list input[type="checkbox"]:checked+label::before {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

/* Checkmark */
.filter-list input[type="checkbox"]:checked+label::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 10px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  left: 1px;
  top: 50%;
  transform: translate(6px, -50%) rotate(45deg);
  /* 6px shifts it inside the box */
}

.filter-aside .filter-box input {
  flex: 1;
  min-width: 0;
  padding: 0.4rem 0.6rem;
  box-sizing: border-box;
  border: 1px solid var(--gray-055);
  border-radius: 6px;
  outline: none;
  transition: all var(--transition-base);
  box-shadow: 0 1px 3px rgba(var(--shadow-rgb), 0.08);
}

.filter-aside .filter-box input:focus {
  border-color: var(--primary-green);
  /* optional focus color */
  box-shadow: 0 2px 6px rgba(var(--shadow-rgb), 0.15);
  /* slightly stronger on focus */
}

.filter-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 16px;
  transition: gap var(--transition-base);
  padding-left: 0;
}

.filter-section._collapsed {
  gap: 0;
}

.filter-box>.filter-section:not(:last-of-type) {
  border-bottom: 1px solid var(--color-green-tint);
}

/* Toggle button */
.filter-toggle {
  width: 100%;
  background: none;
  border: none;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 6px 0;
}

/* Arrow rotation */
.filter-toggle i {
  display: inline-block;
  transition: transform var(--transition-base);
}

.filter-section._collapsed .filter-toggle i {
  transform: rotate(-90deg);
}

/* Collapsed content */
.filter-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 1000px;
  opacity: 1;
  transition:
    max-height var(--transition-base),
    opacity var(--transition-base),
    margin var(--transition-base);
}

.filter-section._collapsed .filter-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin: 0;
}

/***** PRICE RANGE SLIDER *****/

.price-range {
  padding: 10px 6px 0 6px;
  transition: padding var(--transition-base);
}

.filter-section._collapsed .price-range {
  padding: 0;
}

#price-slider.noUi-target {
  background: var(--gray-050);
  height: 5px;
  border: none;
  box-shadow: none;
  padding-left: 5px;
  padding-right: 5px;
}

#price-slider .noUi-connect {
  background: var(--primary-green);
}

#price-slider .noUi-handle {
  width: 18px;
  height: 18px;
  top: -6px;
  right: -9px;
  border-radius: var(--border-rounded);
  background: var(--color-white);
  border: 2px solid var(--primary-green);
  box-shadow: none;
  cursor: pointer;
}

#price-slider .noUi-handle::before,
#price-slider .noUi-handle::after {
  display: none;
}

.number-range input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--gray-060);
  border-radius: var(--border-radius-8);
  font-size: 13px;
  color: var(--color-black);
  background-color: var(--color-white);
  text-align: center;
}

#slider-fit {
  padding: 0 16px;
}

/***** End PRICE RANGE SLIDER *****/

/***** TAGS MULTI-SELECT (Choices.js) *****/

.choices {
  --choices-primary-color: var(--primary-green);
}

/***** End TAGS MULTI-SELECT *****/

/***** FILTER ACTION BUTTONS *****/

.btn-filter-apply,
.btn-filter-reset {
  padding: 10px 8px;
  font-size: 14px;
  white-space: nowrap;
}

.btn-filter-apply {
  border: 1px solid var(--primary-green);
  background-color: var(--primary-green);
  color: var(--color-white);
  transition: all var(--transition-base);
}

.btn-filter-apply:hover {
  background-color: var(--color-success);
  border-color: var(--color-success);
  color: var(--color-white);
}

.btn-filter-reset {
  border: 1px solid var(--color-red-accent);
  background-color: transparent;
  color: var(--color-red-accent);
  transition: all var(--transition-base);
}

.btn-filter-reset:disabled {
  border-color: var(--gray-055);
  color: var(--gray-095);
  cursor: not-allowed;
}

.btn-filter-reset:not(:disabled):hover {
  background-color: var(--color-red-accent);
  color: var(--color-white);
}

/***** End FILTER ACTION BUTTONS *****/

.sorting-bar select {
  min-width: 200px;
  padding: 5px;
  border: 1px solid var(--gray-060);
  border-radius: 5px;
  font-size: 16px;
  outline: none;
}

.sorting-bar .totals-sorting {
  font-size: 16px;
}

.sorting-bar .totals-sorting b {
  font-weight: 600;
}

/***** VIEW TOGGLE *****/
.view-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gray-060);
  border-radius: var(--border-radius-8);
  background-color: var(--color-white);
  color: var(--gray-090);
  cursor: pointer;
  transition: all var(--transition-base);
}

.view-toggle-btn i {
  font-size: 16px;
}

.view-toggle-btn.active,
.view-toggle-btn:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--color-white);
}

/***** End VIEW TOGGLE *****/

/***** TOAST NOTIFICATIONS *****/
.app-toast {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 2px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
}

/***** End TOAST NOTIFICATIONS *****/

/***** PRODUCT LIST VIEW *****/
#productGrid.list-view>[class*="col-"] {
  flex: 0 0 100%;
  max-width: 100%;
}

#productGrid.list-view .prod-card.single {
  flex-direction: row !important;
  align-items: center;
  gap: 20px;
  max-width: 100%;
  padding: 14px;
}

#productGrid.list-view .prod-card .img-wrapper {
  width: 100px;
  padding-bottom: 100px;
  flex-shrink: 0;
  border-radius: var(--border-radius-8);
}

#productGrid.list-view .prod-desc {
  display: grid !important;
  grid-template-columns: 90px 1fr auto auto;
  align-items: center;
  column-gap: 16px;
  row-gap: 2px;
  width: 100%;
  padding: 0;
}

#productGrid.list-view .prod-desc .cat {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
}

#productGrid.list-view .prod-desc .title {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

/* badge overlaps the product thumbnail instead of sitting in the text row */
#productGrid.list-view .prod-desc>div:not(.actions-wrapper):not(.prod-points) {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
}

#productGrid.list-view .prod-desc .prod-points {
  grid-column: 3;
  grid-row: 1;
  justify-content: flex-end;
  margin: 0;
}

#productGrid.list-view .prod-desc .price {
  grid-column: 3;
  grid-row: 2;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  white-space: nowrap;
  text-align: right;
}

#productGrid.list-view .prod-desc .actions-wrapper {
  grid-column: 4;
  grid-row: 1 / span 2;
  align-self: center;
  display: flex;
  flex-direction: row;
  width: auto;
  margin: 0;
  gap: 8px;
}

#productGrid.list-view .action-item {
  width: 40px;
  height: 40px;
  flex: none;
  padding: 0;
}

/***** End PRODUCT LIST VIEW *****/

/***** End CATALOG-PAGE *****/

/***** BLOG CARD *****/
.blog-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  width: 100%;
  border-radius: var(--border-radius-8);
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(var(--shadow-rgb), 0.08);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(var(--shadow-rgb), 0.12);
}

.blog-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.blog-card:hover img {
  transform: scale(1.06);
}

.blog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(1, 62, 37, 0.9) 0%,
      rgba(20, 58, 42, 0.62) 32%,
      rgba(26, 68, 50, 0.28) 62%,
      rgba(26, 68, 50, 0.28) 100%);
  pointer-events: none;
}

.blog-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
}

.blog-card-cat {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 11px;
  border-radius: 999px;
}

.blog-card-title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.32;
  color: var(--color-white);
  margin: 0;
}

.blog-card-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.blog-card-more {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-white);
}

.blog-card-more i {
  font-size: 12px;
}

/***** End BLOG CARD *****/

.sc-hd-wr .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sc-hd-wr .text-wrapper h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: var(--line-height-150);
  color: var(--color-black);
  margin-bottom: 0;
}

.sc-hd-wr .text-wrapper p {
  font-size: 15px;
  font-weight: 400;
  line-height: var(--line-height-150);
  color: var(--text-color);
  margin-bottom: 0;
}

/***** SUSTAINABILITY SECTION *****/
.sustainable-wrapper {
  gap: 50px;
}

.sustainable-text {
  flex: 0 0 34%;
  max-width: 34%;
}

.sustainable-eyebrow {
  margin-bottom: 16px;
}

.sustainable-eyebrow .eyebrow-line {
  width: 22px;
  height: 2px;
  background-color: var(--primary-green);
  display: inline-block;
}

.sustainable-eyebrow span:last-child {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-green);
}

.sustainable-text h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: var(--line-height-135);
  color: var(--color-black);
  margin-bottom: 16px;
}

.sustainable-text p {
  font-size: 15px;
  line-height: var(--line-height-175);
  color: var(--gray-100);
  margin-bottom: 20px;
}

.sustainable-text .view-more {
  max-width: none;
  width: auto;
  padding: 17px 24px;
  white-space: nowrap;
}

.sustainable-gallery {
  flex: 1;
  gap: 16px;
}

.sustainable-gallery-item {
  position: relative;
  display: block;
  flex: 1;
  border-radius: var(--border-radius-12);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  text-decoration: none;
}

.sustainable-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.sustainable-gallery-item:hover img {
  transform: scale(1.06);
}

.sustainable-gallery-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0));
  pointer-events: none;
}

.sustainable-gallery-item span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  color: var(--color-white);
  font-size: 17px;
  font-weight: 700;
}

/***** End SUSTAINABILITY SECTION *****/

/***** QUALITY GUARANTEE SECTION *****/
.quality-guarantee-section {
  background-color: var(--color-green-dark);
  padding: 50px 0;
}

.quality-guarantee-heading {
  margin: 0 auto 34px;
}

.quality-guarantee-heading i {
  font-size: 22px;
  color: var(--color-green-bright);
}

.quality-guarantee-heading h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--color-white);
}

.quality-guarantee-heading p {
  font-size: 13px;
  line-height: var(--line-height-150);
  color: rgba(var(--color-white-rgb), 0.6);
  margin: 8px 0 0;
}

.quality-guarantee-heading p a {
  color: var(--color-white);
  font-weight: 700;
  text-decoration: underline;
}

.quality-guarantee-cards {
  gap: 0;
}

.quality-guarantee-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 6px 20px;
  text-align: center;
}

.quality-guarantee-card:not(:first-child) {
  border-left: 1px solid rgba(var(--color-white-rgb), 0.12);
}

.quality-guarantee-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--border-rounded);
  background-color: rgba(var(--color-white-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quality-guarantee-icon i {
  font-size: 20px;
  color: var(--color-green-bright);
}

.quality-guarantee-card span:last-child {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: var(--line-height-135);
}

/***** End QUALITY GUARANTEE SECTION *****/

a.view-more {
  max-width: 170px;
  width: 100%;
  padding: 17px 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-color);
  border: 3px solid var(--light-gray-2);
  border-radius: var(--border-radius-32);
  text-align: center;
  transition: all var(--transition-base);
}

a.view-more i {
  margin-left: 10px;
  color: var(--primary-green);
  font-size: 13px;
  transition: all var(--transition-base);
}

a.view-more:hover {
  background-color: var(--primary-green);
  color: var(--color-white);
  border-color: var(--primary-green);
}

a.view-more:hover i {
  color: var(--color-white);
}

.btn-wr-sl {
  margin-top: 60px;
}

.btn-wr-sl button {
  width: 50px;
  height: 50px;
  margin: 0px 10px;
  border-radius: var(--border-rounded);
  border: 3px solid var(--light-gray-1);
  padding: 0;
  background-color: rgba(var(--color-white-rgb), 0);
  position: relative;
  transition: all var(--transition-base);
}

.btn-wr-sl button::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background: var(--primary-green);
  border-radius: var(--border-rounded);
  width: 0;
  height: 0;
  transition: all var(--transition-base);
  z-index: 1;
}

.btn-wr-sl button:hover::before {
  width: 100%;
  height: 100%;
}

.btn-wr-sl button:hover {
  background-color: rgba(var(--primary-green-rgb), 0.7);
  border: 3px solid var(--primary-green);
}

.btn-wr-sl button i {
  margin: 0;
  padding: 0;
  color: var(--color-dark-blue);
  font-size: 18px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  transition: all var(--transition-base);
}

.btn-wr-sl button:hover i {
  color: var(--color-white);
}

.btn-wr-sl .line {
  margin: 0px 7px;
  background-color: var(--primary-green);
  height: 1px;
  width: 40px;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(var(--color-pulse-green-rgb), 1);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(var(--color-pulse-green-rgb), 0);
  }
}

/***** Page Intro *****/

.page-intro {
  position: relative;
  width: 100%;
  padding: 0 0 45% 0;
}

.page-intro.min {
  position: relative;
  width: 100%;
  padding: 0 0 37.5% 0;
}

.page-intro img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%);
}

.page-intro.min img {
  object-position: 0 0;
}

.page-intro .intro-text-wrapper {
  position: absolute;
  width: 100%;
  bottom: 100px;
  left: 0;
}

.page-intro .page-intro-txt {
  color: var(--color-white);
  gap: 10px;
}

.breadcrumbs {
  gap: 7px;
}

nav .breadcrumb a {
  font-size: 15px;
  font-weight: 400;
  color: var(--primary-green);
}

.page-intro .breadcrumb {
  --bs-breadcrumb-item-active-color: var(--color-white);
  --bs-breadcrumb-divider-color: var(--color-white);
}

.page-intro .page-intro-txt h2 {
  font-size: 62px;
  font-weight: 500;
  line-height: 135%;
}

.page-intro .page-intro-txt h3 {
  font-size: 24px;
  font-weight: 300;
  line-height: 135%;
  margin-top: 15px;
  letter-spacing: 1.4px;
}

.page-intro .page-intro-txt p {
  font-size: 18px;
  font-weight: 300;
  line-height: 175%;
  max-width: 600px;
  width: 100%;
}

/***** End Page Intro *****/

/***** ERROR PAGE *****/

.error-page {
  padding: 250px 0;
}

.error-page-wrapper {
  max-width: 520px;
  margin: 0 auto;
}

.error-code {
  font-size: 140px;
  font-weight: 800;
  line-height: 1;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.error-page h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 12px;
}

.error-page p {
  font-size: 16px;
  color: var(--gray-090);
  margin-bottom: 32px;
}

.error-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--border-radius-8);
  background-color: var(--primary-green);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  transition: all var(--transition-base);
}

.error-home-btn:hover {
  background-color: var(--color-green-hover);
  color: var(--color-white);
}

.error-home-btn i {
  font-size: 18px;
}

/***** End ERROR PAGE *****/

/***** PRODUCT PAGE *****/

.prod-desc {
  gap: 15px;
}

.prod-desc h2 {
  font-size: 38px;
  line-height: var(--line-height-135);
  font-weight: 400;
  color: var(--color-black);
}

.prod-desc p {
  font-size: 16px;
  font-weight: 400;
  line-height: var(--line-height-175);
  color: var(--color-black);
}

.rel-hd-wr {
  margin-bottom: 30px;
  gap: 10px;
}

.rel-hd-wr h2 {
  font-size: 38px;
  line-height: var(--line-height-135);
  font-weight: 400;
  color: var(--color-black);
}

.rel-hd-wr p {
  font-size: 16px;
  line-height: var(--line-height-150);
  font-weight: 400;
  color: var(--text-color);
}

.related-slide {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.related-slide::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  height: 7px;
  width: 100%;
  background-color: var(--primary-green);
  transition: all var(--transition-base);
}

.related-slide:hover::after {
  bottom: 0px;
}

.related-slide .img-wrapper {
  position: relative;
  width: 100%;
  padding: 0 0 70% 0;
}

.related-slide .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(60%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-base);
}

.related-slide .slide-text {
  position: absolute;
  bottom: 15px;
  left: 20px;
  z-index: 1;
  gap: 5px;
}

.related-slide .slide-text h3 {
  font-size: 24px;
  font-weight: 300;
  line-height: var(--line-height-150);
  color: var(--color-white);
}

.related-slide .slide-text h4 {
  font-size: 16px;
  font-weight: 300;
  line-height: var(--line-height-150);
  color: var(--color-white);
  letter-spacing: 1.4px;
}

.related-slide:hover .img-wrapper img {
  filter: brightness(40%);
}

/***** End PRODUCT PAGE *****/

/***** Contact Page *****/
.contact-pg {
  margin-top: 50px;
}

.contact-pg-wrapper {
  gap: 100px;
}

.contact-pg .text-wrapper {
  width: 50%;
  gap: 20px;
}

.contact-pg .text-wrapper h2 {
  font-size: 38px;
  font-weight: 400;
  line-height: var(--line-height-150);
  color: var(--color-black);
}

.contact-pg .text-wrapper p {
  font-size: 16px;
  font-weight: 400;
  line-height: var(--line-height-175);
  color: var(--text-color);
}

.contact-pg .text-wrapper p span {
  color: var(--text-color);
  font-weight: 600;
}

.contact-pg .text-wrapper .contacts {
  gap: 10px;
}

.contact-pg .text-wrapper .contacts li {
  margin-bottom: 10px;
}

.contact-pg .text-wrapper .contacts a {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
}

.contact-pg .text-wrapper .contacts li i {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  font-size: 18px;
  background-color: var(--primary-green);
  color: var(--color-white);
  border-radius: var(--border-rounded);
}

.form-wrapper {
  width: 50%;
  gap: 20px;
}

.form-wrapper h2 {
  font-size: 38px;
  font-weight: 400;
  line-height: var(--line-height-150);
  color: var(--color-black);
}

.form-wrapper form {
  max-width: 100%;
  gap: 30px;
}

iframe.map {
  margin-top: 50px;
  margin-bottom: 100px;
}

/***** End Contact Page *****/

/***** Footer *****/

iframe {
  margin-top: 50px;
}

footer {
  width: 100%;
  background-color: var(--color-white);
  border-top: 1px solid var(--gray-030);
  margin-top: auto;
}

.footer-nav {
  padding: 48px 0px;
}

.footer-nav-section {
  max-width: 307px;
  width: 100%;
  padding: 0px 15px;
}

.footer-nav-row .footer-info {
  gap: 22px;
}

.footer-nav-row .footer-info .footer-logo {
  max-width: 250px;
  width: 100%;
  height: auto;
}

.footer-nav-row .footer-info h2 {
  color: var(--color-black);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0px;
}

.footer-nav-row .footer-info .footer-socials {
  gap: 12px;
}

.footer-nav-row .footer-info .footer-socials a {
  display: flex;
  color: var(--color-black);
  transition: color var(--transition-base);
}

.footer-nav-row .footer-info .footer-socials a:hover {
  color: var(--primary-green);
}

.footer-nav-row .footer-info .footer-socials svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-nav-row .footer-info p {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-black);
}

.footer-nav-row .footer-nav-section:nth-child(2) {
  padding-left: 48px;
}

.footer-nav-row .footer-nav-links h3 {
  font-size: 22px;
  line-height: var(--line-height-150);
  color: var(--color-black);
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-nav-row .footer-nav-links .footer-link {
  margin-bottom: 8px;
}

.footer-nav-row .footer-nav-links .footer-link a {
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: var(--line-height-150);
  color: var(--color-black);
  transition: color var(--transition-base);
}

.footer-nav-row .footer-nav-links .footer-link a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--primary-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.footer-nav-row .footer-nav-section:last-child .footer-link a {
  font-size: 16px;
  line-height: 24px;
}

.footer-nav-row .footer-nav-links .footer-link a:hover {
  color: var(--primary-green);
}

.footer-nav-row .footer-nav-links .footer-link a:hover::after {
  transform: scaleX(1);
}

.bottom-footer {
  height: 72px;
  background-color: var(--color-white);
  border-top: 1px solid var(--gray-030);
  width: 100%;
}

.bottom-footer h4 {
  margin-bottom: 0;
  color: var(--color-black);
  font-size: 16px;
  line-height: 24px;
}

/***** End Footer *****/

/***** End Main  *****/

/***** BTN WOW *****/
a.btn-wow {
  max-width: 250px;
  width: 100%;
  height: 65px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  width: 100%;
  text-align: center;
  color: var(--color-white);
  /* background-color: transparent; */
  border-radius: var(--border-radius-3);
  font-weight: 500;
  position: relative;
  /* overflow: hidden; */
  transition-delay: 0.3s;
  transition: all var(--transition-base);
}

a.btn-wow span.txt {
  position: absolute;
  transition: all var(--transition-base);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
}

a.btn-wow i.arrow {
  position: absolute;
  top: 50%;
  left: 18%;
  transform: translate(-50%, -50%);
  font-weight: 300;
  font-size: 30px;
  transition: all var(--transition-base);
  /* color: var(--primary-green); */
}

a.btn-wow::before {
  content: "";
  position: absolute;
  top: 0;
  left: -8%;
  width: 65px;
  height: 100%;
  border-radius: 50px;
  /*1*/
  border: 2px solid var(--color-white);
  /*2*/
  box-shadow: 0 0 0 0 rgba(var(--color-blue-accent-rgb), 0.5);
  transition: all var(--transition-base);
}

a.btn-wow:hover::before {
  width: 108%;
  height: 100%;
  border-radius: 100px;
  border-color: var(--primary-green);
  background-color: var(--primary-green);
  animation: unset;
}

a.btn-wow:hover i.arrow {
  left: 73%;
  color: var(--primary-white);
}

a.btn-wow:hover span.txt {
  left: 40%;
  color: var(--primary-white);
}

a.btn-wow span {
  position: relative;
  z-index: 1;
}

/***** End BTN WOW *****/

/* MODAL WINDOW */
.modal-overlay .modal-body {
  transition: all var(--transition-base);
  transition-delay: 0.2s;
  position: relative;
  bottom: -100%;
  opacity: 1;
  visibility: hidden;
}

.modal-overlay._active .modal-body {
  visibility: visible;
  opacity: 1;
  bottom: 0;
}

.close-modal-window {
  color: var(--color-icon-dark);
  font-size: 22px !important;
  cursor: pointer;
  transition: all var(--transition-base);
}

.modal-overlay .close-modal-window:hover {
  color: var(--color-red-light);
}

/* MODAL WIDNOW */

/***** CONTACT MODAL WINDOW *****/

.contact-modal-body {
  max-width: 800px;
  width: 100%;
  background-color: var(--color-white);
  border-radius: var(--border-radius-24);
  overflow: hidden;
  margin: 10px;
}

.contact-modal-body .img-wrapper {
  max-width: 40%;
  width: 100%;
  position: relative;
  padding: 0 0 66.25% 0;
}

.contact-modal-body .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-modal-body .text-wrapper {
  padding: 35px 25px;
  gap: 10px;
}

.contact-modal-body .text-wrapper h2 {
  font-size: 32px;
  font-weight: 400;
  line-height: var(--line-height-150);
  color: var(--color-dark-blue);
}

.contact-modal-body .text-wrapper h4 {
  font-size: 18px;
  font-weight: 300;
  line-height: var(--line-height-150);
  color: var(--text-color);
  margin-bottom: 15px;
}

.contact-form-popup {
  max-width: 80%;
  width: 100%;
  gap: 20px;
}

.contact-form-popup input {
  width: 100%;
  background-color: var(--light-gray-1);
  border: none;
  padding: 15px 20px;
  border-radius: var(--border-radius-24);
  font-size: 17px;
  font-weight: 400;
  color: var(--color-dark-blue);
  outline: none;
}

.contact-form-popup .get-quote {
  border: none;
  color: var(--color-white);
  font-size: 18px;
  line-height: var(--line-height-150);
  transition: all var(--transition-base);
  margin-top: 10px;
}

.contact-form-popup .get-quote:hover {
  animation: none;
  background-color: var(--color-green-hover);
}

/***** End CONTACT MODAL WINDOW *****/

/***** ACCOUNT PAGE *****/

.main._account {
  margin-top: calc(var(--header-height, 155px) + 24px);
}

.account-info {
  border-radius: var(--border-radius-8);
  padding: 15px 15px;
  /* background-color: rgba(var(--primary-green-rgb), 0.2); */
  background-color: var(--light-gray-1);
}

.account-info h3 {
  font-size: 16px;
  font-weight: 600;
}

.account-info .account-bonuses {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color);
}

.account-info .account-bonuses i {
  color: var(--primary-green);
  font-size: 16px;
}

.account-info .account-bonuses span {
  color: cornflowerblue;
  font-weight: 600;
}

.results-query-wrapper {
  font-size: 15px;
  color: var(--color-black);
}

.results-query-wrapper span {
  font-weight: 600;
}

.cig-select {
  position: relative;
  width: 220px;
}

.selected {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--gray-055);
  border-radius: 10px;
  cursor: pointer;
  background: var(--color-white);
}

.arrow {
  margin-left: auto;
  opacity: 0.6;
}

.options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: var(--color-white);
  border: 1px solid var(--gray-050);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(var(--shadow-rgb), 0.08);
  display: none;
  z-index: 10;
  overflow: hidden;
}

.option {
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.option:hover {
  background: var(--gray-015);
}

/* status dots */
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.all {
  background: var(--gray-095);
  /* neutral */
}

.option._default {
  font-weight: 500;
}

.option._active {
  background: var(--gray-020);
}

.pending {
  background: var(--color-status-pending);
}

.processing {
  background: var(--color-status-processing);
}

.completed {
  background: var(--color-status-completed);
}

.cancelled {
  background: var(--color-status-cancelled);
}

.dot.active,
span.circle.active {
  background: var(--primary-green);
}

.dot.expired,
span.circle.expired {
  background: var(--gray-100);
}

/* open state */
.cig-select._open .options {
  display: block;
}

.cig-select .arrow {
  margin-left: auto;
  cursor: pointer;
  opacity: 0.6;
}

.acc-cnt-name {
  font-size: 24px;
  font-weight: 500;
}

.points-total-badge {
  background-color: var(--color-green-tint-2);
  color: var(--color-green-dark);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--border-radius-24);
}

.points-total-badge i {
  color: var(--primary-green);
  font-size: 15px;
}

.points-total-badge strong {
  color: var(--primary-green);
  font-weight: 700;
}

.account-nav ul h2 {
  font-size: 16px;
  font-weight: 600;
  padding: 0px 5px;
}

.account-nav ul a {
  padding: 10px 15px;
  border-radius: var(--border-radius-8);
  transition: all var(--transition-base);
}

.account-nav ul a i {
  font-size: 16px;
  color: var(--text-color);
  font-size: 16px;
}

.account-nav ul a span {
  font-size: 14px;
  color: var(--gray-130);
  font-weight: 500;
}

.account-nav ul a i,
.account-nav ul a span {
  transition: all var(--transition-base);
}

.account-nav ul a._active {
  background-color: var(--light-gray-1);
}

.account-nav ul a._active i {
  color: var(--color-black);
}

.account-nav ul a:hover {
  background-color: var(--light-gray-1);
}

.account-nav ul a:hover i {
  color: var(--color-black);
}

.account-nav ul a:hover span {
  color: var(--color-black);
}

.history-pagination .pagination-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid var(--gray-060);
  color: var(--color-black);
  border-radius: 5px;
}

.history-pagination {
  margin-top: 1rem;
  margin-bottom: 1rem !important;
}


/***** End ACCOUNT PAGE *****/

/***** AUTH *****/
._page-auth {
  margin-top: var(--header-height, 120px);
}

._auth {
  height: 85vh;
}

._auth .img-wrapper {
  width: 100%;
  padding: 0 0 100% 0;
  position: relative;
  border-radius: var(--border-radius-12);
  overflow: hidden;
}

._auth .img-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.auth-form .form-text h1 {
  color: var(--color-black);
  font-size: 32px;
  font-weight: 500;
}

.auth-form .form-text p {
  max-width: 65%;
  line-height: var(--line-height-135);
  font-size: 14px;
}

.auth-form-wr label {
  font-size: 14px;
  font-weight: 400;
  padding: 3px;
}

.auth-form-wr .form-control:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: var(--gray-070);
  /* or your custom color */
}

.auth-form-wr .form-control {
  font-size: 15px;
  border-radius: 4px !important;
}

.auth-form-wr .form-control::placeholder {
  font-size: 14px;
}

.auth-button {
  padding: 15px;
  border: none;
  border-radius: 4px;
  color: var(--color-white);
  background-color: var(--primary-green);
  transition: all var(--transition-base);
}

.auth-form-wr .auth-button:hover {
  background-color: var(--color-success);
}

.auth-form-wr .form-check label {
  margin: 0 !important;
  padding: 0 !important;
}

.auth-form-wr .form-check input {
  margin-top: 0px;
  margin-right: 10px;
}

.auth-form-wr .auth-link {
  color: var(--primary-green);
  border-bottom: 1px solid var(--primary-green);
  transition: all var(--transition-base);
}

.auth-form-wr .auth-link.no-b {
  border: none;
}

.auth-form-wr .auth-link:hover {
  color: var(--color-green-medium);
}

.auth-collage img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.collage-main {
  height: 320px;
}

.collage-small {
  height: 150px;
}

/***** End AUTH *****/


.article-content {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.article-content .article-title {
  font-size: 35px;
  line-height: 42px;
  font-weight: 600px;
}

.article-content p {
  font-size: 18px;
  font-weight: 400px;
  line-height: 31px;
  margin-top: 36px;
}

/***** PEOPLE & PLANET SECTION (dark full-bleed banner) *****/
.people-planet-section {
  background-color: var(--color-green-deepest);
}

.people-planet-panel {
  gap: 60px;
  padding: 90px 8%;
}

.people-planet-text {
  flex: 0 0 42%;
  max-width: 42%;
}

.people-planet-text h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: var(--line-height-135);
  color: var(--color-white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.people-planet-text p {
  font-size: 15px;
  line-height: var(--line-height-175);
  color: rgba(var(--color-white-rgb), 0.75);
  margin-bottom: 16px;
}

.people-planet-text .btn-wow {
  margin-top: 12px;
}

.people-planet-media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.people-planet-badge {
  width: 320px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
}

/***** End PEOPLE & PLANET SECTION *****/

/***** STORY SPLIT (article-content image/text history & mission blocks) *****/
.story-split {
  gap: 60px;
}

.story-split-media {
  flex: 0 0 50%;
  max-width: 50%;
}

.story-split-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-12);
}

.story-split-text {
  flex: 1;
}

.story-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 14px;
}

.story-split-text h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: var(--line-height-135);
  color: var(--color-black);
  margin-bottom: 18px;
}

.story-split-text p {
  font-size: 15px;
  line-height: var(--line-height-175);
  color: var(--gray-100);
  margin: 0 0 16px;
}

.story-split-text p:last-child {
  margin-bottom: 0;
}

/***** End STORY SPLIT *****/

/***** PERKS GRID (article-content "why choose us" cards) *****/
.perks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.perk-card {
  background-color: var(--gray-005);
  border: 1px solid var(--gray-030);
  border-radius: var(--border-radius-12);
  padding: 32px;
}

.perk-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--border-rounded);
  background-color: var(--color-green-tint);
  color: var(--primary-green);
  font-size: 26px;
  margin-bottom: 20px;
}

.perk-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 12px;
}

.perk-card p {
  font-size: 15px;
  line-height: var(--line-height-175);
  color: var(--gray-100);
  margin: 0 0 16px;
}

.perk-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-green);
  text-decoration: none;
}

.perk-link i {
  font-size: 13px;
  transition: transform var(--transition-base);
}

.perk-link:hover {
  color: var(--color-green-hover);
}

.perk-link:hover i {
  transform: translate(2px, -2px);
}

/***** End PERKS GRID *****/

.article-block__img img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.article-block__text,
.article-block__img {
  max-height: 700px;
  overflow: hidden;
}

.article-block__img {
  position: relative;
}

.article-block__text {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 70px;
  background-color: var(--color-green-tint-2);
}

.article-block__text h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--color-black);
}

.article-block__author {
  font-size: 14px;
  color: var(--gray-105);
}

.article-block__img-icons {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.article-block__img-icons a {
  color: var(--color-white);
  font-size: 18px;
  line-height: 1;
  opacity: 0.9;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35));
  transition: all var(--transition-base);
}

.article-block__img-icons a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.article-quote-banner {
  position: relative;
  width: 100%;
  padding: 0 0 45% 0;
  overflow: hidden;
  border-radius: 12px;
}

.article-quote-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.article-quote-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(41, 112, 80, 0) 0%, rgba(1, 62, 37, 0.9) 100%);
  pointer-events: none;
  z-index: 1;
}

.article-quote-banner__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 900px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  z-index: 2;
}

.article-quote-banner__text h3 {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.article-quote-banner__author {
  font-size: 14px;
  color: var(--color-white);
  opacity: 0.9;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.article-gallery-row {
  gap: 24px;
  margin-top: 36px;
}

.article-gallery-row__item {
  flex: 1 1 0;
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
}

.article-gallery-row__item--tall {
  flex: 0.85 1 0;
}

.article-gallery-row__item--wide {
  flex: 1.3 1 0;
}

.article-gallery-row__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.article-gallery-credit {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--gray-100);
}

.feature-split {
  gap: 60px;
}

.feature-split__img {
  flex: 0 0 45%;
  max-width: 45%;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
}

.feature-split__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.feature-split__text {
  flex: 1 1 0;
}

.feature-split__text h2 {
  margin: 0 0 20px 0;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-black);
}

.feature-split__text>p {
  max-width: 520px;
  margin: 0 0 24px 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-130);
}

.feature-split__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-split__list li {
  position: relative;
  max-width: 520px;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-130);
}

.feature-split__list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary-green);
}

.feature-split__list strong {
  color: var(--color-black);
  font-weight: 600;
}

.partner-img__container img {
  width: 100%;
  height: 100%;
  max-height: 50px;
  object-fit: contain;
}

.partner-section {
  margin-top: 50px;
  margin-bottom: 50px;
}

.prod-comments-list {
  max-height: 382px;
  overflow-y: auto;
  padding-right: 20px;
}