body {
  padding-top: 0;
}

.row {
  margin: 0;
}

#main {
  margin-top: 25px;
}

header.header-scrolled + #main,
header.header-scrolled ~ #content {
  margin-top: 100px;
}

header {
  position: relative;
  z-index: 1000;
  width: 100%;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

header.header-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: headerSlideDown 0.28s ease;
}

@keyframes headerSlideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  transition: all 0.3s ease;
  position: relative;
}

header.header-scrolled .header-inner {
  padding: 3px 24px;
}

.header-inner .top-logo {
  width: 100px;
  flex: 0 0 100px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-inner .top-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.mobile-menu-toggler {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 10px;
  position: relative;
  flex: 0 0 42px;
  cursor: pointer;
}

.mobile-menu-toggler::before,
.mobile-menu-toggler::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #222;
  transition: all 0.25s ease;
}

.mobile-menu-toggler::before {
  top: 15px;
  box-shadow: 0 8px 0 #222;
}

.mobile-menu-toggler::after {
  top: 31px;
  display: none;
}

.header-inner .top-right-menu {
  width: 100px;
  flex: 0 0 100px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-inner .top-right-menu li {
  list-style: none;
}

.header-inner .top-right-menu > li > a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #222;
  text-decoration: none;
  border-radius: 50%;
  background: #f8f8f8;
  transition: all 0.25s ease;
}

.header-inner .top-right-menu > li > a:hover {
  background: rgba(111, 215, 113, 0.14);
  color: #6fd771;
  transform: translateY(-1px);
}

.header-inner .top-right-menu i {
  font-size: 20px;
  line-height: 1;
}

.header-inner .top-right-menu .badge {
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  background: #6fd771 !important;
  border: 2px solid #fff;
}

#menu-main-menu {
  width: calc(100% - 248px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-direction: row;
}

#menu-main-menu > li,
#menu-main-menu li {
  position: relative;
  list-style: none;
  padding: 0;
}

#menu-main-menu > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  color: #222;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 12px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

#menu-main-menu > li > a:hover {
  background: rgba(111, 215, 113, 0.1);
}

#menu-main-menu > li > a::after,
#menu-main-menu .sub-menu li > a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 9px;
  height: 2px;
  background: #6fd771;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
  border-radius: 10px;
}

#menu-main-menu li:hover > a,
#menu-main-menu li.current-menu-item > a,
#menu-main-menu li.current_page_item > a,
#menu-main-menu li.current-menu-ancestor > a,
#menu-main-menu li.current-page-ancestor > a {
  color: #6fd771;
}

#menu-main-menu li:hover > a::after,
#menu-main-menu li.current-menu-item > a::after,
#menu-main-menu li.current_page_item > a::after,
#menu-main-menu li.current-menu-ancestor > a::after,
#menu-main-menu li.current-page-ancestor > a::after {
  transform: scaleX(1);
}

#menu-main-menu .menu-item-has-children > a {
  padding-right: 30px;
}

#menu-main-menu > li.menu-item-has-children > a::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.25s ease;
}

#menu-main-menu > li.menu-item-has-children:hover > a::before {
  transform: translateY(-40%) rotate(225deg);
}

#menu-main-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  padding: 10px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
  z-index: 999;
}

#menu-main-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#menu-main-menu .sub-menu li {
  width: 100%;
}

#menu-main-menu .sub-menu a {
  position: relative;
  display: block;
  width: 100%;
  padding: 12px 18px;
  color: #222;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s ease;
}

#menu-main-menu .sub-menu a:hover {
  background: rgba(111, 215, 113, 0.08);
  color: #6fd771;
}

#menu-main-menu .sub-menu .sub-menu {
  top: -10px;
  left: 100%;
  margin-left: 10px;
  transform: translateX(10px);
}

#menu-main-menu .sub-menu li:hover > .sub-menu {
  transform: translateX(0);
}

#menu-main-menu .sub-menu .menu-item-has-children > a {
  padding-right: 34px;
}

#menu-main-menu .sub-menu .menu-item-has-children > a::before {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

#menu-main-menu .sub-menu li > a::after {
  left: 18px;
  right: 18px;
  bottom: 7px;
}

.submenu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 4px;
  top: 4px;
  z-index: 2;
  cursor: pointer;
  border-radius: 10px;
}

.submenu-toggle:hover {
  background: rgba(111, 215, 113, 0.08);
}

.submenu-toggle span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.menu-item-has-children.submenu-open > .submenu-toggle span {
  transform: rotate(225deg);
}

body.woocommerce-cart {
  color: #333;
}

body.woocommerce-cart .woocommerce {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0;
  padding: 0;
}

body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper {
  width: 100%;
}

body.woocommerce-cart .woocommerce .woocommerce-cart-form {
  width: calc(100% - 325px);
  min-width: 0;
  border-top: 4px solid #4caf50;
  border-radius: 8px;
}

body.woocommerce-cart .woocommerce .cart-collaterals {
  width: 300px;
}

body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals {
  width: 100%;
  margin: 0;
}

body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-message,
body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-error,
body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-info {
  background: #fff;
  border: 1px solid #d9d9d9;
  border-left: 4px solid #4caf50;
  border-radius: 6px;
  padding: 14px 16px;
  color: #333;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.04);
  margin-bottom: 14px;
}

body.woocommerce-cart table.shop_table.cart {
  width: 100%;
  border: 1px solid #dcdcdc !important;
  border-collapse: collapse;
  border-spacing: 0;
  background: #fff;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
}

body.woocommerce-cart table.shop_table.cart thead th {
  background: #f7fbf7 !important;
  border: 0 !important;
  border-bottom: 1px solid #ececec !important;
  border-right: 1px solid #ececec !important;
  color: #333;
  padding: 12px 12px 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body.woocommerce-cart table.shop_table.cart thead th:last-child {
  border-right: 0 !important;
}

body.woocommerce-cart table.shop_table.cart tbody tr.cart_item td {
  background: #fff;
  border: 0 !important;
  border-bottom: 1px solid #ececec !important;
  border-right: 1px solid #ececec !important;
  padding: 18px 14px;
  vertical-align: middle;
  box-shadow: none;
}

body.woocommerce-cart table.shop_table.cart tbody tr.cart_item td:last-child {
  border-right: 0 !important;
}

body.woocommerce-cart table.shop_table.cart tr:last-child td.actions {
  border-bottom: 0 !important;
  border-right: 0 !important;
  border-radius: 0;
  padding: 16px;
}

body.woocommerce-cart .product-thumbnail {
  display: none;
}

body.woocommerce-cart .product-name {
  width: 52%;
  min-width: 420px;
}

body.woocommerce-cart .ev-review-product {
  display: flex;
  align-items: center;
  gap: 18px;
}

body.woocommerce-cart .ev-review-thumb {
  flex: 0 0 65px;
}

body.woocommerce-cart .ev-review-thumb img {
  display: block;
  width: 116px;
  height: 116px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #e2e2e2;
  padding: 6px;
}

body.woocommerce-cart .product-name a.remove {
  float: left;
  margin: 20px 15px 0 0;
}

body.woocommerce-cart .ev-review-name {
  flex: 1;
  max-width: none;
}

body.woocommerce-cart .woocommerce td.product-name a {
  display: inline-block;
  color: #222;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  transition: color 0.2s ease;
}

body.woocommerce-cart .woocommerce td.product-name a:hover {
  color: #4caf50;
}

body.woocommerce-cart .product-price,
body.woocommerce-cart .product-subtotal {
  white-space: nowrap;
  font-size: 15px;
  color: #444;
  font-weight: 500;
}

body.woocommerce-cart .product-subtotal {
  font-weight: 700;
  color: #333;
}

body.woocommerce-cart .product-quantity {
  width: 110px;
}

body.woocommerce-cart .quantity {
  display: inline-flex;
  align-items: center;
}

body.woocommerce-cart .quantity .qty {
  width: 50px;
  height: 34px;
  border: 1px solid #cbcbcb;
  border-radius: 4px;
  background: #fff;
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  box-shadow: none;
  transition: all 0.2s ease;
}

body.woocommerce-cart .quantity .qty:focus {
  border-color: #4caf50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

body.woocommerce-cart td.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.woocommerce-cart .coupon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

body.woocommerce-cart .coupon .input-text {
  min-width: 220px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  background: #fff;
  color: #333;
  outline: none;
}

body.woocommerce-cart .coupon .input-text:focus {
  border-color: #4caf50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

body.woocommerce-cart .woocommerce .button,
body.woocommerce-cart .woocommerce button.button,
body.woocommerce-cart .woocommerce a.button {
  height: 42px;
  line-height: 40px;
  padding: 0 18px;
  border-radius: 4px !important;
  border: 1px solid #333;
  background: #333;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: none !important;
  transition: all 0.2s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

body.woocommerce-cart .woocommerce button.ev-clear-cart-btn {
  background: #4caf50 !important;
}

body.woocommerce-cart .woocommerce .button:hover,
body.woocommerce-cart .woocommerce button.button:hover,
body.woocommerce-cart .woocommerce a.button:hover {
  background: #333 !important;
  border-color: #333 !important;
  color: #fff !important;
}

body.woocommerce-cart button[name="update_cart"]:disabled {
  opacity: 1;
  background: #bcbcbc !important;
  border-color: #bcbcbc !important;
  color: #fff !important;
  cursor: not-allowed;
}

body.woocommerce-cart .ev-clear-cart-btn {
  background: #fff !important;
  color: #333 !important;
  border-color: #bbb !important;
}

body.woocommerce-cart .ev-clear-cart-btn:hover {
  background: #333 !important;
  color: #fff !important;
  border-color: #333 !important;
}

body.woocommerce-cart td.actions > button,
body.woocommerce-cart td.actions .coupon .button {
  min-width: 155px;
  text-align: center;
}

body.woocommerce-cart .cart_totals {
  background: #fff;
  border: 1px solid #dcdcdc;
  border-top: 4px solid #4caf50;
  border-radius: 8px;
  padding: 22px;
  color: #333;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 110px;
}

body.woocommerce-cart .cart_totals h2 {
  margin: 0 0 18px;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  padding-bottom: 12px;
  border-bottom: 1px solid #e7e7e7;
}

body.woocommerce-cart .cart_totals h2 {
  font-size: 20px;
}

body.woocommerce-cart .cart_totals table.shop_table {
  width: 100%;
  border: 0 !important;
  background: transparent !important;
  margin: 0 0 18px;
}

body.woocommerce-cart .cart_totals table.shop_table tr th,
body.woocommerce-cart .cart_totals table.shop_table tr td {
  border: 0 !important;
  border-bottom: 1px solid #ececec !important;
  padding: 12px 0;
  background: transparent !important;
  color: #333 !important;
}

body.woocommerce-cart .cart_totals table.shop_table th {
  text-align: left;
  font-size: 14px;
  font-weight: 500;
}

body.woocommerce-cart .cart_totals table.shop_table td {
  text-align: right;
  font-size: 16px;
  font-weight: 700;
}

body.woocommerce-cart
  .cart_totals
  table.shop_table
  tr
  td[data-title="Shipping"]
  form,
body.woocommerce-cart
  .cart_totals
  table.shop_table
  tr
  td[data-title="Shipment"]
  form,
body.woocommerce-cart
  .cart_totals
  table.shop_table
  tr
  td[data-title="Shipping"]
  p.woocommerce-shipping-destination,
body.woocommerce-cart
  .cart_totals
  table.shop_table
  tr
  td[data-title="Shipment"]
  p.woocommerce-shipping-destination {
  display: none;
}

body.woocommerce-cart .cart_totals .order-total th,
body.woocommerce-cart .cart_totals .order-total td {
  color: #4caf50 !important;
  font-size: 18px;
  border-bottom: 0 !important;
  padding-top: 14px;
}

body.woocommerce-cart .cart_totals .woocommerce-Price-amount,
body.woocommerce-cart .cart_totals .woocommerce-Price-currencySymbol,
body.woocommerce-cart .cart_totals strong,
body.woocommerce-cart .cart_totals bdi {
  color: inherit !important;
  opacity: 1 !important;
}

body.woocommerce-cart .wc-proceed-to-checkout {
  margin: 0;
  padding: 0;
}

body.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  display: block !important;
  width: 100%;
  height: auto;
  line-height: 1.2;
  padding: 14px 16px !important;
  border-radius: 4px !important;
  background: #4caf50 !important;
  border: 1px solid #4caf50 !important;
  color: #fff !important;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.18);
}

body.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover {
  background: #429b46 !important;
  border-color: #429b46 !important;
}

body.woocommerce-cart .shop_table_responsive td::before {
  display: none !important;
}

body.woocommerce-cart .woocommerce ul#shipping_method li label {
  font-size: 13px;
  font-weight: 500px;
}

form.woocommerce-checkout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  color: #333;
}

form.woocommerce-checkout .col2-set {
  width: calc(100% - 380px);
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
}

form.woocommerce-checkout .col2-set:before,
form.woocommerce-checkout .col2-set:after {
  display: none;
}

form.woocommerce-checkout .col2-set .col-1,
form.woocommerce-checkout .col2-set .col-2 {
  float: none !important;
  width: 100% !important;
  min-width: 0;
  margin: 0;
}

form.woocommerce-checkout .woocommerce-billing-fields,
form.woocommerce-checkout .woocommerce-shipping-fields,
form.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce form.checkout_coupon {
  background: #fff;
  border: 1px solid #dcdcdc;
  border-top: 4px solid #4caf50;
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.woocommerce form.checkout_coupon button {
  line-height: 1.2;
  padding: 10px 16px;
  border-radius: 6px;
  background: #4caf50;
  border: 1px solid #4caf50;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.18);
}

form.woocommerce-checkout .woocommerce-shipping-fields {
  margin: 0 0 25px 0;
}

form.woocommerce-checkout
  .woocommerce-shipping-fields
  .woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: center;
}

form.woocommerce-checkout
  .woocommerce-shipping-fields
  .woocommerce-form__label-for-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #333;
  font-size: 14px;
  font-weight: 600;
}

form.woocommerce-checkout
  .woocommerce-shipping-fields
  .woocommerce-form__label-for-checkbox
  input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #4caf50;
  cursor: pointer;
  flex: 0 0 18px;
}

form.woocommerce-checkout .woocommerce-billing-fields h3,
form.woocommerce-checkout .woocommerce-additional-fields h3,
form.woocommerce-checkout #order_review_heading,
form.woocommerce-checkout .ev-order-review-title {
  margin: 0 0 18px;
  color: #333 !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid #e7e7e7 !important;
}

form.woocommerce-checkout #order_review_heading {
  display: none;
}

form.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
form.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
}

form.woocommerce-checkout p.form-row {
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
}

form.woocommerce-checkout p.form-row.form-row-first,
form.woocommerce-checkout p.form-row.form-row-last {
  width: calc(50% - 8px);
}

form.woocommerce-checkout p.form-row:last-child {
  margin-bottom: 0;
}

form.woocommerce-checkout label {
  display: block;
  margin: 0 0 7px;
  color: #333;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

form.woocommerce-checkout .required {
  color: #4caf50;
}

form.woocommerce-checkout .optional {
  color: #888;
  font-weight: 400;
}

form.woocommerce-checkout input.input-text,
form.woocommerce-checkout textarea.input-text,
form.woocommerce-checkout select,
form.woocommerce-checkout .select2-container .select2-selection--single {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d1d1d1 !important;
  border-radius: 4px !important;
  background: #fff !important;
  color: #333 !important;
  font-size: 14px;
  box-shadow: none !important;
  transition: all 0.2s ease;
}

form.woocommerce-checkout input.input-text,
form.woocommerce-checkout textarea.input-text,
form.woocommerce-checkout select {
  padding: 0 14px;
}

form.woocommerce-checkout textarea.input-text {
  min-height: 110px;
  padding: 12px 14px;
  resize: vertical;
}

form.woocommerce-checkout input.input-text:focus,
form.woocommerce-checkout textarea.input-text:focus,
form.woocommerce-checkout select:focus {
  border-color: #4caf50 !important;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1) !important;
  outline: none;
}

form.woocommerce-checkout .select2-container {
  width: 100% !important;
}

form.woocommerce-checkout .select2-container .select2-selection--single {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 38px 0 14px;
}

form.woocommerce-checkout
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #333;
  line-height: 42px;
  padding: 0;
}

form.woocommerce-checkout
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 42px;
  right: 10px;
}

form.woocommerce-checkout #order_review {
  width: 356px !important;
  min-width: 0;
  background: #fff !important;
  border: 1px solid #dcdcdc !important;
  border-top: 4px solid #4caf50 !important;
  border-radius: 8px !important;
  padding: 22px !important;
  color: #333;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 110px;
}

form.woocommerce-checkout table.woocommerce-checkout-review-order-table {
  width: 100%;
  border: 1px solid #dcdcdc !important;
  border-collapse: collapse;
  border-spacing: 0;
  background: #fff;
  margin: 0 0 18px;
  border-radius: 8px;
  overflow: hidden;
}

form.woocommerce-checkout
  table.woocommerce-checkout-review-order-table
  thead
  th {
  background: #f7fbf7 !important;
  border: 0 !important;
  border-bottom: 1px solid #ececec !important;
  border-right: 1px solid #ececec !important;
  color: #333;
  padding: 12px 12px 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

form.woocommerce-checkout
  table.woocommerce-checkout-review-order-table
  thead
  th:last-child {
  border-right: 0 !important;
}

form.woocommerce-checkout
  table.woocommerce-checkout-review-order-table
  tbody
  td,
form.woocommerce-checkout
  table.woocommerce-checkout-review-order-table
  tfoot
  th,
form.woocommerce-checkout
  table.woocommerce-checkout-review-order-table
  tfoot
  td {
  background: #fff;
  border: 0 !important;
  border-bottom: 1px solid #ececec !important;
  border-right: 1px solid #ececec !important;
  padding: 14px 12px;
  vertical-align: middle;
  box-shadow: none;
}

form.woocommerce-checkout
  table.woocommerce-checkout-review-order-table
  tbody
  td:last-child,
form.woocommerce-checkout
  table.woocommerce-checkout-review-order-table
  tfoot
  th:last-child,
form.woocommerce-checkout
  table.woocommerce-checkout-review-order-table
  tfoot
  td:last-child {
  border-right: 0 !important;
}

form.woocommerce-checkout
  table.woocommerce-checkout-review-order-table
  tfoot
  tr:last-child
  th,
form.woocommerce-checkout
  table.woocommerce-checkout-review-order-table
  tfoot
  tr:last-child
  td {
  border-bottom: 0 !important;
}

form.woocommerce-checkout .ev-review-product {
  display: flex;
  align-items: center;
  gap: 14px;
}

form.woocommerce-checkout .ev-review-thumb {
  flex: 0 0 65px;
}

form.woocommerce-checkout .ev-review-thumb img {
  display: block;
  width: 65px;
  height: 65px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #e2e2e2;
  padding: 5px;
}

form.woocommerce-checkout .ev-review-name {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: #222;
}

form.woocommerce-checkout .product-quantity {
  display: inline-block;
  margin-top: 6px;
  color: #666;
  font-size: 13px;
  font-weight: 700;
}

form.woocommerce-checkout
  .woocommerce-checkout-review-order-table
  .product-total,
form.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
  white-space: nowrap;
  text-align: right;
  font-size: 15px;
  font-weight: 700;
  color: #333;
}

form.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th {
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

form.woocommerce-checkout
  .woocommerce-checkout-review-order-table
  .order-total
  th,
form.woocommerce-checkout
  .woocommerce-checkout-review-order-table
  .order-total
  td {
  color: #4caf50 !important;
  font-size: 18px;
}

form.woocommerce-checkout .woocommerce-Price-amount,
form.woocommerce-checkout .woocommerce-Price-currencySymbol,
form.woocommerce-checkout strong,
form.woocommerce-checkout bdi {
  color: inherit !important;
  opacity: 1 !important;
}

form.woocommerce-checkout #payment {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
}

form.woocommerce-checkout #payment ul.payment_methods {
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  background: #fff;
  margin: 0 0 16px;
  padding: 0;
}

form.woocommerce-checkout #payment ul.payment_methods li {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: 1px solid #ececec;
}

form.woocommerce-checkout #payment ul.payment_methods li:last-child {
  border-bottom: 0;
}

form.woocommerce-checkout #payment ul.payment_methods label {
  margin: 0;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

form.woocommerce-checkout #payment ul.payment_methods li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

form.woocommerce-checkout #payment ul.payment_methods li input {
  accent-color: #4caf50;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  cursor: pointer;
}

form.woocommerce-checkout #payment ul.payment_methods li:has(input:checked) {
  background: #f7fbf7;
}

form.woocommerce-checkout #payment div.payment_box {
  margin: 0;
  padding: 0 16px 14px;
  background: transparent;
  color: #666;
  font-size: 13px;
  line-height: 1.5;
}

form.woocommerce-checkout #payment div.payment_box::before {
  display: none;
}

form.woocommerce-checkout .woocommerce-privacy-policy-text {
  margin: 0 0 16px;
  padding: 14px 16px;
  background: #f7fbf7;
  border: 1px solid #e4eee4;
  border-radius: 6px;
  color: #555;
  font-size: 13px;
  line-height: 1.55;
}

form.woocommerce-checkout .woocommerce-privacy-policy-text p {
  margin: 0;
}

form.woocommerce-checkout .woocommerce-privacy-policy-text a {
  color: #4caf50;
  text-decoration: none;
  font-weight: 600;
}

form.woocommerce-checkout .woocommerce-privacy-policy-text a:hover {
  text-decoration: underline;
}

form.woocommerce-checkout .place-order {
  margin: 0;
  padding: 0;
}

form.woocommerce-checkout button.button,
form.woocommerce-checkout button.alt,
form.woocommerce-checkout a.button,
form.woocommerce-checkout .button {
  height: 42px;
  line-height: 40px;
  padding: 0 18px;
  border-radius: 4px !important;
  border: 1px solid #333 !important;
  background: #333 !important;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: none !important;
  transition: all 0.2s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

form.woocommerce-checkout button.button:hover,
form.woocommerce-checkout button.alt:hover,
form.woocommerce-checkout a.button:hover,
form.woocommerce-checkout .button:hover {
  background: #4caf50 !important;
  border-color: #4caf50 !important;
  color: #fff !important;
}

form.woocommerce-checkout #place_order {
  width: 100%;
  height: auto;
  line-height: 1.2;
  padding: 14px 16px !important;
  border-radius: 4px !important;
  background: #4caf50 !important;
  border: 1px solid #4caf50 !important;
  color: #fff !important;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.18) !important;
}

form.woocommerce-checkout #place_order:hover {
  background: #429b46 !important;
  border-color: #429b46 !important;
}

form.woocommerce-checkout .woocommerce-error,
form.woocommerce-checkout .woocommerce-info,
form.woocommerce-checkout .woocommerce-message {
  width: 100%;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-left: 4px solid #4caf50;
  border-radius: 6px;
  padding: 14px 16px;
  color: #333;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.04);
  margin: 0 0 14px;
}

form.woocommerce-checkout .woocommerce-invalid input.input-text,
form.woocommerce-checkout .woocommerce-invalid textarea.input-text,
form.woocommerce-checkout .woocommerce-invalid select,
form.woocommerce-checkout .woocommerce-invalid .select2-selection {
  border-color: #d9534f !important;
}

form.woocommerce-checkout .woocommerce-validated input.input-text,
form.woocommerce-checkout .woocommerce-validated textarea.input-text,
form.woocommerce-checkout .woocommerce-validated select,
form.woocommerce-checkout .woocommerce-validated .select2-selection {
  border-color: #4caf50 !important;
}

.woocommerce-form-coupon-toggle .woocommerce-info {
  background: #fff;
  border-top: 4px solid #4caf50;
  border-radius: 8px;
  padding: 18px 22px;
  color: #333;
}

.woocommerce-form-coupon-toggle .woocommerce-info a.showcoupon {
  color: #4caf50 !important;
}

.wpcu-btn-wrap {
  align-self: center;
}

body.home .page > .wp-block-columns {
  align-items: stretch !important;
  gap: 30px !important;
  padding: 0;
}

body.home .page > .home-block3 {
  gap: 0 !important;
  margin-top: 25px;
}

body.home .page > .wp-block-columns .woocommerce-Price-amount bdi {
  display: block;
}

body.home .wp-block-columns .wp-block-custom-product-card-ultimate {
  flex: initial;
}

body.home .wp-block-columns .wp-block-custom-product-card-ultimate .wpcu-card,
body.home .wp-block-columns .wp-block-custom-product-card-ultimate .wpcu-image {
  min-height: auto !important;
}

body.home .wp-block-columns .wp-block-custom-product-card-ultimate .wpcu-card {
  padding: 20px;
}

body.home
  .wp-block-columns
  > .wp-block-column
  .wp-block-custom-product-card-ultimate
  .wpcu-image
  .wpcu-discount {
  position: absolute;
  top: 5px;
  right: 5px;
  left: initial;
  font-size: 14px;
  padding: 7px;
}

body.home .home-top-block-left {
  flex-direction: initial;
}

body.home .home-top-block-middle .n2-ss-slider-2 .n2-ow,
body.home .home-block2 .n2-ss-slider-2 .n2-ow {
  max-height: 530px;
}

body.home .home-top-block-middle .n2-ss-slider-wrapper-inside,
body.home .home-block2 .n2-ss-slider-wrapper-inside {
  border-radius: 10px;
  overflow: hidden;
}

body.home .home-top-block-middle .wp-block-columns,
body.home .homeblock2 .wp-block-columns {
  margin: auto 0 0;
}

body.home .home-top-block-middle .wp-block-columns > .wp-block-column,
body.home .home-block2 .wp-block-columns > .wp-block-column {
  background-color: #666;
  border-radius: 10px;
}

body.home
  .home-top-block-middle
  .wp-block-columns
  > .wp-block-column:first-child,
body.home .home-block2 .wp-block-columns > .wp-block-column:first-child {
  background-color: #fff;
}

body.home .home-top-block-middle .wp-block-custom-product-card-ultimate,
body.home .home-block2 .wp-block-custom-product-card-ultimate {
  display: flex;
  justify-content: space-between;
}

body.home
  .home-top-block-middle
  .wp-block-custom-product-card-ultimate
  .wpcu-card,
body.home .home-block2 .wp-block-custom-product-card-ultimate .wpcu-card {
  background: transparent !important;
}

body.home
  .home-top-block-middle
  .wp-block-custom-product-card-ultimate
  .wpcu-image,
body.home .home-block2 .wp-block-custom-product-card-ultimate .wpcu-image {
  display: block;
  width: calc(40% - 10px);
  background-color: #fff;
  border-radius: 10px;
  position: relative;
}

body.home
  .home-top-block-middle
  .wp-block-columns
  > .wp-block-column:last-child
  .wp-block-custom-product-card-ultimate
  .wpcu-image,
body.home
  .home-block2
  .wp-block-columns
  > .wp-block-column:last-child
  .wp-block-custom-product-card-ultimate
  .wpcu-image {
  background-color: #ddd;
}

body.home
  .home-top-block-middle
  .wp-block-custom-product-card-ultimate
  .wpcu-image
  img,
body.home .home-block2 .wp-block-custom-product-card-ultimate .wpcu-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

body.home
  .home-top-block-middle
  .wp-block-custom-product-card-ultimate
  .wpcu-content,
body.home .home-block2 .wp-block-custom-product-card-ultimate .wpcu-content {
  width: calc(60% - 10px);
  padding: 0 40px 0 10px;
  text-align: center;
  position: relative;
}

body.home
  .home-top-block-middle
  .wp-block-custom-product-card-ultimate
  .wpcu-content
  h3,
body.home .home-block2 .wp-block-custom-product-card-ultimate .wpcu-content h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  line-height: 16px;
  margin: 15px 0;
}

body.home
  .home-top-block-middle
  .wp-block-columns
  > .wp-block-column:last-child
  .wp-block-custom-product-card-ultimate
  .wpcu-content
  h3,
body.home
  .home-block2
  .wp-block-columns
  > .wp-block-column:last-child
  .wp-block-custom-product-card-ultimate
  .wpcu-content
  h3 {
  color: #fff;
}

body.home
  .home-top-block-middle
  .wp-block-custom-product-card-ultimate
  .wpcu-content
  .wpcu-price,
body.home
  .home-block2
  .wp-block-custom-product-card-ultimate
  .wpcu-content
  .wpcu-price {
  margin: 0;
}

body.home
  .home-top-block-middle
  .wp-block-custom-product-card-ultimate
  .wpcu-content
  .wpcu-price
  .wpcu-old,
body.home
  .home-block2
  .wp-block-custom-product-card-ultimate
  .wpcu-content
  .wpcu-price
  .wpcu-old {
  font-size: 12px;
  margin: 0;
}

body.home
  .home-top-block-middle
  .wp-block-columns
  > .wp-block-column:last-child
  .wp-block-custom-product-card-ultimate
  .wpcu-content
  .wpcu-price
  .wpcu-old
  bdi,
body.home
  .home-block2
  .wp-block-columns
  > .wp-block-column:last-child
  .wp-block-custom-product-card-ultimate
  .wpcu-content
  .wpcu-price
  .wpcu-old
  bdi {
  color: #fff;
}

body.home
  .home-top-block-middle
  .wp-block-custom-product-card-ultimate
  .wpcu-content
  .wpcu-price
  .wpcu-new
  bdi,
body.home
  .home-block2
  .wp-block-custom-product-card-ultimate
  .wpcu-content
  .wpcu-price
  .wpcu-new
  bdi {
  font-size: 16px;
  font-weight: 600;
  color: #1ca71c;
}

body.home
  .home-top-block-middle
  .wp-block-columns
  > .wp-block-column:last-child
  .wp-block-custom-product-card-ultimate
  .wpcu-content
  .wpcu-price
  .wpcu-new
  bdi,
body.home
  .home-block2
  .wp-block-columns
  > .wp-block-column:last-child
  .wp-block-custom-product-card-ultimate
  .wpcu-content
  .wpcu-price
  .wpcu-new
  bdi {
  color: #ffc107;
}

body.home
  .home-top-block-middle
  .wp-block-custom-product-card-ultimate
  .wpcu-content
  .add_to_cart_button,
body.home
  .home-block2
  .wp-block-custom-product-card-ultimate
  .wpcu-content
  .add_to_cart_button,
body.home
  .home-block2
  .wp-block-custom-product-card-ultimate
  .wpcu-content
  .add_to_cart_button,
body.home
  .home-block2
  .wp-block-custom-product-card-ultimate
  .wpcu-content
  .add_to_cart_button {
  width: 30px;
  height: 30px;
  background: #1aba1a url(../images/shopping_cart.png) center / 24px no-repeat !important;
  font-size: 0;
  margin: 0;
  position: absolute;
  bottom: 0;
  right: 10px;
  border-radius: 10px;
}
body.home
  .home-top-block-right{
    justify-content: space-between;
  }
body.home
  .home-top-block-right
  .wp-block-custom-product-card-ultimate
  .add_to_cart_button {
  justify-content: space-between;
  gap: initial;
  padding: 15px 10px;
}

body.home .home-top-block-right .wp-block-custom-product-card-ultimate h3 {
  font-size: 15px;
  line-height: 20px;
  margin: 15px 0 0;
}

body.home
  .home-top-block-right
  .wp-block-custom-product-card-ultimate
  .wpcu-price {
  margin: 25px 0 0;
}

body.home
  .home-top-block-right
  .wp-block-custom-product-card-ultimate:first-child {
  margin: 0 0 20px 0 !important;
}

body.home
  .home-top-block-right
  .wp-block-custom-product-card-ultimate:first-child
  .wpcu-card {
  background: #fff !important;
  justify-content: space-between;
}

body.home
  .home-top-block-right
  .wp-block-custom-product-card-ultimate:first-child
  .wpcu-card
  .add_to_cart_button {
  background-color: #333 !important;
}

body.home
  .home-top-block-right
  .wp-block-custom-product-card-ultimate:first-child
  .wpcu-image {
  width: calc(50% - 10px);
}

body.home
  .home-top-block-right
  .wp-block-custom-product-card-ultimate:first-child
  .wpcu-content {
  width: calc(50% - 10px);
  flex: initial;
}

body.home
  .home-top-block-right
  .wp-block-custom-product-card-ultimate
  .wpcu-content
  .wpcu-price {
  text-align: center;
}

body.home
  .home-top-block-right
  .wp-block-custom-product-card-ultimate
  .wpcu-content
  .wpcu-price
  .wpcu-new
  bdi {
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 5px 0;
}

body.home
  .home-top-block-right
  .wp-block-custom-product-card-ultimate
  .wpcu-content
  .wpcu-price
  .wpcu-old {
  margin: 0;
}

body.home
  .home-top-block-right
  .wp-block-custom-product-card-ultimate
  .wpcu-content
  .wpcu-price
  .wpcu-old
  bdi {
  font-size: 12px;
  font-weight: 300;
}

body.home
  .home-top-block-right
  .wp-block-custom-product-card-ultimate
  .wpcu-image {
  background: transparent !important;
}

body.home
  .home-top-block-right
  .wp-block-custom-product-card-ultimate
  .wpcu-image
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.home
  .home-top-block-right
  .wp-block-custom-product-card-ultimate
  .wpcu-content
  .add_to_cart_button {
  font-size: 11px;
  padding: 7px 10px;
  border-radius: 10px;
  margin: 0;
  align-self: center;
}

body.home
  .home-top-block-right
  .wp-block-custom-product-card-ultimate:last-child
  .wpcu-card {
  flex-direction: row-reverse;
  justify-content: space-between;
  background: #27282c !important;
  height: auto !important;
}

body.home
  .home-top-block-right
  .wp-block-custom-product-card-ultimate:last-child
  h3 {
  color: #fff;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
}

body.home
  .home-top-block-right
  .wp-block-custom-product-card-ultimate:last-child
  .wpcu-image {
  width: calc(40% - 10px);
}

body.home
  .home-top-block-right
  .wp-block-custom-product-card-ultimate:last-child
  .wpcu-content {
  width: calc(60% - 10px);
  flex: initial;
}

body.home
  .home-top-block-right
  .wp-block-custom-product-card-ultimate:last-child
  .wpcu-price
  .wpcu-old
  bdi {
  display: block;
  font-size: 12px;
  font-weight: 300;
  color: #fff;
}

body.home
  .home-top-block-right
  .wp-block-custom-product-card-ultimate:last-child
  .wpcu-price
  .wpcu-new
  bdi {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #1ca71c;
}

body.home
  .home-top-block-right
  .wp-block-custom-product-card-ultimate:last-child
  .wpcu-content
  .add_to_cart_button {
  background: #1ca71c !important;
  border: 1px solid #fff;
}

.dm-cat-menu {
  width: 100%;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  background: #fff;
  border-radius: 10px;
}

.dm-cat-menu .dm-root-item {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.dm-cat-menu .dm-root-item > a {
  display: block;
  padding: 10px 14px;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
}

.dm-cat-menu .dm-root-sub {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  background: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  border-radius: 10px;
}

.dm-cat-menu .dm-root-sub > li {
  position: relative;
}

.dm-cat-menu a {
  display: block;
  padding: 9px 14px;
  text-decoration: none;
  color: #333;
  white-space: nowrap;
}

.dm-cat-menu .dm-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dm-cat-menu .dm-link-row > a {
  flex: 1;
}

.dm-cat-menu .dm-sub-toggle {
  width: 30px;
  min-width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-right: 10px;
}

.dm-cat-menu .dm-sub-toggle span {
  line-height: 1;
  display: inline-block;
  transition: transform 0.2s ease;
}

.dm-cat-menu .dm-link-row:hover .dm-sub-toggle span {
  transform: rotate(180deg);
}

.dm-cat-menu .dm-cat-sub {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.15s ease;
  z-index: 1000;
}

.dm-cat-menu li.has-children:hover > .dm-cat-sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dm-cat-menu li.has-children:hover > .dm-link-row .dm-sub-toggle span {
  transform: rotate(180deg);
}

.dm-cat-menu .dm-cat-link:hover {
  color: #4caf50;
}

body.home .home-services-block-wrapper {
  padding: 0;
}

body.home .home-services-block {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/services_banner.png");
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 25px 0;
  margin: 25px 0 0;
}

body.home .home-services-block img {
  width: 100px;
}

body.home .home-services-block h3 {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  margin: 0 50px;
}

body.home .home-services-block a {
  text-decoration: none;
  color: #4caf50;
  font-size: 12px;
  background-color: #fff;
  border-radius: 10px;
  text-transform: uppercase;
  padding: 7px 15px;
}

body.home .home-block2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0;
}

body.home .home-block2 > div {
  width: calc(100% / 2 - 15px);
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 15px;
  margin: 0;
}

.brands-head-list,
.top-categories-head-list,
.programs-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 15px 0;
}

.brands-head-list h3,
.top-categories-head-list h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

.programs-section-head h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  color: #4caf50;
}

.brands-head-list a,
.top-categories-head-list a {
  font-size: 13px;
  font-weight: 500;
  color: #999;
  margin: 0;
}

.top-categories-head-list .list-navigation,
.programs-navigation {
  width: 70px;
  display: flex;
  justify-content: space-between;
  padding: 5px 10px;
  background-color: #ebedf3;
  border-radius: 10px;
}

.top-categories-head-list .list-navigation span,
.programs-navigation span {
  font-size: 11px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transform: scaleY(2);
  user-select: none;
}

.home-brand-list ul,
.top-categories-list ul,
.programs-section ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.home-brand-list ul li {
  width: calc(100% / 5 - 10px);
}

.home-brand-list ul li img {
  width: 100px;
}

.top-categories-list ul li,
.programs-section ul li {
  width: calc(100% / 4 - 15px);
}

.top-categories-list ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333;
  font-size: 12px;
  font-weight: 600;
}

.top-categories-list ul li a img {
  width: 100px;
  margin: 0 0 5px 0;
}

.top-categories-list ul .slick-arrow,
.programs-section ul .slick-arrow {
  display: none !important;
}

.programs-section ul li .program-img {
  position: relative;
}

.programs-section ul li .program-img img.program-img {
  width: 100%;
}

.programs-section ul li .program-img img.program-img-overlay {
  position: absolute;
  top: 5px;
  right: 10px;
  z-index: 1;
}

.programs-section ul li .program-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.programs-section ul li h3 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin: 10px 0;
}

.programs-section ul li p {
  font-size: 12px;
}

.programs-section ul li a {
  font-size: 12px;
  color: #4caf50;
  border: 1px solid #4caf50;
  padding: 7px 25px;
  border-radius: 10px;
  display: inline-flex;
}

.programs-section .slick-list {
  margin: 0 -15px;
}

.programs-section .slick-slide {
  margin: 0 15px;
}

.daily-offer-side-images {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  padding: 20px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  flex: 1;
}

.daily-offer-side-images .side-image-wrapper {
  height: 130px;
  position: relative;
  overflow: hidden;
}

.daily-offer-side-images .side-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.3s ease;
}

.daily-offer-side-images .side-image-wrapper:hover img {
  transform: scale(1.04);
}

.dali-carousel--cele-mai-vandute .owl-nav button.owl-prev {
  left: 10px;
}

.dali-carousel--cele-mai-vandute .owl-nav button.owl-next {
  right: 10px;
}

.dali-carousel--cele-mai-vandute .dali-carousel-title {
  padding: 0 25px;
}

.additional-info-specs {
  list-style: none;
  margin: 0 0 25px 0;
  padding: 0;
}

.additional-info-specs li {
  font-size: 14px;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.additional-info-specs li:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4caf50;
  flex-shrink: 0;
  margin-top: 6px;
}

.product-description-section {
  padding: 15px 25px;
  margin: 25px 0 0;
  background-color: #fff;
  border-radius: 10px;
}

.product_meta {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid #e7efe7;
  border-radius: 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
  color: #454545;
}

.product-meta-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: flex-start;
  gap: 14px;
}

.product-meta-label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.product-meta-title {
  font-weight: 600;
  color: #1f1f1f;
  line-height: 1.4;
}

.product-meta-value {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}

.product_meta > span {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.product_meta .sku_wrapper,
.product_meta .posted_in,
.product_meta .tagged_as {
  position: relative;
  padding-left: 28px;
}

.product_meta .sku_wrapper {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231aba1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.59 13.41 11 23l-9-9V3h11l9 9-1.41 1.41z'/%3E%3Cpath d='M7 7h.01'/%3E%3C/svg%3E")
    no-repeat left 2px;
  background-size: 18px 18px;
}

.product_meta .posted_in {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231aba1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 7h18'/%3E%3Cpath d='M6 3h12l3 4v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7l3-4z'/%3E%3C/svg%3E")
    no-repeat left 2px;
  background-size: 18px 18px;
}

.product_meta .tagged_as {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231aba1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.59 13.41 11 23l-9-9V3h11l9 9-1.41 1.41z'/%3E%3Cpath d='M7 7h.01'/%3E%3C/svg%3E")
    no-repeat left 2px;
  background-size: 18px 18px;
}

.product_meta .sku_wrapper {
  font-weight: 600;
  color: #1f1f1f;
  display: flex;
  align-items: center;
}

.product_meta .posted_in,
.product_meta .tagged_as {
  font-weight: 600;
  color: #1f1f1f;
}

.product_meta .sku_wrapper .sku,
.product_meta .posted_in a,
.product_meta .tagged_as a {
  font-weight: 500;
}

.product_meta .sku {
  display: inline-block;
  padding: 2px 5px;
  background: rgba(26, 186, 26, 0.15);
  border-radius: 5px;
  color: #999 !important;
  margin-left: 4px;
}

.product_meta a {
  display: inline-flex;
  align-items: center;
  padding: 2px 5px;
  background: rgba(26, 186, 26, 0.15);
  border-radius: 5px;
  color: #333 !important;
  text-decoration: none !important;
  transition: all 0.2s ease;
  margin: 0 2px 0 0;
}

.product_meta a:hover {
  background: #1aba1a;
  color: #fff !important;
}

.product_meta .posted_in,
.product_meta .tagged_as {
  gap: 4px;
}

.dali-carousel-title {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  padding: 25px;
}

.dali-carousel.cele-mai-vandute .owl-nav button.owl-prev,
.ultimele-produse-vizualizate .owl-nav button.owl-prev {
  left: 10px;
}

.dali-carousel.cele-mai-vandute .owl-nav button.owl-next,
.ultimele-produse-vizualizate .owl-nav button.owl-next {
  right: 10px;
}

.ultimele-produse-vizualizate .dali-item {
  flex-direction: row;
  justify-content: space-between;
}

.ultimele-produse-vizualizate .dali-item .dali-thumb {
  width: calc(30% - 5px);
}

.ultimele-produse-vizualizate .dali-item .dali-thumb img {
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.ultimele-produse-vizualizate .dali-item .dali-info {
  width: calc(70% - 5px);
  align-items: flex-start;
  flex: none;
}

.ultimele-produse-vizualizate .dali-title {
  font-size: 12px;
  text-align: left;
}

.ultimele-produse-vizualizate .dali-price {
  margin: auto 0 0;
}

.ultimele-produse-vizualizate .dali-stock-status {
  display: none;
}

.ultimele-produse-vizualizate .dali-info .add_to_cart_button {
  width: 30px;
  height: 30px;
  background: #1aba1a url(../images/shopping_cart.png) center / 24px no-repeat !important;
  font-size: 0;
  margin: 0;
  position: absolute;
  bottom: 10px;
  left: 10px;
  border-radius: 10px;
}

.ultimele-produse-vizualizate .dali-sale-badge {
  top: 0;
  left: 0;
  padding: 5px 10px;
}

.ultimele-produse-vizualizate .dali-sale-badge small {
  font-size: 11px;
}

.ultimele-produse-vizualizate .dali-sale-badge .woocommerce-Price-amount {
  font-size: 12px !important;
}

#post-25 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  color: #1f2937;
}

#post-25 .titluri {
  margin-bottom: 25px;
}

#post-25 .wp-block-group.alignfull {
  margin: 0 0 50px;
  padding: 0;
}

#post-25 .wp-block-group__inner-container {
  max-width: 1280px;
  margin: 0 auto;
}

#post-25 h5.wp-block-heading {
  max-width: 950px;
  margin: 0 auto 10px;
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 400;
  color: #4b5563;
}

#post-25 .wp-block-spacer {
  height: 25px !important;
}

#post-25 .wp-block-columns {
  gap: 28px;
  align-items: stretch !important;
  margin: 0;
}

#post-25 .wp-block-column {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

#post-25 .wp-block-column:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
}

#post-25 .wp-block-column.is-layout-flow:empty {
  display: none;
}

#post-25 figure.wp-block-image {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e5e7eb;
}

#post-25 figure.wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

#post-25 .wp-block-column:hover figure.wp-block-image img {
  transform: scale(1.06);
}

#post-25 .wp-block-column > h3,
#post-25 .wp-block-column > p,
#post-25 .wp-block-column > ul,
#post-25 .wp-block-column > .wp-block-button {
  padding-left: 26px;
  padding-right: 26px;
}

#post-25 .wp-block-column > h3 {
  margin: 24px 0 12px;
  font-size: 1.45rem;
  line-height: 1.3;
  font-weight: 700;
  color: #173d2d;
}

#post-25 .wp-block-column > p {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.75;
  color: #4b5563;
}

#post-25 .wp-block-list {
  margin: 0 0 22px 0;
  padding-left: 46px;
  color: #374151;
}

#post-25 .wp-block-list li {
  margin-bottom: 10px;
  line-height: 1.65;
}

#post-25 .wp-block-list li::marker {
  color: #49b96e;
}

#post-25 .wp-block-button {
  margin-top: auto;
  padding-bottom: 26px;
}

#post-25 .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  background: linear-gradient(135deg, #49b96e, #1f7a45);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  box-shadow: 0 8px 20px rgba(73, 185, 110, 0.28);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

#post-25 .wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(73, 185, 110, 0.35);
  background: linear-gradient(135deg, #54c879, #17673a);
}

#post-25 strong {
  color: #173d2d;
}

#post-25 .has-text-align-center {
  text-align: center;
}

#post-25 > .wp-block-group + .wp-block-group {
  margin-top: 20px;
}

#post-25 > .wp-block-group {
  position: relative;
}

#post-25 > .wp-block-group:not(:first-of-type):before {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
  margin: 0 auto 35px;
}

body.single-product .dali-carousel-title {
  background-color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin: 25px 0 0;
}

.dali-carousel.produse-similare {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.dali-carousel.produse-similare .owl-nav button.owl-prev {
  left: 10px;
}

.dali-carousel.produse-similare .owl-nav button.owl-next {
  right: 10px;
}

.added_to_cart {
  display: none !important;
}

.menu-item-cart {
  position: relative;
}

.menu-item-cart > .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mini-cart-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 390px;
  max-width: calc(100vw - 30px);
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(16, 24, 40, 0.14);
  padding: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease;
  overflow: hidden;
}

.menu-item-cart:hover .mini-cart-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-item-cart::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  height: 18px;
}

.mini-cart-dropdown .woocommerce-mini-cart {
  list-style: none;
  margin: 0;
  padding: 14px;
  max-height: 420px;
  overflow-y: auto;
}

.mini-cart-dropdown .woocommerce-mini-cart::-webkit-scrollbar {
  width: 8px;
}

.mini-cart-dropdown .woocommerce-mini-cart::-webkit-scrollbar-thumb {
  background: #d6dde6;
  border-radius: 20px;
}

.mini-cart-dropdown .woocommerce-mini-cart-item {
  position: relative;
  display: block;
  margin: 0;
  padding: 14px 38px 14px 0;
  border-bottom: 1px solid #eef2f6;
}

.mini-cart-dropdown .woocommerce-mini-cart-item:last-child {
  border-bottom: 0;
}

.mini-cart-dropdown
  .woocommerce-mini-cart-item
  > a
  img.attachment-woocommerce_thumbnail {
  display: none !important;
}

.mini-cart-dropdown .woocommerce-mini-cart-item > a:not(.remove) {
  display: block;
  text-decoration: none;
  color: inherit;
  margin: 0;
  padding: 0;
}

.mini-cart-dropdown .ev-review-product {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: center;
}

.mini-cart-dropdown .ev-review-thumb {
  width: 74px;
  height: 74px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #edf2f7;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mini-cart-dropdown .ev-review-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.mini-cart-dropdown .ev-review-name {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mini-cart-dropdown
  .woocommerce-mini-cart-item
  > a:not(.remove):hover
  .ev-review-name {
  color: #2f9e44;
}

.mini-cart-dropdown .quantity {
  display: block;
  margin-top: 10px;
  margin-left: 86px;
  font-size: 13px;
  line-height: 1.4;
  color: #667085;
}

.mini-cart-dropdown .quantity .amount {
  font-weight: 700;
  color: #111827;
}

.mini-cart-dropdown a.remove.remove_from_cart_button {
  position: absolute;
  top: 14px;
  right: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f3f4f6;
  color: #6b7280 !important;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mini-cart-dropdown a.remove.remove_from_cart_button:hover {
  background: #ef4444 !important;
  color: #fff !important;
}

.mini-cart-dropdown .woocommerce-mini-cart__total {
  margin: 0;
  padding: 16px 18px;
  border-top: 1px solid #eef2f6;
  background: #fcfdff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
}

.mini-cart-dropdown .woocommerce-mini-cart__total strong {
  color: #111827;
  font-weight: 700;
}

.mini-cart-dropdown .woocommerce-mini-cart__total .amount {
  font-size: 18px;
  font-weight: 800;
  color: #2f9e44;
}

.mini-cart-dropdown .woocommerce-mini-cart__buttons {
  margin: 0;
  padding: 16px 18px 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: #fcfdff;
}

.mini-cart-dropdown .woocommerce-mini-cart__buttons .button {
  margin: 0 !important;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid #dbe3ec;
  background: #fff;
  color: #1f2937;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: none;
}

.mini-cart-dropdown .woocommerce-mini-cart__buttons .button:hover {
  border-color: #2f9e44;
  color: #2f9e44;
  background: #f6fff8;
}

.mini-cart-dropdown .woocommerce-mini-cart__buttons .checkout {
  background: #2f9e44;
  border-color: #2f9e44;
  color: #fff;
}

.mini-cart-dropdown .woocommerce-mini-cart__buttons .checkout:hover {
  background: #27863a;
  border-color: #27863a;
  color: #fff;
}

.mini-cart-dropdown .woocommerce-mini-cart__empty-message {
  margin: 0;
  padding: 28px 20px;
  text-align: center;
  font-size: 14px;
  color: #667085;
}

.ev-cart-toast {
  position: fixed;
  top: 90px;
  right: 24px;
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-12px) scale(0.98);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.ev-cart-toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.ev-cart-toast-inner {
  min-width: 280px;
  max-width: 420px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #dfe7df;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.ev-cart-toast-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  background: #2f9e44;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
}

.ev-cart-toast-text {
  font-size: 14px;
  line-height: 1.4;
  color: #1f2937;
  font-weight: 600;
}

.ev-cart-toast-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ev-cart-toast-link {
  font-size: 13px;
  font-weight: 700;
  color: #2f9e44;
  text-decoration: none;
  pointer-events: auto;
}

.ev-cart-toast-link:hover {
  text-decoration: underline;
}

.woocommerce-Tabs-panel > h2 {
  display: none;
}

.product-description-section {
  margin-top: 40px;
}

.product-description-section .woocommerce-Tabs-panel {
  background: #fff;
  border: 2px solid #eee;
  border-radius: 0 10px 10px 10px;
  padding: 25px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.product-description-section h2 {
  font-size: 20px;
  margin-bottom: 15px;
}

.product-description-section h4 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
}

.product-description-section p {
  margin-bottom: 12px;
}

.product-description-section p br {
  margin-bottom: 6px;
}

.woocommerce-product-attributes {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.woocommerce-product-attributes tr {
  border-bottom: 1px solid #eee;
}

.woocommerce-product-attributes th {
  text-align: left;
  padding: 10px 12px;
  width: 40%;
  font-weight: 600;
  color: #444;
  background: #fafafa;
}

.woocommerce-product-attributes td {
  padding: 10px 12px;
  color: #222;
}

.product-description-section {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  overflow: hidden;
}

.woocommerce-product-attributes {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.woocommerce-product-attributes tr {
  transition: background 0.2s ease;
}

.woocommerce-product-attributes tr:nth-child(even) {
  background: #fafafa;
}

.woocommerce-product-attributes tr:hover {
  background: #f1f7ff;
}

.woocommerce-product-attributes th {
  text-align: left;
  padding: 14px 18px;
  width: 40%;
  font-weight: 600;
  color: #333;
  font-size: 14px;
  border-right: 1px solid #eee;
}

.woocommerce-product-attributes td {
  padding: 14px 18px;
  font-size: 14px;
  color: #555;
}

.woocommerce-product-attributes td p {
  margin: 0;
}

.woocommerce-product-attributes a {
  color: #1aba1a;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.woocommerce-product-attributes a:hover {
  color: #118811;
  text-decoration: underline;
}

.woocommerce-product-attributes tr + tr {
  border-top: 1px solid #eee;
}

.woocommerce-product-attributes th {
  width: 250px !important;
  color: #777;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.woocommerce-product-attributes td {
  font-weight: 600;
  color: #111;
  padding: 0 0 0 15px !important;
}

/* mobile */

@media (max-width: 1400px) {
  body.home .home-top-block-middle .n2-ss-slider-2 .n2-ow,
  body.home .home-block2 .n2-ss-slider-2 .n2-ow {
    max-height: 400px;
  }
}

@media (max-width: 1200px) {
  .header-inner {
    gap: 16px;
    padding-left: 20px;
    padding-right: 20px;
  }
  #menu-main-menu {
    width: calc(100% - 220px);
  }
  #menu-main-menu > li > a {
    padding: 12px 12px;
    font-size: 14px;
  }
  .header-inner .top-logo {
    width: 90px;
    flex-basis: 90px;
  }
  .header-inner .top-right-menu {
    width: 90px;
    flex-basis: 90px;
  }
  body.woocommerce-cart .product-name {
    min-width: 320px;
  }
  body.woocommerce-cart .product-thumbnail {
    width: 118px;
    min-width: 118px;
  }
  body.woocommerce-cart .product-thumbnail > a:first-child img {
    width: 98px;
    height: 98px;
  }
  body.woocommerce-cart .ev-review-thumb {
    flex: 0 0 98px;
  }
  body.woocommerce-cart .ev-review-thumb img {
    width: 98px;
    height: 98px;
  }
  body.woocommerce-cart .ev-review-name a {
    font-size: 17px;
  }
  form.woocommerce-checkout .col2-set {
    width: calc(100% - 340px);
  }
  form.woocommerce-checkout .woocommerce-checkout-review-order {
    width: 316px;
  }
  body.home .home-top-block-middle .n2-ss-slider-2 .n2-ow,
  body.home .home-block2 .n2-ss-slider-2 .n2-ow {
    max-height: 450px;
  }
  body.home
    .home-top-block-middle
    .wp-block-custom-product-card-ultimate
    .wpcu-content
    .wpcu-price
    .wpcu-new
    bdi,
  body.home
    .home-block2
    .wp-block-custom-product-card-ultimate
    .wpcu-content
    .wpcu-price
    .wpcu-new
    bdi {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  header {
    position: relative;
  }
  .header-inner {
    flex-wrap: nowrap;
    padding: 12px 16px;
    gap: 10px;
  }
  .header-inner .top-logo {
    width: 84px;
    flex: 0 0 84px;
  }
  .mobile-menu-toggler {
    display: block;
    margin-left: auto;
    order: 3;
  }
  .header-inner .top-right-menu {
    width: auto;
    flex: 0 0 auto;
    order: 2;
    margin-left: auto;
    margin-right: 6px;
    gap: 6px;
  }
  #menu-main-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: 12px 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    z-index: 999;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition:
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0.22s ease;
  }
  .header-inner.menu-open #menu-main-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  #menu-main-menu > li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  #menu-main-menu > li:last-child {
    border-bottom: 0;
  }
  #menu-main-menu > li > a,
  #menu-main-menu .sub-menu a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 14px 46px 14px 16px;
    white-space: normal;
    border-radius: 0;
    background: transparent !important;
  }
  #menu-main-menu > li > a::after,
  #menu-main-menu .sub-menu li > a::after {
    display: none;
  }
  #menu-main-menu .sub-menu {
    display: none;
    position: static;
    min-width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 0 14px;
    margin: 0;
  }
  #menu-main-menu .sub-menu .sub-menu {
    margin-left: 0;
    padding-left: 14px;
  }
  #menu-main-menu .sub-menu a {
    padding-left: 14px;
    padding-right: 44px;
    font-size: 14px;
  }
  #menu-main-menu .submenu-toggle {
    display: block;
    right: 8px;
    width: 36px;
    height: 36px;
  }
  #menu-main-menu > li.menu-item-has-children > a::before,
  #menu-main-menu .sub-menu .menu-item-has-children > a::before {
    display: none;
  }
  #menu-main-menu > li.menu-item-has-children:hover > .submenu-toggle span {
    transform: rotate(225deg);
  }
  #menu-main-menu .sub-menu .submenu-toggle {
    width: 30px;
    height: 30px;
    right: 8px;
  }
  #menu-main-menu .sub-menu .submenu-toggle span {
    transform: rotate(-45deg);
  }
  #menu-main-menu
    .sub-menu
    li.menu-item-has-children:hover
    > .submenu-toggle
    span {
    transform: rotate(45deg);
  }
  body.woocommerce-cart .woocommerce .woocommerce-cart-form {
    width: 100%;
  }
  body.woocommerce-cart .woocommerce .cart-collaterals {
    margin: 15px 0 0;
    width: 100%;
  }
  body.woocommerce-cart .cart_totals table.shop_table tbody {
    display: flex;
    flex-direction: column;
  }
  body.woocommerce-cart .cart_totals table.shop_table tr {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
  }
  body.woocommerce-cart .cart_totals table.shop_table tr th,
  body.woocommerce-cart .cart_totals table.shop_table tr td {
    display: inline-flex;
    border: none !important;
  }
  body.woocommerce-cart .cart_totals {
    position: static;
    top: auto;
  }
  form.woocommerce-checkout .col2-set,
  form.woocommerce-checkout .woocommerce-checkout-review-order {
    width: 100%;
  }
  form.woocommerce-checkout .woocommerce-checkout-review-order {
    position: static;
    top: auto;
  }
  body.home .page > .wp-block-columns.home-block1 {
    gap: 15px !important;
    flex-direction: column;
  }
  body.home .home-top-block-left {
    display: none;
  }
  body.home .home-top-block-middle .n2-ss-slider-2 .n2-ow,
  body.home .home-block2 .n2-ss-slider-2 .n2-ow {
    max-height: 400px;
  }
  body.home .home-top-block-middle .wp-block-columns,
  body.home .home-block2 .wp-block-columns {
    margin: 15px 0 0;
  }
  body.home .home-top-block-right {
    flex-direction: row !important;
    justify-content: space-between;
  }
  body.home .home-top-block-right .wp-block-custom-product-card-ultimate {
    width: calc(100% / 2 - 15px);
  }
  body.home
    .home-top-block-right
    .wp-block-custom-product-card-ultimate:first-child {
    margin: 0 !important;
  }
  body.home .home-block2 {
    padding: 0;
  }
  body.home .home-block2 > div {
    width: 100%;
  }
  body.home .home-block2 > div:first-child {
    margin: 0 0 15px 0;
  }
  body.home .page > .home-block3 {
    flex-direction: column;
  }
  body.home .page > .home-block3 > .wp-block-column {
    flex-basis: 100% !important;
  }
  body.home .page > .home-block3 > .wp-block-column:first-child {
    margin: 0 0 15px 0;
  }
  .daily-offer-side-images {
    flex-direction: row;
    border-radius: 10px;
  }
  .ddo-urgency-text {
    width: 100%;
  }
  body.home .home-services-block {
    padding: 10px 0;
  }
  body.home .home-services-block h3 {
    font-size: 12px;
    margin: 0 25px;
  }
  body.home .home-services-block a {
    font-size: 10px;
    padding: 5px 10px;
  }
  body.home .home-services-block img {
    width: 70px;
  }
  body.home .home-block6 .top-info,
  body.home .home-block7 .top-info {
    display: flex;
    flex-direction: column;
  }
  body.home .home-block8 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: unset;
  }
  body.home .home-block8 .category-col {
    width: calc(100% / 3 - 10px);
    padding: 10px;
  }
  body.home .home-block8 .category-col .product-img-wrap {
    width: 80px;
    height: 80px;
  }
  body.home .home-block8 .category-col .category-header {
    flex-direction: column;
    align-items: center;
  }
  body.home .home-block8 .category-col .product-name {
    font-size: 11px;
  }
  body.home .home-block10 .card-grid {
    gap: unset;
    justify-content: space-between;
  }
  body.home .home-block10 .card-grid .card {
    width: calc(100% / 2 - 10px);
    margin-bottom: 20px;
  }
  body.home .home-block10 .card-grid .card:nth-last-child(-n + 2) {
    margin: 0;
  }
  #post-25 .wp-block-columns {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
  #post-25 .wp-block-column {
    min-width: 0;
  }
  #post-25 .wp-block-column:nth-child(3):last-child {
    grid-column: 1 / -1;
    max-width: 520px;
    margin: 0 auto;
  }
  #post-25 .wp-block-column > h3,
  #post-25 .wp-block-column > p,
  #post-25 .wp-block-column > ul,
  #post-25 .wp-block-column > .wp-block-button {
    padding-left: 20px;
    padding-right: 20px;
  }
  #post-25 .wp-block-group.alignfull:nth-child(4) .wp-block-columns {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  #post-23 .section-card.reveal {
    flex-direction: column-reverse;
  }
  #post-23 .section-card.reveal.container .section-card-right {
    width: 100%;
    height: 250px;
  }
  #post-23 .section-card.reveal.container .section-card-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #post-23 .section-card.reveal.team .team-grid,
  #post-23 .section-card.reveal.container .values-grid {
    display: flex;
    flex-direction: column;
  }
  #post-28 .info-value {
    font-size: 16px;
  }
  .menu-item-cart:hover .mini-cart-dropdown {
    opacity: 0;
    visibility: hidden;
    transform: none;
  }
}

@media (max-width: 767px) {
  .header-inner {
    padding: 12px 15px;
    gap: 10px;
  }
  .header-inner .top-logo {
    width: 82px;
    flex-basis: 82px;
  }
  .header-inner .top-right-menu a {
    width: 38px;
    height: 38px;
  }
  .header-inner .top-right-menu i {
    font-size: 18px;
  }
  .mobile-menu-toggler {
    width: 38px;
    height: 38px;
  }
  #menu-main-menu > li > a,
  #menu-main-menu .sub-menu a {
    font-size: 14px;
  }
  body.woocommerce-cart table.shop_table.cart {
    border-spacing: 0;
  }
  body.woocommerce-cart table.shop_table.cart thead {
    display: none;
  }
  body.woocommerce-cart table.shop_table.cart tbody tr.cart_item {
    display: block;
    border-bottom: 2px solid #333;
  }
  body.woocommerce-cart table.shop_table.cart tbody tr.cart_item td {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px 14px !important;
    border-radius: 0 !important;
    text-align: left !important;
    border-right: 0 !important;
  }
  body.woocommerce-cart .product-thumbnail {
    width: 100%;
    min-width: 0;
    text-align: left;
    padding-bottom: 0 !important;
  }
  body.woocommerce-cart .product-thumbnail > a:first-child {
    display: inline-block;
  }
  body.woocommerce-cart .product-thumbnail > a:first-child img {
    width: 82px;
    height: 82px;
    margin: 0;
  }
  body.woocommerce-cart .product-thumbnail a.remove {
    opacity: 1;
    visibility: visible;
  }
  body.woocommerce-cart .product-name {
    width: 100%;
    min-width: 0;
  }
  body.woocommerce-cart .ev-review-product {
    align-items: flex-start;
    gap: 12px;
  }
  body.woocommerce-cart .ev-review-thumb {
    flex: 0 0 82px;
  }
  body.woocommerce-cart .ev-review-thumb img {
    width: 82px;
    height: 82px;
  }
  body.woocommerce-cart .ev-review-name a {
    font-size: 16px;
  }
  body.woocommerce-cart td.actions {
    display: block !important;
  }
  body.woocommerce-cart .coupon {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 12px;
  }
  body.woocommerce-cart .coupon .input-text,
  body.woocommerce-cart .coupon button,
  body.woocommerce-cart td.actions > button {
    width: 100%;
  }
  body.woocommerce-cart .shop_table_responsive td.product-price::before,
  body.woocommerce-cart .shop_table_responsive td.product-quantity::before,
  body.woocommerce-cart .shop_table_responsive td.product-subtotal::before {
    display: block !important;
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
  }
  body.woocommerce-cart .shop_table_responsive td.product-price::before {
    content: "Preț";
  }
  body.woocommerce-cart .shop_table_responsive td.product-quantity::before {
    content: "Cantitate";
  }
  body.woocommerce-cart .shop_table_responsive td.product-subtotal::before {
    content: "Subtotal";
  }
  body.woocommerce-cart .woocommerce td.product-name a {
    font-size: 12px;
  }
  body.woocommerce-cart .woocommerce td.actions {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }
  body.woocommerce-cart .woocommerce td.actions button {
    width: auto !important;
    margin: 0;
  }
  body.woocommerce-cart .product-name a.remove {
    margin: 0 15px 0 0;
  }
  form.woocommerce-checkout {
    gap: 18px;
    flex-direction: column;
  }
  form.woocommerce-checkout #order_review {
    width: 100% !important;
  }
  form.woocommerce-checkout .woocommerce-billing-fields,
  form.woocommerce-checkout .woocommerce-additional-fields,
  form.woocommerce-checkout .woocommerce-checkout-review-order {
    padding: 18px;
  }
  form.woocommerce-checkout p.form-row.form-row-first,
  form.woocommerce-checkout p.form-row.form-row-last {
    width: 100%;
  }
  form.woocommerce-checkout .ev-review-product {
    align-items: flex-start;
  }
  form.woocommerce-checkout .ev-review-thumb {
    flex: 0 0 56px;
  }
  form.woocommerce-checkout .ev-review-thumb img {
    width: 56px;
    height: 56px;
  }
  form.woocommerce-checkout .ev-review-name {
    font-size: 13px;
  }
  form.woocommerce-checkout
    table.woocommerce-checkout-review-order-table
    thead
    th {
    padding: 10px;
    font-size: 11px;
  }
  form.woocommerce-checkout
    table.woocommerce-checkout-review-order-table
    tbody
    td,
  form.woocommerce-checkout
    table.woocommerce-checkout-review-order-table
    tfoot
    th,
  form.woocommerce-checkout
    table.woocommerce-checkout-review-order-table
    tfoot
    td {
    padding: 12px 10px;
  }
  ,
  body.home .home-top-block-middle .n2-ss-slider-2 .n2-ow,
  body.home .home-block2 .n2-ss-slider-2 .n2-ow {
    max-height: 350px;
  }
  body.home
    .home-top-block-middle
    .wp-block-custom-product-card-ultimate
    .wpcu-content,
  body.home .home-block2 .wp-block-custom-product-card-ultimate .wpcu-content {
    padding: 0 10px;
  }
  body.home
    .wp-block-columns
    .wp-block-column:nth-child(2)
    .wp-block-custom-product-card-ultimate
    .wpcu-content
    .wpcu-btn {
    right: -15px;
  }
  body.home .home-services-block {
    justify-content: space-between;
    padding: 5px 15px;
  }
  body.home .home-services-block a {
    display: none;
  }
  body.home .home-services-block h3 {
    margin: 0;
  }
  body.home .home-services-block img {
    width: 60px;
  }
  body.home .home-block8 .category-col {
    width: calc(100% / 2 - 10px);
  }
  body.home .home-block8 .category-col:last-child {
    width: 100%;
    margin: 20px 0 0;
  }
  body.home .home-block10 .card-grid .card h4 {
    font-size: 16px;
  }
  body.home .page > .home-block3 > .wp-block-column:first-child {
    max-width: 100%;
  }
  .ddo-section-wrapper {
    border-radius: 10px !important;
  }
  .ddo-thumbnails {
    flex-wrap: wrap;
    gap: 5px;
  }
  #post-25 .wp-block-columns {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  #post-25 .wp-block-column:nth-child(3):last-child {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }
  #post-25 .wp-block-column {
    border-radius: 18px;
  }
  #post-25 h5.wp-block-heading {
    font-size: 1rem;
    line-height: 1.7;
  }
  #post-25 .wp-block-column > h3 {
    font-size: 1.3rem;
  }
  #post-25 .wp-block-column > p {
    font-size: 0.98rem;
  }
  #post-25 .wp-block-button__link {
    width: 100%;
  }
  #post-24 .solutii-green .panouri,
  #post-24 .proiecte-green .port-left,
  #post-24 .proiecte-green .port-right,
  #post-24 .programe-portofoliu .proj {
    width: 100%;
  }
  #post-24 .solutii-green .panouri,
  #post-24 .proiecte-green .port-left {
    margin-bottom: 15px;
  }
  #post-24 .solutii-green .panouri h4 {
    margin: 15px 0;
  }
  .woocommerce-page .woocommerce ul.products li.product {
    flex: 0 0 calc((100% - 10px) / 2);
  }
  .mini-cart-dropdown {
    width: 340px;
    right: -10px;
  }
  .mini-cart-dropdown .woocommerce-mini-cart {
    max-height: 340px;
  }
  .mini-cart-dropdown .woocommerce-mini-cart__buttons {
    grid-template-columns: 1fr;
  }
  .ev-cart-toast {
    top: auto;
    right: 12px;
    left: 12px;
    bottom: 18px;
  }
  .ev-cart-toast-inner {
    min-width: 0;
    max-width: none;
    width: 100%;
    padding: 13px 14px;
    border-radius: 12px;
  }
  .ev-cart-toast-text {
    font-size: 13px;
  }
}

@media (max-width: 500px) {
  .header-inner {
    padding: 10px 12px;
  }
  .header-inner .top-logo {
    width: 76px;
    flex-basis: 76px;
  }
  .header-inner .top-right-menu {
    gap: 4px;
    margin-right: 4px;
  }
  .header-inner .top-right-menu a {
    width: 34px;
    height: 34px;
  }
  .header-inner .top-right-menu .badge {
    min-width: 16px;
    height: 16px;
    font-size: 9px;
  }
  .mobile-menu-toggler {
    width: 34px;
    height: 34px;
  }
  .mobile-menu-toggler::before {
    top: 12px;
    box-shadow: 0 7px 0 #222;
  }
  .dm-cat-menu .dm-root-sub {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    min-width: 0;
    z-index: 999;
  }
  .dm-cat-menu li.has-children {
    position: relative;
  }
  .dm-cat-menu .dm-cat-sub {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: #f8f8f8;
  }
  .dm-cat-menu li.has-children:hover > .dm-cat-sub {
    display: block;
  }
  .dm-cat-menu li.has-children > a::after {
    content: "▾";
    float: right;
    opacity: 0.7;
  }
  .dm-cat-menu .dm-cat-sub a {
    padding-left: 24px;
  }
  .dm-cat-menu .dm-cat-sub .dm-cat-sub a {
    padding-left: 36px;
  }
  body.home
    .wp-block-columns
    .wp-block-column:nth-child(2)
    .wp-block-custom-product-card-ultimate
    .wpcu-content
    .wpcu-btn {
    right: 0;
  }
  body.home .home-top-block-middle .wp-block-columns,
  body.home .home-block2 .wp-block-columns {
    gap: 15px;
  }
  body.home .home-top-block-right {
    flex-direction: column !important;
  }
  body.home .home-top-block-right .wp-block-custom-product-card-ultimate {
    width: 100%;
  }
  body.home
    .home-top-block-right
    .wp-block-custom-product-card-ultimate:last-child {
    margin: 15px 0 0;
  }
  .ddo-section-wrapper {
    padding: 15px;
  }
  body.home .home-block4 {
    display: none;
  }
  body.woocommerce-checkout .col {
    padding: 0;
  }
  .page .entry-title::after {
    width: 90%;
  }
}

@media (max-width: 450px) {
  .home-brand-list ul li img {
    width: 60px;
  }
  .brands-head-list h3,
  .top-categories-head-list h3 {
    font-size: 14px;
  }
  .daily-offer-side-images .side-image-wrapper {
    height: 65px;
  }
  body.home .home-block8 .category-col {
    width: 100%;
  }
  body.home .home-block10 .card-grid .card {
    width: 100%;
    margin: 0 0 10px 0 !important;
  }
  body.home .home-block10 .card-grid .card h4 {
    font-size: 14px;
    text-align: center;
  }
  body.home .home-block10 .card-grid .card .card-content {
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
  }
  .woocommerce-page .woocommerce ul.products li.product {
    flex: 0 0 100%;
  }
}
.SfQLQb-dIxMhd-bN97Pc-b3rLgd.SfQLQb-QClCJf-giiMnc .i4ewOd-pzNkMb-tJHJj {
  display: none !important;
}