﻿/*
** Bootstrap-compatible breakpoints only:
** xxl down: 1399.98px | xl down: 1199.98px | lg down: 991.98px
** md down: 767.98px  | sm down: 575.98px
*/

@media (max-width: 1399.98px) {
   .contact-wrapper.email-wrapper {
      display: none !important;
   }
}

@media (max-width: 1199.98px) {
   .hd-drop-link.shop .sub-menu {
      position: absolute;
      top: 110%;
      left: 0%;
      display: block;
      width: auto;
      column-count: 2;
      column-gap: 4px;
      padding: 10px 5px;
   }

   .hd-drop-link.shop .sub-menu li {
      break-inside: avoid;
   }

   .footer-nav-row .footer-info h2 {
      font-size: 16px !important;
   }

   /* flatten table */
   .cart-table-head {
      display: none;
   }

   /* card */
   .cart-row {
      position: relative;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-areas:
         "product product product"
         "divider divider divider"
         "price qty total";
      align-items: center;
      column-gap: 10px;
      row-gap: 14px;
      padding: 16px;
      border-radius: 14px;
      background: #fff;
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
      margin-bottom: 14px;
      border-bottom: none;
   }

   .cart-row::before {
      content: "";
      grid-area: divider;
      height: 1px;
      background: var(--gray-025);
   }

   .cart-row>div {
      display: block;
      flex: none;
      padding: 0;
      border: none;
   }

   .cart-row .cart-product {
      grid-area: product;
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 14px;
      padding-right: 34px;
      min-width: 0;
   }

   .cart-row .cart-product img {
      width: 84px;
      height: 84px;
      max-width: 84px;
      border-radius: 10px;
   }

   .cart-row .cart-product-info {
      flex: 1;
      min-width: 0;
   }

   .cart-row .cart-price {
      grid-area: price;
      min-width: 0;
   }

   .cart-row .cart-qty {
      grid-area: qty;
      display: flex;
      justify-content: center;
      min-width: 0;
   }

   .cart-row .cart-total {
      grid-area: total;
      text-align: right;
      min-width: 0;
   }

   .cart-row .cart-remove-cell {
      grid-area: unset;
      position: absolute;
      top: 16px;
      right: 16px;
      border-top: none;
      margin-top: 0;
   }

   /* order-history card: Order #, Date, Status, Total, Details button */
   .cart-table._history .cart-row {
      grid-template-columns: 1fr auto;
      grid-template-areas:
         "hist-order hist-status"
         "hist-date hist-status"
         "divider divider"
         "hist-total hist-details";
   }

   .cart-table._history .cart-row>*:nth-child(1) {
      grid-area: hist-order;
      font-size: 16px;
      font-weight: 600;
      color: var(--color-dark-blue);
   }

   .cart-table._history .cart-row>*:nth-child(2) {
      grid-area: hist-date;
      font-size: 13px;
      color: var(--gray-110);
   }

   .cart-table._history .cart-row>*:nth-child(3) {
      grid-area: hist-status;
      align-self: start;
      justify-self: end;
   }

   .cart-table._history .cart-row>*:nth-child(4) {
      grid-area: hist-total;
      align-self: center;
      font-size: 17px;
      font-weight: 700;
      color: var(--color-dark-blue);
   }

   .cart-table._history .cart-row>*:nth-child(5) {
      grid-area: hist-details;
      align-self: center;
      justify-self: end;
   }

   .pre-header {
      padding: 10px 20px;
   }

   .pre-header a {
      font-size: 13px;
   }

   .contact-wrapper.phone-wrapper {
      display: none !important;
   }

   .sc-hd-wr .text-wrapper h2 {
      font-size: 26px !important;
   }

   .sc-hd-wr .text-wrapper p {
      font-size: 14px;
   }

   .contact-pg .text-wrapper h2,
   .form-wrapper h2 {
      font-size: 32px;
   }

   .sustainable-text h2 {
      font-size: 28px;
   }

   .navigation-bar {
      width: auto;
      justify-content: unset !important;
      gap: 20px;
   }

   .header-row {
      justify-content: space-between !important;
   }

   .filter__pod-single h4 {
      font-size: 22px;
   }

   h2 {
      font-size: 38px;
   }

   .about-us__homepage,
   .our-offer__homepage {
      padding: 40px 10px;
   }

   .our-offer-row__homepage {
      flex-direction: column-reverse !important;
   }

   .why-whe__row,
   .about-us-row__homepage {
      flex-direction: column !important;
      gap: 40px;
   }

   .why-whe__row {
      flex-direction: column !important;
      gap: 15px;
   }

   .about-us-row__homepage .offer-text,
   .our-offer__homepage .offer-text {
      max-width: 100%;
      width: 100%;
      text-align: center;
      align-items: center;
   }

   .why-we_item,
   .about-us-row__homepage .offer-links,
   .our-offer__homepage .offer-links {
      max-width: 100%;
   }

   .video-about {
      padding: 0 0 35% 0;
   }

   .video-modal-body {
      position: relative;
      padding: 0 0 56.25% 0;
      max-width: 800px;
      margin: 0px 10px;
   }

   .main._homepage {
      margin-top: 80px;
   }

   .main-slider__slide .img-wrapper {
      padding: 0 0 55% 0;
   }

   .main-slider__slide .main-slider__text {
      left: 25% !important;
      max-width: 450px;
   }

   .main-slider__slide .main-slider__text h2 {
      font-size: 38px !important;
   }

   .main-slider__slide .main-slider__text p {
      font-size: 16px;
   }

   .main-slide-btn-wr {
      display: none !important;
   }

   a.btn-wow {
      height: 50px;
   }

   a.btn-wow::before {
      width: 50px;
   }

   a.btn-wow span.txt {
      font-size: 16px;
      left: 40%;
   }

   a.btn-wow i.arrow {
      left: 13%;
   }

   a.btn-wow:hover i.arrow {
      left: 67%;
      color: var(--primary-white);
   }

   .menu-icon {
      display: block;
   }

   .menu-links {
      width: 100% !important;
      gap: 20px;
   }

   .menu-links li {
      width: auto !important;
   }

   .main-nv-ln.ds-none {
      display: block !important;
   }

   .mobile-contact-btns.ds-none {
      display: flex !important;
   }

   .menu-links li:not(.shop):not(.lang) .sub-menu {
      position: relative;
      display: none !important;
      flex-direction: column;
      top: 0;
      left: 0;
      max-width: 100%;
      width: 100%;
      background-color: white;
      visibility: hidden;
      opacity: 0;
      transition: all var(--transition-base);
      max-height: 0px;
      margin-left: 15px;
      margin-top: 15px;
   }

   .menu-links li:not(.shop):not(.lang) .sub-menu._active {
      top: 0;
      display: flex !important;
      visibility: visible;
      opacity: 1;
      max-height: 1000px;
   }

   /* Shop & language dropdowns: instead of expanding inline, they slide in
      from the left as their own full-height panel, mirroring the main
      off-canvas nav */
   .hd-drop-link.shop .sub-menu,
   .hd-drop-link.lang .sub-menu {
      display: flex !important;
      flex-direction: column;
      align-items: stretch;
      position: fixed;
      top: var(--header-height, 118px);
      left: -100%;
      width: 30%;
      height: 100%;
      max-width: none;
      max-height: none;
      margin: 0;
      padding: 15px 25px 150px 25px;
      background-color: white;
      box-shadow: none;
      border-radius: 0;
      opacity: 1;
      visibility: visible;
      overflow-y: scroll;
      scrollbar-width: none;
      -ms-overflow-style: none;
      transition: left var(--transition-base);
      z-index: 5;
   }

   .hd-drop-link.shop .sub-menu::-webkit-scrollbar,
   .hd-drop-link.lang .sub-menu::-webkit-scrollbar {
      display: none;
   }

   .hd-drop-link.shop .sub-menu._active,
   .hd-drop-link.lang .sub-menu._active {
      left: 0;
   }

   .sub-menu-back {
      display: flex !important;
      flex-direction: row;
      align-items: center;
      gap: 8px;
      padding: 5px 14px 15px 14px;
      margin-bottom: 10px;
      border-bottom: 1px solid var(--gray-025);
      font-weight: 600;
      text-transform: capitalize;
      cursor: pointer;
   }

   .sub-menu-back i {
      font-size: 18px;
      color: var(--primary-green);
   }

   .navigation-bar {
      position: fixed;
      top: var(--header-height, 118px);
      padding: 40px 25px 150px 25px;
      left: -100%;
      width: 30%;
      height: 100%;
      background-color: white;
      flex-direction: column !important;
      align-items: start !important;
      overflow: scroll;
      scrollbar-width: none;
      -ms-overflow-style: none;
      transition: all var(--transition-base);
   }

   .navigation-bar::-webkit-scrollbar {
      display: none;
   }

   .navigation-bar._active {
      left: 0;
   }

   .menu-links,
   .header-contacts {
      flex-direction: column !important;
      align-items: start !important;
   }

   .header-contacts {
      flex: none;
      flex-direction: row !important;
      flex-wrap: wrap;
      justify-content: space-between;
      width: 100%;
      gap: 20px;
   }

   /* icons escape the off-canvas panel and sit in the header row, next to the burger */
   .header-icons {
      position: fixed;
      top: var(--header-row-center, 78px);
      right: 85px;
      transform: translateY(-50%);
      gap: 20px;
      z-index: 3;
   }

   /* notification, wishlist and account icons: search + cart only on medium/small devices */
   .header-icons>*:nth-child(2),
   .header-icons>*:nth-child(3),
   .header-icons>*:nth-child(5) {
      display: none !important;
   }

   .header-row .header-logo {
      max-width: 140px;
   }

   .contact-wrapper.phone-wrapper,
   .contact-wrapper.email-wrapper {
      display: flex !important;
   }

   .faq-wrapper {
      flex-direction: column !important;
      align-items: center;
      gap: 50px;
   }

   .faq .faq-text {
      max-width: 100%;
      align-items: center;
      text-align: center;
   }

   .faq-col {
      max-width: 100%;
   }

   .faq-items .item {
      max-width: 100%;
   }

   .pod-detail__slide {
      flex-direction: column !important;
      gap: 50px;
   }

   .pod-detail__slide .img-wrapper {
      max-width: 100%;
      padding: 0 0 50% 0;
   }

   .pod-detail__slide .prod-description {
      max-width: 100%;
   }

   .pod-features {
      max-width: 100%;
      flex-wrap: nowrap !important;
      justify-content: space-between !important;
   }

   .pod-features li {
      max-width: 16%;
   }

   .explore__btn {
      align-self: center;
   }

   .gallery-slide {
      padding: 0 0 30% 0;
   }

   .footer-nav-row {
      display: grid !important;
      grid-template-columns: repeat(2, 1fr);
      /* flex-direction: column !important; */
      gap: 40px;
   }

   .footer-nav-row .footer-nav-section:nth-child(2) {
      padding-left: 15px;
   }
}

@media (max-width: 991.98px) {

   /* product single: weight + qty stepper on the same row */
   .prod-specs-row {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-end;
      gap: 40px;
   }

   .prod-specs-row .prod-weight-group,
   .prod-specs-row .qty-wrapper {
      flex: none;
   }

   /* product single: add-to-cart full width on its own row */
   .prod-page .prod-actions-row .add-to-cart-btn {
      width: 100%;
      max-width: none;
   }

   /* product single: tighter spacing/sizing for the info column */
   .prod-info-col h1 {
      font-size: 22px;
   }

   .prod-info-col>.d-flex.mb-2 {
      margin-bottom: 6px !important;
   }

   .prod-info-col>p.text-muted {
      margin-bottom: 10px !important;
      font-size: 13px;
   }

   .prod-info-col .prod-badges {
      gap: 6px !important;
      margin-bottom: 10px !important;
   }

   .prod-info-col .prod-badges .badge {
      padding: 4px 8px;
      font-size: 11px;
   }

   .prod-page .prod-info-col .prod-pricing {
      gap: 8px !important;
      margin-bottom: 10px !important;
      margin-top: 0 !important;
   }

   .prod-page .prod-info-col .prod-pricing .price-new {
      font-size: 24px;
   }

   .prod-page .prod-info-col .prod-pricing .price-old {
      font-size: 14px;
   }

   .prod-info-col .mb-4 {
      margin-bottom: 14px !important;
   }

   .prod-info-col h6 {
      font-size: 13px;
      margin-bottom: 6px !important;
   }

   .prod-info-col .variation {
      padding: 8px 12px;
      font-size: 14px;
   }

   .prod-info-col .prod-actions-row {
      gap: 10px !important;
   }

   .prod-page .prod-info-col .add-to-cart-btn {
      font-size: 15px;
      padding-top: 10px;
      padding-bottom: 10px;
   }

   .prod-page .prod-info-col .add-to-cart-btn i {
      font-size: 17px;
   }

   /* catalog filters: bottom sheet instead of always-visible sidebar */
   .mobile-filter-btn {
      display: inline-flex;
      flex-direction: row;
      align-items: center;
      gap: 8px;
   }

   .filter-aside {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1050;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      background: rgba(var(--shadow-rgb), 0.5);
      opacity: 0;
      visibility: hidden;
      margin-top: unset;
      transition: opacity var(--transition-base), visibility var(--transition-base);
   }

   .filter-aside._active {
      opacity: 1;
      visibility: visible;
   }

   .filter-aside .filter-box {
      width: 100%;
      max-height: 85vh;
      overflow-y: auto;
      scrollbar-width: none;
      -ms-overflow-style: none;
      border-radius: 20px 20px 0 0;
      background-color: var(--color-white);
      transform: translateY(100%);
      transition: transform var(--transition-base);
      gap: 8px !important;
      padding: 20px;
   }

   .filter-section {
      padding-left: 16px;
   }

   .filter-aside .filter-box::-webkit-scrollbar {
      display: none;
   }

   .filter-aside._active .filter-box {
      transform: translateY(0);
   }

   .filter-close-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: auto;
      width: 32px;
      height: 32px;
      flex: none;
      border: none;
      border-radius: 100%;
      background: var(--gray-025);
      color: var(--color-dark-blue);
      cursor: pointer;
   }

   /* list-view card: 2 columns - cat/title/price/points stacked, actions-wrapper on the side */
   #productGrid.list-view .prod-desc {
      display: grid !important;
      grid-template-columns: 1fr auto;
      grid-template-areas:
         "cat actions"
         "title actions"
         "price actions"
         "points actions";
      align-items: center;
      column-gap: 16px;
      row-gap: 6px;
      width: 100%;
   }

   #productGrid.list-view .prod-desc .cat {
      grid-area: cat;
      flex: none;
   }

   #productGrid.list-view .prod-desc .title {
      grid-area: title;
      flex: none;
      min-width: 0;
   }

   #productGrid.list-view .prod-desc .price {
      grid-area: price;
      justify-self: start;
   }

   #productGrid.list-view .prod-desc .prod-points {
      grid-area: points;
      justify-self: start;
      justify-content: flex-start;
   }

   #productGrid.list-view .prod-desc .actions-wrapper {
      grid-area: actions;
      align-self: center;
      margin-left: 0;
   }

   .message {
      display: none;
   }

   .contact-pg-wrapper {
      flex-direction: column !important;
      gap: 50px;
   }

   .contact-pg .text-wrapper,
   .form-wrapper {
      width: 100%;
   }

   .filter__pod-single {
      max-width: 30.5%;
      padding: 0 0 25% 0;
   }

   .filter__pod-single h4 {
      font-size: 20px;
   }

   .video-about {
      padding: 0 0 40% 0;
   }

   .video-about .text-wrapper h2 {
      font-size: 26px !important;
   }

   .pre-header {
      justify-content: space-between !important;
      align-items: center;
      gap: 10px;
      padding: 10px 15px;
   }

   .pre-header .pre-menu {
      flex-wrap: wrap;
      justify-content: center;
   }

   .pre-header a {
      font-size: 12px;
   }

   .hd-drop-link.shop .sub-menu,
   .hd-drop-link.lang .sub-menu {
      width: 40%;
   }

   .navigation-bar {
      width: 40%;
   }

   .promo-offer {
      padding: 60px 10px;
   }

   .promo-offer__row {
      flex-direction: column !important;
      gap: 50px;
   }

   .pod-detail__slide {
      align-items: center !important;
      justify-content: center !important;
   }

   .pod-features {
      max-width: 100%;
      flex-wrap: wrap !important;
   }

   .pod-features li {
      max-width: 31%;
   }

   .main-slider__slide .img-wrapper {
      padding: 0 0 65% 0;
   }

   .main-slider__slide .main-slider__text {
      left: 35% !important;
   }

   .gallery-slide {
      padding: 0 0 40% 0;
   }

   .video-modal-body {
      padding: 0 0 67.25% 0;
      max-width: 800px;
      margin: 0px 10px;
   }

   .gallery-slider-single {
      max-width: 867px;
   }

   .gallery-slide-single {
      padding: 0 0 60% 0;
   }

   .sustainable-wrapper {
      flex-direction: column !important;
      align-items: stretch !important;
      gap: 30px;
   }

   .sustainable-text {
      flex: 0 0 100%;
      max-width: 100%;
   }

   .sustainable-gallery {
      width: 100%;
   }

   .quality-guarantee-cards {
      flex-wrap: wrap;
      gap: 24px 12px;
   }

   .quality-guarantee-card {
      flex: 0 0 calc(50% - 6px);
   }

   .quality-guarantee-card:not(:first-child) {
      border-left: none;
   }

   /* Blog article */
   .article-content .article-title {
      font-size: 30px;
      line-height: 38px;
   }

   .article-block__text {
      padding: 40px;
   }

   .article-block__text h3 {
      font-size: 24px;
   }

   .article-quote-banner {
      padding-bottom: 55%;
   }

   .article-quote-banner__text h3 {
      font-size: 30px;
   }

   .article-gallery-row {
      gap: 16px;
   }

   .article-gallery-row__item {
      height: 260px;
   }

   .feature-split {
      gap: 36px;
   }

   .feature-split__img {
      height: 360px;
   }

   .feature-split__text h2 {
      font-size: 28px;
   }
}

@media (max-width: 767.98px) {

   .perks-grid {
      grid-template-columns: 1fr;
   }

   .story-split,
   .story-split--reverse {
      flex-direction: column !important;
      gap: 24px;
   }

   .story-split-media,
   .story-split-text {
      flex: 0 0 100%;
      max-width: 100%;
   }

   .people-planet-panel {
      flex-direction: column !important;
      padding: 56px 24px;
      gap: 32px;
   }

   .people-planet-text {
      flex: 0 0 100%;
      max-width: 100%;
   }

   .people-planet-media {
      order: -1;
   }

   .people-planet-badge {
      width: 220px;
   }

   .checkout-steps.small::before,
   .checkout-steps.small::after {
      left: 12px;
      right: 12px;
   }

   .checkout-steps.small .step-index {
      width: 28px;
      height: 28px;
      font-size: 12px;
   }

   .checkout-steps.small .step-label {
      font-size: 11px;
   }

   .error-code {
      font-size: 80px;
   }

   .error-page h2 {
      font-size: 24px;
   }

   /* contact page hero: give the text room so it doesn't overflow above the banner */
   .page-intro.min {
      padding: 0 0 85% 0;
   }

   .page-intro .intro-text-wrapper {
      bottom: 24px;
   }

   .page-intro .page-intro-txt h2 {
      font-size: 30px;
   }

   .page-intro .page-intro-txt p {
      font-size: 14px;
      line-height: 160%;
   }

   #productGrid.list-view .prod-card.single {
      gap: 5px;
      width: 100%;
   }

   #productGrid.list-view .prod-desc .actions-wrapper {
      flex-direction: column;
   }

   /* grid-view card: force vertical stacking, guard against any row-layout bleed */
   #productGrid:not(.list-view) .prod-card.single {
      flex-direction: column !important;
      width: 100%;
   }

   #productGrid:not(.list-view) .prod-card .img-wrapper {
      width: 100%;
      padding-bottom: 100%;
   }

   #productGrid:not(.list-view) .prod-desc {
      flex-direction: column !important;
      align-items: flex-start;
      width: 100%;
      gap: 8px;
   }

   #productGrid:not(.list-view) .prod-desc .title {
      width: 100%;
      font-size: 16px;
      white-space: normal;
   }

   #productGrid:not(.list-view) .actions-wrapper {
      width: 100%;
   }

   .content-heading {
      gap: 1rem;
   }

   .wish-list-wrapper {
      grid-template-columns: repeat(2, 1fr);
   }

   .cart-page {
      flex-direction: column !important;
      gap: 30px !important;
   }

   .cart-layer,
   .totals-wrapper {
      max-width: 100%;
   }

   .checkout-form .row {
      --bs-gutter-y: 1rem;
   }

   .sorting-bar {
      flex-wrap: wrap;
      row-gap: 12px;
   }

   .sorting-bar select {
      min-width: 0;
      width: 100%;
   }

   .sorting-bar .totals-sorting {
      font-size: 14px;
   }

   .sorting-bar .sorting-meta {
      width: 100%;
      justify-content: space-between;
   }

   .header-icons {
      right: 65px;
   }

   .main-slider__slide .img-wrapper {
      padding: 0 0 68% 0;
   }

   .main-slider__slide .main-slider__text {
      left: 32% !important;
   }

   .video-about {
      padding: 0 0 40% 0;
   }

   .video-about .text-wrapper h2 {
      max-width: 600px;
      font-size: 22px !important;
   }

   .gallery-slider-single {
      max-width: 768px;
   }

   .gallery-slide-single {
      padding: 0 0 70% 0;
   }

   /* product */
   .cart-row {
      grid-template-columns: 1fr 1fr 1fr;
      grid-template-areas:
         "product product product"
         "divider divider divider"
         "price qty total";
      padding: 14px;
   }

   .cart-row .cart-qty {
      justify-content: center;
   }

   .cart-product {
      gap: 10px;
   }

   .cart-product img {
      width: 64px;
      height: 64px;
   }

   .cart-info {
      align-items: start !important;
      flex-direction: column !important;
      gap: 20px;
   }

   .cart-product-info strong {
      font-size: 14px;
   }

   .cart-code,
   .stock {
      font-size: 12px;
   }

   /* price */
   .price-new {
      font-size: 15px;
   }

   /* qty + total */
   .cart-total {
      font-size: 17px;
   }

   /* tighter qty */
   .qty-control button {
      width: 30px;
      height: 30px;
   }

   .qty-control input {
      width: 38px;
      font-size: 14px;
   }

   .hd-drop-link.shop .sub-menu,
   .hd-drop-link.lang .sub-menu {
      width: 50%;
   }

   .navigation-bar {
      width: 50%;
   }

   .header-row {
      gap: 50px;
      padding: 0px 15px;
      height: 80px;
   }

   .main-slider__slide .img-wrapper {
      padding: 0 0 72% 0;
   }

   .main-slider__slide .main-slider__text {
      left: 33% !important;
   }

   .filter__pod-single {
      max-width: 46%;
      padding: 0 0 35% 0;
   }

   .filter-item-track {
      overflow-x: scroll;
   }

   .filter-list {
      flex-wrap: nowrap;
      margin-bottom: 20px;
      justify-content: unset !important;
      gap: 15px !important;
   }

   .filter-item {
      text-align: center;
      white-space: nowrap;
   }

   .about-us-row__homepage .offer-links .offer-link__item,
   .our-offer__homepage .offer-links .offer-link__item {
      max-width: 100%;
   }

   .pod-detail__slide .img-wrapper {
      padding: 0 0 60% 0;
   }

   .sc-hd-wr .text-wrapper h2 {
      font-size: 24px !important;
   }

   .contact-pg .text-wrapper h2,
   .form-wrapper h2 {
      font-size: 28px;
   }

   .sustainable-text h2 {
      font-size: 26px;
   }

   .blog__row {
      flex-direction: column !important;
   }

   .blog-item {
      max-width: 100%;
      width: 100%;
      gap: 35px;
   }

   .main-slider__slide .main-slider__text {
      left: 35% !important;
   }

   .main-slider__slide .main-slider__text h2 {
      font-size: 32px !important;
   }

   .main-slider__slide .main-slider__text p {
      font-size: 14px;
   }

   a.btn-wow span.txt {
      font-size: 14px;
   }

   .gallery-slider-single {
      max-width: 676px;
   }

   .contact-modal-body .img-wrapper {
      display: none;
   }

   .contact-modal-body .text-wrapper {
      justify-content: center;
      width: 100%;
   }

   .main-slider__slide .main-slider__text {
      left: 42% !important;
      max-width: 400px;
   }

   .main-slider__slide .main-slider__text h2 {
      font-size: 26px !important;
   }

   .main-slider__slide .main-slider__text p {
      font-size: 14px;
   }

   a.btn-wow span.txt {
      font-size: 14px;
   }

   .video-about {
      padding: 0 0 50% 0;
   }

   .video-about .text-wrapper h2 {
      font-size: 20px !important;
   }

   .gallery-slide {
      padding: 0 0 60% 0;
   }

   .gallery-slider-single {
      max-width: 600px;
   }

   .acc-filter-row {
      width: 100%;
      justify-content: space-between;
   }

   .account-menu-trigger {
      display: flex;
      align-items: center;
      gap: 8px;
      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);
      flex-shrink: 0;
   }

   .account-menu-trigger:hover {
      background-color: var(--gray-025);
   }

   aside.account-menu {
      position: fixed;
      top: 0;
      left: -100%;
      width: 80%;
      max-width: 300px;
      height: 100%;
      z-index: 1002;
      background-color: var(--color-white);
      overflow-y: auto;
      padding: 30px 20px;
      transition: left var(--transition-base);
      margin-top: unset;
   }

   aside.account-menu._active {
      left: 0;
   }

   .account-menu-close {
      display: flex;
      justify-content: flex-end;
      margin-bottom: 20px;
      font-size: 20px;
      cursor: pointer;
   }

   /* Blog article */
   .article-main .col-7,
   .article-main .col-6 {
      flex: 0 0 100%;
      max-width: 100%;
   }

   .article-block__text {
      padding: 32px;
      gap: 18px;
   }

   .article-block__img {
      height: 320px;
   }

   .article-quote-banner {
      padding-bottom: 75%;
   }

   .article-quote-banner__text {
      padding: 0 16px;
   }

   .article-quote-banner__text h3 {
      font-size: 24px;
   }

   .article-gallery-row {
      flex-direction: column !important;
   }

   .article-gallery-row__item,
   .article-gallery-row__item--tall,
   .article-gallery-row__item--wide {
      flex: 1 1 auto;
      height: 220px;
   }

   .feature-split {
      flex-direction: column !important;
      align-items: stretch !important;
      gap: 28px;
   }

   .feature-split__img {
      flex: 0 0 auto;
      max-width: 100%;
      height: 280px;
   }

   .feature-split__text h2 {
      font-size: 26px;
   }

   .feature-split__text>p,
   .feature-split__list li {
      max-width: 100%;
   }
}

@media (max-width: 575.98px) {

   main._page._no-mobile-offset {
      margin-top: 20px;
   }

   /* Product gallery lightbox: side arrows have no room to sit next to the
      image on a narrow screen, so drop them into a row underneath it. */
   .gallery-lightbox-overlay {
      flex-direction: column;
      gap: 16px;
   }

   .gallery-lightbox-slider {
      order: 1;
      margin: 0;
   }

   .gallery-lightbox-nav {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 24px;
      order: 2;
   }

   .gallery-lightbox-prev,
   .gallery-lightbox-next {
      position: static;
      transform: none;
   }

   .wish-list-wrapper {
      grid-template-columns: repeat(1, 1fr);
   }

   .prod-card.single {
      max-width: none;
   }

   .cart-md-button a {
      font-size: 14px;
      padding: 14px 8px;
   }

   .pre-header {
      display: none !important;
   }

   .account-page {
      --bs-gutter-x: 0;
      margin-bottom: 0 !important;
   }

   .header-row {
      padding: 0px 15px;
      gap: 20px;
      height: 80px;
   }

   .header-row .header-logo {
      max-width: 95px;
   }

   .header-icons {
      gap: 15px;
   }

   .header-icons .search-btn i,
   .header-icons .header-shop-icon i {
      font-size: 22px;
   }

   .header-icons .header-shop-icon span.counter {
      width: 15px;
      height: 15px;
      font-size: 9px;
   }

   .sc-hd-wr {
      flex-direction: column !important;
      align-items: flex-start !important;
   }

   a.view-more {
      margin-top: 20px;
   }


   .sc-hd-wr .text-wrapper h2 {
      font-size: 22px !important;
   }

   .sc-hd-wr .text-wrapper p {
      font-size: 13px;
   }

   .contact-pg .text-wrapper h2,
   .form-wrapper h2 {
      font-size: 24px;
   }

   .pre-header a {
      font-size: 11px;
   }

   .navigation-bar {
      width: 55%;
   }

   .pod-detail__slide .prod-description {
      text-align: center;
      align-items: center !important;
   }

   .pod-features {
      justify-content: space-between !important;
   }

   .pod-features li {
      max-width: 45%;
      width: 100%;
      align-items: center !important;
      text-align: center;
   }

   .gallery-slider-single {
      max-width: 500px;
   }

   .gallery-slide-single {
      padding: 0 0 100% 0;
   }

   h2 {
      font-size: 24px;
   }

   .navigation-bar {
      width: 80%;
   }

   .main-slider__slide .img-wrapper {
      padding: 0 0 135% 0;
   }

   .filter__pod-single {
      max-width: 100%;
      padding: 0 0 65% 0;
   }

   .filter__pod-single h4 {
      font-size: 22px;
   }

   .main-slider__slide .main-slider__text {
      left: 50% !important;
      padding: 0px 15px;
   }

   a.btn-wow {
      max-width: 200px;
   }

   a.btn-wow::before {
      width: 108%;
      height: 100%;
      border-radius: 100px;
      border-color: var(--primary-green);
      background-color: var(--primary-green);
      animation: unset;
   }

   a.btn-wow i.arrow {
      left: 65%;
      font-size: 20px;
      color: var(--primary-white);
   }

   a.btn-wow span.txt {
      left: 40%;
      color: var(--primary-white);
   }

   a.btn-wow span.txt {
      font-size: 12px;
   }

   .video-about {
      padding: 0 0 70% 0;
   }

   .video-about .text-wrapper h2 {
      font-size: 18px !important;
      padding: 0px 15px;
      margin-bottom: 20px;
   }

   .gallery-slide {
      padding: 0 0 70% 0;
   }

   .gallery-slider-single {
      max-width: 400px;
   }

   .contact-form-popup {
      max-width: 100%;
   }

   .pre-header a {
      font-size: 10px;
   }

   .gallery-slide {
      padding: 0 0 80% 0;
   }

   .gallery-slider-single {
      max-width: 350px;
   }

   .hd-drop-link.shop .sub-menu,
   .hd-drop-link.lang .sub-menu {
      width: 100%;
   }

   .navigation-bar {
      width: 100%;
   }

   .gallery-slider-single {
      max-width: 320px;
   }

   .sustainable-text h2 {
      font-size: 24px;
   }

   .sustainable-gallery {
      flex-direction: column !important;
      gap: 10px;
   }

   .sustainable-gallery-item {
      width: 100%;
      aspect-ratio: 16 / 10;
   }

   .sustainable-gallery-item span {
      left: 10px;
      bottom: 10px;
      font-size: 14px;
   }

   .footer-nav-row {
      grid-template-columns: 1fr;
      gap: 30px;
   }


   .receipt-info-grid,
   .receipt-actions {
      flex-direction: column;
   }

   .added-to-cart-box {
      width: 100%;
      border-radius: 16px 16px 0 0;
      position: fixed;
      bottom: 0;
      animation: cartPopupMobile 0.25s ease;
   }

   @keyframes cartPopupMobile {
      from {
         transform: translateY(100%);
      }

      to {
         transform: translateY(0);
      }
   }

   .promo-arrival-modal .modal-content {
      flex-direction: column;
   }

   .promo-arrival-media {
      width: 100%;
   }

   .promo-season-media {
      display: none;
   }

   /* Blog article */
   .article-content .article-title {
      font-size: 26px;
      line-height: 34px;
   }

   .article-content p {
      font-size: 16px;
      line-height: 26px;
   }

   .article-block__text {
      padding: 24px;
      gap: 14px;
   }

   .article-block__text h3 {
      font-size: 20px;
   }

   .article-block__img {
      height: 240px;
   }

   .article-quote-banner {
      padding-bottom: 100%;
   }

   .article-quote-banner__text h3 {
      font-size: 20px;
   }

   .article-gallery-row__item,
   .article-gallery-row__item--tall,
   .article-gallery-row__item--wide {
      height: 180px;
   }

   .feature-split__img {
      height: 220px;
   }

   .feature-split__text h2 {
      font-size: 22px;
   }

}