/* ============================================
   CSS VARIABLES
   ============================================ */

:root {
  /* Font Families */
  --font-primary: "Proxima Nova", sans-serif;
  --font-secondary: "Work Sans", Sans-serif;

  /* Brand Colors */
  --color-primary: #83b020;
  --color-accent: #ffeb00;
  --color-orange: #fa841f;
  --color-pink: #ed6d9f;
  --color-checkout: #ec930d;

  /* Neutral Colors */
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray-light: #e8e8e8;
  --color-gray-medium: #f0f0f0;
  --color-gray-border: #d3d3d3;
  --color-gray-dark: #333333;
  --color-gray-text: #555555;

  /* Background Colors */
  --bg-light-blue: #e4f4f5;
  --bg-yellow: #f7eab3;
  --bg-blue: #a3e7ea;
  --bg-gray: #f0f0f0;

  /* Border Colors */
  --border-light: #e0e0e0;

  /* Star SVG Variables */
  --star-svg: url("data:image/svg+xml,%3Csvg width='28' height='26' viewBox='0 0 28 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.8062 0L10.6543 9.70093H0.454224L8.70618 15.6961L5.55428 25.3968L13.8062 19.4016L22.0582 25.3968L18.9063 15.6961L27.1582 9.70093H16.9581L13.8062 0Z' fill='%23FFEB00'/%3E%3C/svg%3E");
  --star-svg-empty: url("data:image/svg+xml,%3Csvg width='28' height='26' viewBox='0 0 28 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.8062 0L10.6543 9.70093H0.454224L8.70618 15.6961L5.55428 25.3968L13.8062 19.4016L22.0582 25.3968L18.9063 15.6961L27.1582 9.70093H16.9581L13.8062 0Z' fill='%23d3ced2'/%3E%3C/svg%3E");
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

/* * {
	font-family: var(--font-primary);
}

.work-sans * {
	font-family: var(--font-secondary);
} */

body:has(.site-canvas-menu.is-open) {
  overflow: hidden !important;
}

.proxima-nova *,
.proxima-nova {
  font-family: var(--font-primary) !important;
}

.hero-banner-section * {
  font-family: var(--font-primary) !important;
}

/* ============================================
   INGREDIENT LIST STYLES
   ============================================ */

.ingredient-list {
  grid-template-columns: repeat(4, 1fr);
  display: grid;
  gap: 30px 16px;
}

.ingredient-list .ingredient {
  border-radius: 25px;
  padding: clamp(1.25rem, 0.5432rem + 3.5338vw, 4.1875rem) 25px 90px;
  background-color: var(--bg-light-blue);
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
}

.ingredient-list .ingredient.light-blue {
  background-color: var(--bg-light-blue);
}

.ingredient-list .ingredient.yellow {
  background-color: var(--bg-yellow);
}

.ingredient-list .ingredient.blue {
  background-color: var(--bg-blue);
}

.ingredient-list .ingredient.gray {
  background-color: var(--bg-gray);
}

.ingredient-list .ingredient figure {
  max-width: clamp(6.25rem, 5.6477rem + 3.0113vw, 8.753125rem);
  max-height: clamp(4.6875rem, 4.5083rem + 0.8962vw, 5.4325rem);
  margin-bottom: clamp(0.9375rem, 0.6518rem + 1.4286vw, 2.125rem) !important;
}

.ingredient-list .ingredient figure img {
  object-fit: contain;
  object-position: center center;
  width: 100%;
  height: 100%;
}

.ingredient-list .ingredient h3 {
  font-size: clamp(1.125rem, 1.0949rem + 0.1504vw, 1.25rem);
  font-weight: 700;
  line-height: 24px;
  color: var(--color-black);
  margin-bottom: clamp(0.9375rem, 0.6518rem + 1.4286vw, 2.125rem) !important;
}

.ingredient-list .ingredient p {
  margin-bottom: 0;
  text-align: center;
  font-size: clamp(0.875rem, 0.8299rem + 0.2256vw, 1.0625rem);
  font-weight: 500;
  line-height: clamp(1.25rem, 1.1598rem + 0.4511vw, 1.625rem);
  color: var(--color-black);
}

.ingredient-list .ingredient .button-box {
  position: absolute;
  bottom: -1px;
  background: var(--color-white);
  width: auto;
  right: 0;
  padding: 10px 0 0 10px;
  border-radius: 25px 0 0 0;
}

.ingredient-list .ingredient .button-box::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 20H20C8.9543 20 0 11.0457 0 0V20Z' fill='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 25px;
  bottom: 0;
  transform: rotate(270deg);
  left: -25px;
}

.ingredient-list .ingredient .button-box::after {
  top: -25px;
  bottom: unset;
  right: 0;
  transform: rotate(270deg);
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 20H20C8.9543 20 0 11.0457 0 0V20Z' fill='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 25px;
}

.ingredient-list .ingredient .button-box a {
  background-color: var(--color-accent);
  font-size: clamp(1rem, 0.9398rem + 0.3008vw, 1.25rem);
  font-weight: 500;
  line-height: clamp(1.375rem, 1.3449rem + 0.1504vw, 1.5rem);
  fill: var(--color-black);
  color: var(--color-black);
  border-radius: 30px;
  padding: clamp(0.625rem, 0.5573rem + 0.3383vw, 0.90625rem) clamp(1.5625rem, 1.2317rem + 1.6541vw, 2.9375rem);
  display: inline-block;
  text-align: center;
  transition: all 0.3s;
}

.ingredient-list .ingredient .button-box a:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

.ingredient-list .ingredient {
  height: auto;
}

.ingredient-list .ingredient h3 {
  text-transform: uppercase;
}

/* Ingredient Swiper Styles */
.ingredient-swiper.ingredient-list {
  display: block;
}

.ingredient-swiper .swiper-pagination {
  padding-top: 40px;
  position: unset;
  transform: unset;
  gap: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ingredient-swiper .swiper-pagination .swiper-pagination-bullet {
  margin: 0;
  width: 53px;
  height: 15px;
  border-radius: 30px;
  background: var(--color-gray-light);
  opacity: 1;
  transition: all 0.4s ease-in-out;
}

.ingredient-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 15px;
  background: var(--color-primary);
}

/* ============================================
   WOOCOMMERCE PRODUCT STYLES
   ============================================ */

/* Product Summary */
.woocommerce div.product div.summary {
  position: relative;
}

/* WooCommerce Messages */
.woocommerce-message,
.woocommerce-info {
  background-color: var(--site-primary-button-bg);
}

.woocommerce-NoticeGroup-checkout {
  background-color: var(--color-checkout);
}

/* Product Loop Styles */
ul.products .product .product-item .woocommerce-loop-product__title {
  font-family: var(--font-primary);
}

/* Checkout Button */
a.button.checkout.wc-forward {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Checkout Form Styles */
body.woocommerce-checkout .woocommerce .woocommerce-billing-fields .form-row,
body.woocommerce-checkout .woocommerce .woocommerce-shipping-fields .form-row {
  margin-bottom: 15px;
  position: relative;
}

body.woocommerce-checkout .woocommerce .woocommerce-shipping-fields {
  margin-bottom: 0;
}

body.woocommerce-checkout #ship-to-different-address {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

body.woocommerce-checkout .woocommerce .woocommerce-checkout-payment .place-order .woocommerce-privacy-policy-text {
  margin-top: 5px;
}

body.woocommerce-checkout .woocommerce .woocommerce-checkout-payment .place-order .woocommerce-privacy-policy-text p {
  margin-bottom: 30px;
}

/* Product Custom Fields */
.product-usage-content {
  padding: 20px 0;
  line-height: 1.6;
}

.product-usage-content h3 {
  color: var(--color-primary);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.product-usage-content p {
  margin-bottom: 15px;
  color: var(--color-gray-dark);
}

.product-usage-content ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.product-usage-content li {
  margin-bottom: 8px;
  color: var(--color-gray-text);
}

/* Product Logos */
.product-right-logo {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: block;
}

.product-right-logo img {
  max-width: 120px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  display: block;
}

.product-right-logo:hover img {
  opacity: 1;
}

/* Completely hide Fancybox captions/headings */
.fancybox__caption,
.fancybox-caption,
.fancybox__content .fancybox__caption,
.fancybox__content .fancybox-caption {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* Hide any caption elements that might be added */
.fancybox__content::after,
.fancybox__content::before {
  display: none !important;
}

.ksupps-brand {
  color: var(--color-black);
  font-weight: 800;
}

/* Ensure proper spacing */
.ksupps-brand+* {
  display: inline;
}

/* Fix WooCommerce Review Stars - Using Custom SVG */
.woocommerce .star-rating,
.woocommerce-page .star-rating,
.kitify-wooproduct-rating .star-rating {
  float: none;
  display: inline-block;
  width: 100px;
  height: 20px;
  font-size: 0;
  line-height: 1;
  position: relative;
  background-image: var(--star-svg-empty);
  background-repeat: repeat-x;
  background-size: 20px 20px;
  background-position: 0 0;
}

.woocommerce .star-rating::before,
.woocommerce-page .star-rating::before,
.kitify-wooproduct-rating .star-rating::before {
  content: "";
  display: none;
}

.woocommerce .star-rating span,
.woocommerce-page .star-rating span,
.kitify-wooproduct-rating .star-rating span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-image: var(--star-svg);
  background-repeat: repeat-x;
  background-size: 20px 20px;
  background-position: 0 0;
  overflow: hidden;
  text-indent: -999em;
  white-space: nowrap;
}

/* Review stars positioning */
.woocommerce div.product .woocommerce-product-rating {
  align-items: center;
  gap: 10px;
}

.woocommerce div.product .woocommerce-review-link {
  font: 400 13px/15px var(--font-secondary);
  color: var(--color-black);
  opacity: 1 !important;
  margin-top: 3px;
  transition: all 0.3s ease;
}

.woocommerce div.product .woocommerce-review-link:hover {
  color: var(--color-orange) !important;
}

.woocommerce div.product .woocommerce-product-rating .star-rating,
.woocommerce-page div.product .woocommerce-product-rating .star-rating {
  margin: 0.5em 4px 0 0;
  float: left;
}

.woocommerce #reviews #comments .star-rating,
.woocommerce-page #reviews #comments .star-rating {
  float: right;
}

/* WooCommerce Tabs */
.woocommerce-tabs .tabs li a {
  font-weight: 600;
  color: var(--color-gray-dark);
  transition: color 0.3s ease;
}

.woocommerce-tabs .tabs li.active a,
.woocommerce-tabs .tabs li a:hover {
  color: var(--color-primary);
}

.woocommerce-tabs .panel {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 25px;
  margin-top: 20px;
  background: var(--color-white);
}

/* Clear float after description content */
.woocommerce div.product .woocommerce-tabs .panel:after,
.kitify-product-data-tabs .panel:after {
  content: "";
  display: table;
  clear: both;
}

/* ============================================
   QUANTITY INPUT STYLES
============================================ */

.woocommerce .product .cart .woocommerce-product-details__add-to-cart {
  gap: 20px;
}

.woocommerce .product .cart .quantity {
  width: 154px;
}

.woocommerce .product .cart .woocommerce-product-details__add-to-cart .quantity .qty {
  border-radius: 25px;
  border: 1px solid var(--color-gray-border);
  height: 62px;
}

form.cart .quantity .qty-button {
  width: 52px;
}

/* ============================================
   WOOCOMMERCE TABS STYLES
   ============================================ */

.nova-woocommerce-tabs .tabs {
  margin-bottom: 77px;
}

.nova-woocommerce-tabs #panel_description {
  position: relative;
}

.nova-woocommerce-tabs #panel_description>*:not(.product-description-logo, .product-description-logo img) {
  width: calc(100% - 330px);
}

.nova-woocommerce-tabs .tabs-content h3 {
  font: 900 20px/32px var(--font-secondary);
  color: var(--color-primary);
  margin-bottom: 20px;
}

.nova-woocommerce-tabs .tabs-content h3:last-child {
  margin-bottom: 0;
}

.nova-woocommerce-tabs .tabs-content p {
  font: 400 16px/32px var(--font-secondary);
  color: var(--color-black);
  margin-bottom: 16px;
}

.nova-woocommerce-tabs .product-description-logo {
  position: absolute;
  top: -120px;
  right: -6%;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nova-woocommerce-tabs .product-description-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* ============================================
   SPECIFIC COMPONENT STYLES
   ============================================ */

.ingredientsDetailsPageBanner .btn-icon {
  background-color: var(--color-primary) !important;
}

/* Breadcrumbs */
.kitify-breadcrumbs__item-sep {
  font-size: 18px !important;
}

/* Elementor Header Styles */
.elementor-location-header .kitify-logo a img {
  width: 100%;
  object-fit: contain;
  object-position: center;
}

.elementor-location-header .menu-item {
  font-family: var(--font-secondary);
}

/* Product Styles */
.costome-product-style .product-item__thumbnail {
  border: 1px solid var(--color-primary);
  aspect-ratio: 1 / 1;
  max-height: 397px;
  overflow: hidden;
}

/* Button Box Styles */
.parent-button-element {
  position: relative;
}

.parent-button-element .button-box {
  position: absolute;
  left: -1px;
  bottom: -1px;
  background: var(--color-white);
  width: auto;
  padding: 10px 10px 0 0;
  border-radius: 0 25px 0 0;
}

.parent-button-element .button-box::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 20H20C8.9543 20 0 11.0457 0 0V20Z' fill='white'/%3E%3C/svg%3E%0A");
  top: -25px;
  left: 0;
  background-repeat: no-repeat;
  background-size: 25px;
}

.parent-button-element .button-box:after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 20H20C8.9543 20 0 11.0457 0 0V20Z' fill='white'/%3E%3C/svg%3E%0A");
  right: -25px;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: 25px;
}

.ingredients-highlighted .button-box {
  right: 0;
  left: unset;
  padding: 10px 0 0 10px;
  border-radius: 25px 0 0 0;
}

.ingredients-highlighted .button-box:after {
  top: -25px;
  bottom: unset;
  right: 0;
  transform: rotate(270deg);
}

.ingredients-highlighted .button-box::before {
  top: unset;
  bottom: 0;
  transform: rotate(270deg);
  left: -25px;
}

/* Banner Grid Layout */
.banner-grid-layout .banner-grid-item h2 {
  font-weight: 900 !important;
}

.banner-grid-layout .banner-grid-item.green h2 span {
  color: var(--color-primary);
}

.banner-grid-layout .banner-grid-item.green .elementor-button {
  background-color: var(--color-primary);
}

.banner-grid-layout .banner-grid-item.orange h2 span {
  color: var(--color-orange);
}

.banner-grid-layout .banner-grid-item.orange .elementor-button {
  background-color: var(--color-orange);
}

.banner-grid-layout .banner-grid-item.orange ul li::before {
  filter: brightness(0) saturate(100%) invert(75%) sepia(56%) saturate(5140%) hue-rotate(346deg) brightness(100%) contrast(97%);
}

.banner-grid-layout .banner-grid-item.pink h2 span {
  color: var(--color-pink);
}

.banner-grid-layout .banner-grid-item.pink .elementor-button {
  background-color: var(--color-pink);
}

.banner-grid-layout .banner-grid-item.pink ul li::before {
  filter: brightness(0) saturate(100%) invert(70%) sepia(33%) saturate(5265%) hue-rotate(299deg) brightness(99%) contrast(87%);
}

.banner-grid-layout ul {
  margin: 0 !important;
}

.banner-grid-layout ul li {
  list-style: none;
  display: flex;
  align-items: start;
  gap: 8px;
  margin: 0 !important;
}

.banner-grid-layout ul li::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 7px;
  background: center / contain no-repeat url('data:image/svg+xml,%3Csvg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M10.125 0L3.15 7.671L1.125 6.137H0L3.15 11.25L11.25 0H10.125Z" fill="%2383B020"/%3E%3C/svg%3E');
}

.banner-grid-layout .content-box {
  max-width: 366px;
  margin: 0 auto;
}

.banner-grid-layout .content-box .elementor-widget-image {
  margin-right: 29px;
}

.banner-grid-layout .content-box h2 span {
  font-weight: 500;
  color: var(--color-orange);
}

/* Language Switcher */
.custom-language-switcher .wpml-ls ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.custom-language-switcher .wpml-ls ul li {
  margin-bottom: 0 !important;
}

.custom-language-switcher .wpml-ls ul a {
  padding: 0;
}

.custom-language-switcher .wpml-ls ul a span {
  font-size: 0 !important;
}

.custom-language-switcher .wpml-ls ul a span::after {
  font-size: 16px;
  line-height: 1;
  position: unset;
  opacity: 0;
  display: none;
}

.elementor-sticky--active .custom-language-switcher .wpml-ls ul a span::after {
  opacity: 1;
  display: inline-block;
}

.custom-language-switcher .wpml-ls .wpml-ls-current-language a span {
  color: var(--site-accent-color);
}

/* Navigation Styles */
.main-navigation .nav-menu ul.sub-menu {
  width: 390px;
  padding: 30px;
}

.main-navigation .nav-menu ul.sub-menu li {
  padding: 0;
  margin-bottom: 12px;
}

.main-navigation .nav-menu ul.sub-menu li a {
  padding: 0;
  font-weight: 800;
}

.main-navigation .nav-menu ul.sub-menu li a span.menu-image-title-after {
  padding-left: 18px;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 32px;
  display: inline-block;
  font-family: var(--font-secondary);
}

.dialog-widget.dialog-lightbox-widget {
  display: none !important;
}

.product-gallery-container .product-gallery-main {
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid var(--color-gray-border);
}

.product-gallery-container .product-gallery-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery-container img.product-gallery-image {
  aspect-ratio: 9/6;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: none;
  box-shadow: unset;
  outline: none;
}

.product-gallery-thumbs {
  margin-top: 20px;
}

.product-gallery-thumbs .product-gallery-thumb {
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid var(--color-gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.product-gallery-thumbs .swiper-slide-thumb-active .product-gallery-thumb {
  border-color: var(--color-accent);
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}

.product-gallery-thumbs .product-gallery-thumb img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  border: none;
  box-shadow: unset;
  outline: none;
}

.ingredient-archive {
  padding: 100px 15px;
}

.ingredient-archive .container {
  max-width: 1482px;
  margin: auto;
}

body:has(.nova-login-wrapper) .woocommerce-breadcrumb {
  text-align: center;
  margin-bottom: 10px;
}


body.woocommerce-account:has(.nova-login-wrapper) .page-header-content h1,
body.woocommerce-account:has(.nova-login-wrapper) .nova-login-wrapper h2.page-title {
  text-align: center;
}


body.woocommerce-account:has(.nova-login-wrapper) .nova-form-container {
  justify-content: center;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

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

@media (max-width: 1279px) {
  .woocommerce .product .cart .woocommerce-product-details__add-to-cart .quantity .qty {
    height: 46px;
  }

  .woocommerce .product .cart .quantity {
    width: 130px;
  }

  form.cart .quantity .qty-button {
    width: 42px;
  }

  .woocommerce .product .cart .woocommerce-product-details__add-to-cart {
    gap: 12px;
  }

  .nova-woocommerce-tabs .tabs {
    margin-bottom: 50px;
  }

  .nova-woocommerce-tabs .product-description-logo {
    position: absolute;
    top: -20px;
    right: 0;
    width: 250px;
    height: 250px;
  }

  .nova-woocommerce-tabs #panel_description>*:not(.product-description-logo, .product-description-logo img) {
    width: calc(100% - 270px);
  }
}

@media (max-width: 1024px) {
  .nova-woocommerce-tabs .product-description-logo {
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
  }

  .nova-woocommerce-tabs #panel_description>*:not(.product-description-logo, .product-description-logo img) {
    width: calc(100% - 220px);
  }

  .nova-woocommerce-tabs #panel_description>p {
    margin-bottom: 20px;
  }

  .nova-woocommerce-tabs .tabs-content h3 {
    margin-bottom: 16px;
  }

  .nova-woocommerce-tabs .tabs-content p {
    margin-bottom: 12px;
  }
}

@media (max-width: 768px) {
  .product-right-logo {
    position: static;
    transform: none;
    text-align: center;
    margin: 20px 0;
    width: 100%;
  }

  .product-right-logo img {
    max-width: 80px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .ingredient-list {
    grid-template-columns: repeat(1, 1fr);
  }

  .ingredient-list .ingredient {
    padding-bottom: 65px;
  }

  .nova-woocommerce-tabs .product-description-logo {
    position: unset;
    width: 160px;
    height: 160px;
    margin-bottom: 30px;
  }

  .nova-woocommerce-tabs #panel_description>*:not(.product-description-logo, .product-description-logo img) {
    width: 100%;
  }

}

/* Additional Responsive Styles */
@media screen and (min-width: 80em) {
  .woocommerce-checkout .site-wrapper .site-content-wrapper .site-content {
    padding: 4.0375rem 15px 1.0375rem;
  }
}

@media print,
screen and (min-width: 40em) {
  .site-wrapper .site-content-wrapper .site-content {
    padding: 4.025rem 0 1.6875rem;
  }
}

@media print,
screen and (min-width: 64em) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
    margin-right: 30px;
  }
}

@media print,
screen and (min-width: 64em) {
  body.woocommerce-checkout .woocommerce form.checkout {
    margin-bottom: 1.75rem;
  }
}

@media (max-width: 1024px) {
  .custom-language-switcher .wpml-ls ul a span::after {
    opacity: 1;
    display: inline-block;
  }

  .elementor-sticky--active .custom-language-switcher .wpml-ls ul a span::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .banner-grid-layout .banner-grid-item {
    justify-content: center !important;
    text-align: center;
  }

  .banner-grid-layout .banner-grid-item .content-box {
    margin: 0 auto;
  }

  .banner-grid-layout ul {
    width: fit-content;
    margin: 0 auto !important;
    text-align: left;
  }

  .banner-grid-layout ul li {
    width: fit-content;
  }

  .banner-grid-layout .banner-grid-item {
    width: 100%;
  }

  .ingredient-swiper .swiper-pagination {
    padding-top: 20px;
    gap: 7px;
  }

  .ingredient-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 10px;
  }

  .ingredient-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 10px;
  }
}

@media (max-width: 560px) {
  .widget.woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons.buttons {
    flex-direction: column;
    gap: 15px;
  }

  .widget.woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons.buttons .button:not(.checkout),
  .widget.woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons.buttons .button.checkout {
    margin: 0;
  }
}