/* =========================================================
   REFACTORED CSS
   - duplicate selectors merged
   - duplicate media queries grouped
   - media queries moved to the end
   ========================================================= */

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

html,
body {
  height: 100%;
}

body #wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #e2e4eb;
}

#footer {
  margin-top: auto;
  background-color: #fff !important;
  color: #666666;
  padding-top: 3vh;
}

.div-icon {
  text-align: center;
  margin: 0 !important;
}

.div-icon img {
  width: 120px;
}

.categories-section {
  padding: 50px 20px;
  max-width: 1320px;
  margin: auto;
  text-align: center;
}

.categories-title {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 600;
}

.product-template-default .products {
  display: flex;
  flex-wrap: wrap;
}

.product-template-default .products .product {
  display: flex;
  flex-direction: column;
}

.contact-info-row {
  margin-bottom: 24px;
}

.info-value {
  font-weight: 700;
  color: rgb(111 215 113) !important;
  font-size: 1.5em;
}

.info-value a {
  color: rgb(111 215 113) !important;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

body.page-template-page-full #main {
  padding: 0;
}

#menu-linkuri-utile,
#menu-termeni-si-politici {
  list-style: none;
  padding: 0;
}

.btn-more {
  padding: 10px;
  margin-top: 30px;
  width: 100%;
  text-align: center;
}

.btn-more a,
.wp-block-button .wp-block-button__link {
  background-color: #7dae4d;
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
}

.programe {
  max-width: 100%;
  background-color: #46a14614;
}

.wp-block-group__inner-container,
.services-section {
  background: #fff;
  margin: 20px auto;
  border-radius: 12px;
}

.services-section {
  padding: 20px;
}

.services-section .carousel-title {
  bottom: 25px;
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 140px;
  padding-bottom: 20px;
  text-decoration: none;
  color: #fff;
  border-radius: 14px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  transition: opacity 0.25s ease;
}

.category-card span {
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
  font-weight: 600;
}

.category-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.category-card:hover::before {
  opacity: 0.6;
}

.category-card:hover .icon-circle {
  transform: scale(1.15);
  background: #ffffffdd;
}

#energy-calculator {
  max-width: 640px;
  margin: 60px auto;
  padding: 30px 35px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
}

#energy-calculator label {
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

#energy-calculator select,
#energy-calculator input[type="checkbox"] {
  margin-top: 6px;
}

#energy-calculator select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fafafa;
  font-size: 15px;
  transition: 0.3s;
}

#energy-calculator select:focus {
  border-color: #333;
  background: #fff;
  outline: none;
}

#energy-calculator input[type="checkbox"] {
  transform: scale(1.2);
  margin-right: 8px;
}

#energy-calculator button {
  width: 100%;
  background: #222;
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

#energy-calculator button:hover {
  background: #444;
}

#result {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  padding: 14px;
  background: #f2f2f2;
  border-radius: 8px;
  border-left: 4px solid #333;
}

#energy-calculator form > * {
  margin-bottom: 18px;
}

.hero {
  height: 380px;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-size: 50px;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1.4s ease-out forwards;
  opacity: 0;
}

.section-card {
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 1s ease-out forwards;
}

.section-card h2 {
  font-size: 28px;
  margin-bottom: 20px;
  border-left: 6px solid var(--primary);
  padding-left: 12px;
  color: var(--secondary);
}

.about-wrapper {
  display: flex;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
}

.about-wrapper img {
  width: 350px;
  border-radius: 12px;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.1);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.team-card {
  text-align: center;
  background: #fafafa;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

.team-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 4px solid var(--primary);
}

.team-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.team-card p {
  font-size: 14px;
  color: #555;
}

.values-list {
  margin-top: 20px;
  padding-left: 20px;
  line-height: 1.7;
  font-size: 17px;
}

.values-list li strong {
  color: var(--secondary);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease-out;
  padding: 40px !important;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.contact-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}

.contact-card label {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
  display: block;
  color: #0a0a0a;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  padding: 14px 16px;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  transition: border 0.2s;
}

.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus {
  border-color: #42b443;
  outline: none;
}

.checkbox-row {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-row label {
  margin: 0;
  font-weight: 500;
  color: #333;
}

.submit-btn {
  width: 100%;
  margin-top: 30px;
  padding: 16px;
  font-size: 1.1rem;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition:
    background 0.2s,
    transform 0.2s;
}

.submit-btn:hover {
  background: #000;
  transform: translateY(-2px);
}

.form-group {
  margin-bottom: 24px;
}

.contact-two-column {
  display: flex;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  margin-top: 40px;
  align-items: start;
}

.contact-left,
.contact-right {
  width: 100%;
}

.contact-info-card {
  background: #ffffff;
  padding: 32px 36px;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.values-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #0e2a47;
  position: relative;
}

.values-title::after,
.section-card h2:after {
  content: "";
  width: 120px;
  height: 3px;
  background: #42b443;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.cine:after {
  position: absolute;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.added_to_cart {
  background: #000;
}

.value-card {
  background: #ffffff26;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  text-align: left;
  border: 1px solid #fff;
}

.cere-oferta {
  text-align: center;
}

.cere-oferta a {
  width: 360px;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}

.add_to_cart_button {
  background-color: #1aba1a !important;
  color: #fff !important;
  font-weight: 500 !important;
  padding: 8px 15px;
  font-size: 14px;
  border-radius: 4px;
  transition: background 0.3s ease;
  width: 100%;
  display: flex !important;
  justify-content: center !important;
}

.add_to_cart_button:hover {
  background-color: #7cae4d !important;
}

.value-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
}

.page-id-23 #main .row #post-23 {
  padding: 0;
}

.team {
  padding: 30px 0;
  background: #f0f0f1;
  border-radius: 12px;
}

.port-flex,
.solutii-green {
  display: flex;
  flex-wrap: wrap;
}

.port-flex ul {
  list-style: none;
  padding: 0;
}

.port-left,
.port-right,
.sol-left,
.sol-right {
  background: #fafafa;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  width: 48%;
  margin-right: 2%;
}

.port-left,
.port-right {
  border: 1px solid #198754;
}

h4 {
  font-weight: 700;
}

.page-id-24 #main h2 {
  font-weight: 800 !important;
  font-size: 28px !important;
}

.programe-portofoliu {
  display: flex;
  flex-wrap: wrap;
  padding-top: 30px;
}

.proj {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  text-align: left;
  width: 48%;
  margin-right: 2%;
  margin-bottom: 2%;
}

.solutii-green {
  padding-bottom: 40px;
}

.solutii-green img {
  width: 100%;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2em;
  margin: 2em 0;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

.values {
  background-image: url(/wp-content/uploads/2026/01/values-bkgr-scaled.jpg);
  background-size: cover;
  background-position: bottom;
  position: sticky;
  padding: 40px !important;
}

#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

#lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

.gallery-item {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: 50%;
}

.gallery-item a,
.gallery-item a:hover,
.gallery-item a:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: none;
  display: inline-block;
  max-width: 100%;
}

.gallery-item a img {
  display: block;
  -webkit-transition: -webkit-filter 0.2s ease-in;
  transition:
    filter 0.2s ease-in,
    -webkit-filter 0.2s ease-in;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.gallery-item a:hover img,
.gallery-item a:focus img {
  -webkit-filter: opacity(60%);
  filter: opacity(60%);
}

.gallery-caption {
  display: block;
  text-align: left;
  padding: 0 10px 0 0;
  margin-bottom: 0;
}

.gallery-columns-1 .gallery-item {
  max-width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
  display: none;
}

.bypostauthor {
  font-weight: bold;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.page .entry-title {
  position: relative;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  margin: 30px auto;
}

.page .entry-title::after {
  content: "";
  display: block;
  height: 2px;
  width: 120%;
  background-color: #6fd771;
  margin: 0 auto;
  margin-top: 0.5rem;
}

.page-id-8825 .entry-title {
  display: none;
}

.bg-dark {
  background-color: #efefef;
}

.carousel-title {
  text-align: left;
  font-size: 1.5rem;
  text-transform: uppercase;
  position: relative;
  bottom: -25px;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 10;
  color: #212529;
  margin: 10px;
  padding: 4px;
}

#menu-main-menu li {
  padding: 0 1.5em;
}

#footer a {
  color: #92a0ad;
}

.icons-div h2 {
  padding-top: 0;
  font-size: 1.2em;
  color: #7cae4d;
  text-transform: uppercase;
}

.home-box {
  height: 45vh;
  width: 92%;
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-size 2s ease;
}

.home-box:hover {
  background-size: auto 120%;
}

.home-box-icon {
  width: 15%;
  float: left;
  height: 100%;
  margin-right: 10%;
}

.home-box-icon img {
  width: 100%;
  height: auto;
}

.home-box-text {
  position: relative;
  top: 70%;
  left: 80%;
  transform: translate(-69%, -96%);
  width: 90%;
  height: 50%;
  background: #46a146;
  color: #fff;
  padding: 20px;
  border-radius: 0 20px;
  filter: drop-shadow(-11px 3px 8px #ada9a9);
}

.home-box-text a {
  right: 10%;
  position: absolute;
  color: #fff;
  font-style: italic;
}

.home-box-text a:hover {
  color: #000;
  text-decoration: underline;
}

.owl-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.owl-dots .owl-dot {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.owl-dots .owl-dot span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d1d5db;
  transition: all 0.25s ease;
}

.owl-dots .owl-dot.active span {
  width: 22px;
  background: #111827;
}

.owl-dots .owl-dot:focus-visible span {
  outline: 2px solid #111827;
  outline-offset: 2px;
}

#main {
  background-color: #e2e4eb;
}

.home #main h1.entry-title {
  display: none;
}

.woocommerce-page .entry-title {
  margin-top: 0;
}

.woocommerce-page .woocommerce ul.products {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.woocommerce-page .woocommerce ul.products:before {
  display: none;
}

.woocommerce-page .woocommerce ul.products li.product {
  flex: 0 0 calc((100% - 15px) / 4);
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding: 10px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  margin: 0;
}

.woocommerce-page .woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: none;
  display: flex;
  flex-direction: column;
}

.woocommerce-page
  .woocommerce
  ul.products
  li.product
  a.woocommerce-loop-product__link {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.woocommerce-page .woocommerce ul.products li.product .price {
  margin-top: auto;
  font-size: 16px;
  font-weight: bold;
  color: #111;
  margin-bottom: 10px;
  text-decoration: none;
}

.woocommerce-page .woocommerce ul.products li.product .price del,
.woocommerce-page .woocommerce ul.products li.product .price ins {
  text-decoration: none;
}

.woocommerce-page .woocommerce ul.products li.product .price del bdi {
  font-size: 14px;
  text-decoration: line-through;
}

.woocommerce-page
  .woocommerce
  ul.products
  li.product
  .woocommerce-loop-product__title {
  font-size: 0.75em;
  margin: 8px 0;
  color: #454545;
  font-weight: normal;
}

.woocommerce-page .woocommerce ul.products li.product .add_to_cart_button {
  font-size: 14px;
}

.woocommerce-page .woocommerce ul.products li.product img {
  max-width: 90%;
  margin: auto;
}

.woocommerce-page #widget-area.widget-area .widget.widget-woof {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 14px 14px 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.woocommerce-page #widget-area .widget-title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #111827;
  padding-bottom: 10px;
  border-bottom: 1px solid #eef2f7;
}

.woocommerce-page .woof .woof_container {
  border: 1px solid #eef2f7;
  border-radius: 12px;
  padding: 0 10px;
  margin: 10px 0;
  background: radial-gradient(circle at 0 0, #f7fbff 0, #ffffff 55%);
}

.woocommerce-page .woof .woof_text_search_container.woof_container {
  padding: 0;
}

.woocommerce-page .woof .woof_container h4 {
  margin: 0 0 8px;
  padding: 5px 0 0 5px;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.woocommerce-page .woof .woof_front_toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #111827;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
}

.woocommerce-page .woof .woof_front_toggle:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.woocommerce-page .woof .woof_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.woocommerce-page .woof .woof_list > li {
  margin: 0;
}

.woocommerce-page .woof .woof_list_radio li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border: 1px solid #eef2f7;
  border-radius: 10px;
  background: #fff;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.woocommerce-page .woof .woof_list_radio li:hover {
  border-color: #dbe7ff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.woocommerce-page .woof .woof_radio_label {
  margin: 0 !important;
  cursor: pointer;
  font-size: 13px;
  color: #111827;
  flex: 1;
  line-height: 1.2;
}

.woocommerce-page .woof .iradio_square-blue {
  width: 18px !important;
  height: 18px !important;
  border-radius: 999px;
  border: 2px solid #cbd5e1 !important;
  background: #fff !important;
  box-shadow: none !important;
}

.woocommerce-page .woof .iradio_square-blue.checked {
  border-color: #1aba1a !important;
  background: #1aba1a !important;
}

.woocommerce-page .woof .iradio_square-blue.checked:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  margin: 3px;
}

.woocommerce-page .woof .woof_list_radio li:has(.iradio_square-blue.checked) {
  border-color: #c7d2fe;
  background: #f5f7ff;
}

.woocommerce-page .woof .woof_radio_term_reset img {
  opacity: 0.7;
}

.woocommerce-page .woof .woof_radio_term_reset:hover img {
  opacity: 1;
}

.woocommerce-page .woof .woof_childs_list_opener {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: #fff;
  text-decoration: none;
}

.woocommerce-page .woof .woof_childs_list_opener:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.woocommerce-page .woof ul.woof_childs_list {
  margin: 6px 0 0;
  padding: 6px 0 0;
  border: 0;
}

.woocommerce-page .woof ul.woof_childs_list > li {
  margin: 6px 0 0;
  padding-left: 22px;
  position: relative;
}

.woocommerce-page .woof .woof_list_radio li.woof_childs_list_li {
  flex-wrap: wrap;
  align-items: flex-start;
}

.woocommerce-page
  .woof
  .woof_list_radio
  li.woof_childs_list_li
  > ul.woof_childs_list {
  flex: 0 0 100%;
  width: 100%;
  display: block;
  margin: 6px 0 0;
  padding: 6px 0 0;
}

.woocommerce-page
  .woof
  .woof_list_radio
  li.woof_childs_list_li
  > ul.woof_childs_list
  > li {
  padding-left: 22px;
}

.woocommerce-page .woof .woof_text_search_container .woof_container_inner {
  position: relative;
}

.woocommerce-page .woof input.woof_husky_txt-input {
  width: 100%;
  height: 40px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 0 5px 0 10px;
  font-size: 13px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.woocommerce-page .woof input.woof_husky_txt-input:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 4px rgba(147, 197, 253, 0.35);
}

.woocommerce-page .woof .woof_text_search_go {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  opacity: 0.55;
}

.woocommerce-page .woof .woof_text_search_go:before {
  content: "⌕";
  font-size: 18px;
  line-height: 18px;
  color: #111827;
}

.woocommerce-page .woof .woof_price3_search_container {
  padding-top: 10px;
}

.woocommerce-page .woof .irs {
  margin-top: 8px;
}

.woocommerce-page .woof .woof_radio_term_reset {
  display: none !important;
}

.woocommerce-page .woof .irs--round .irs-line {
  height: 6px;
  background: #e5e7eb;
  border-radius: 999px;
}

.woocommerce-page .woof .irs--round .irs-bar {
  height: 6px;
  background: linear-gradient(90deg, #7cae4d, #1aba1a);
  border-radius: 999px;
}

.woocommerce-page .woof .irs--round .irs-handle {
  top: 18px;
  width: 18px;
  height: 18px;
  background: #1aba1a;
  border: 3px solid #fff;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(20, 151, 118, 0.35);
  cursor: pointer;
}

.woocommerce-page .woof .irs--round .irs-handle i {
  display: none;
}

.woocommerce-page .woof .irs--round .irs-handle:hover {
  box-shadow: 0 0 0 6px rgba(20, 151, 118, 0.25);
}

.woocommerce-page .woof .irs--round .irs-from,
.woocommerce-page .woof .irs--round .irs-to,
.woocommerce-page .woof .irs--round .irs-single {
  background: #1aba1a;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 8px;
}

.woocommerce-page .woof .irs--round .irs-from:before,
.woocommerce-page .woof .irs--round .irs-to:before,
.woocommerce-page .woof .irs--round .irs-single:before {
  border-top-color: #1aba1a;
}

.woocommerce-page .woof .irs--round .irs-grid-text {
  font-size: 10px;
  color: #6b7280;
}

.woocommerce-page .woof .irs--round .irs-grid-pol {
  background: #d1d5db;
}

.woocommerce-page .woof .irs--round .irs-grid-pol.small {
  background: #e5e7eb;
}

.woocommerce-page .woof .irs--round .irs-line:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(20, 151, 118, 0.25);
}

.woocommerce-page .woof_products_top_panel {
  margin: 0 0 12px;
  padding: 10px;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  background: radial-gradient(circle at 0 0, #f7fbff 0, #ffffff 55%);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.woocommerce-page .woof_products_top_panel_ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.woocommerce-page .woof_reset_button_2 {
  appearance: none;
  border: 1px solid rgba(20, 151, 118, 0.25);
  background: linear-gradient(90deg, #7cae4d, #1aba1a);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 0 10px;
  border-radius: 10px;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.woocommerce-page .woof_reset_button_2:hover {
  box-shadow: 0 8px 18px rgba(20, 151, 118, 0.2);
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.woocommerce-page .woof_products_top_panel_ul > li > a,
.woocommerce-page .woof_products_top_panel_ul > li ul > li > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #111827;
  font-size: 12px;
  font-weight: 600;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.woocommerce-page .woof_products_top_panel_ul > li > a:hover,
.woocommerce-page .woof_products_top_panel_ul > li ul > li > a:hover {
  border-color: rgba(20, 151, 118, 0.35);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.woocommerce-page .woof_remove_ppi {
  position: relative;
  padding-right: 25px;
  background: none;
}

.woocommerce-page .woof_remove_ppi:after {
  content: "×";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 18px;
  color: #1aba1a;
  background: rgba(20, 151, 118, 0.1);
  border: 1px solid rgba(20, 151, 118, 0.18);
}

.woocommerce-page .woof_products_top_panel_ul > li > ul[data-container] {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.woocommerce-page
  .woof_products_top_panel_ul
  > li
  > ul[data-container]
  > li:first-child {
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px dashed #d1d5db;
  background: rgba(124, 174, 77, 0.1);
}

.woocommerce-page .woocommerce-result-count,
.woocommerce-page .woocommerce-ordering {
  margin: 0;
}

.woocommerce-page .woocommerce-result-count {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  padding: 6px 10px;
  margin: 0 0 15px 0;
  border-radius: 999px;
  background: rgba(124, 174, 77, 0.12);
  border: 1px solid rgba(20, 151, 118, 0.25);
}

.woocommerce-page .woocommerce-result-count:before {
  content: "✓";
  margin-right: 6px;
  font-weight: 700;
  color: #1aba1a;
}

.woocommerce-page .woocommerce-ordering {
  position: relative;
  float: right;
}

.woocommerce-page .woocommerce-ordering select.orderby {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 12px;
  font-weight: 600;
  color: #111827;
  padding: 7px 34px 7px 12px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.woocommerce-page .woocommerce-ordering::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #1aba1a;
  pointer-events: none;
}

.woocommerce-page .woocommerce-ordering select.orderby:hover {
  border-color: rgba(20, 151, 118, 0.35);
}

.woocommerce-page .woocommerce-ordering select.orderby:focus {
  outline: none;
  border-color: #1aba1a;
  box-shadow: 0 0 0 4px rgba(20, 151, 118, 0.25);
}

.woocommerce-page .woocommerce-notices-wrapper + .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count {
  float: left;
}

.woocommerce-page .woocommerce-ordering:after {
  content: "";
  display: block;
  clear: both;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: none;
}

.woocommerce-page nav.woocommerce-pagination {
  margin: 22px 0 10px;
  display: flex;
  justify-content: center;
}

.woocommerce-page .woocommerce-pagination .page-numbers {
  margin: 0;
  padding: 8px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.woocommerce-page .woocommerce-pagination .page-numbers a,
.woocommerce-page .woocommerce-pagination .page-numbers span {
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #374151;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease;
}

.woocommerce-page .woocommerce-pagination .page-numbers a:hover {
  border-color: rgba(20, 151, 118, 0.35);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.woocommerce-page .woocommerce-pagination .page-numbers .current {
  background: linear-gradient(135deg, #7cae4d, #1aba1a);
  color: #fff;
  border-color: transparent;
  cursor: default;
}

.woocommerce-page .woocommerce-pagination .page-numbers .dots {
  border: none;
  background: transparent;
  color: #9ca3af;
  cursor: default;
}

.woocommerce-page .woocommerce-pagination .page-numbers .next {
  font-size: 16px;
  font-weight: 700;
  padding: 0 14px;
}

.woocommerce-page .woocommerce-pagination .page-numbers a:focus {
  outline: none;
  box-shadow: none;
}

.woocommerce ul.products li.product .onsale {
  position: absolute;
  top: 20px;
  left: 20px;
  right: initial;
  background: #d42e2e;
  color: #fff;
  padding: 0 8px;
  font-size: 12px;
  border-radius: 5px;
  text-transform: uppercase;
}

.mobile-filters-toggle {
  display: none;
  position: absolute;
  left: 5px;
  top: 25px;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(20, 151, 118, 0.35);
  background: linear-gradient(90deg, #7cae4d, #1aba1a);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    filter 0.2s ease;
}

.mobile-filters-toggle .mft-icon {
  width: 22px;
  height: 18px;
  position: relative;
  display: inline-block;
}

.mobile-filters-toggle .mft-icon:before,
.mobile-filters-toggle .mft-icon:after,
.mobile-filters-toggle .mft-icon span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 999px;
  background: #fff;
}

.mobile-filters-toggle .mft-icon:before {
  top: 0;
}

.mobile-filters-toggle .mft-icon span {
  top: 50%;
  transform: translateY(-50%);
}

.mobile-filters-toggle .mft-icon:after {
  bottom: 0;
}

.mobile-filters-toggle[aria-expanded="true"] {
  background: #fff;
  color: #1aba1a;
}

.mobile-filters-toggle[aria-expanded="true"] .mft-icon:before,
.mobile-filters-toggle[aria-expanded="true"] .mft-icon span,
.mobile-filters-toggle[aria-expanded="true"] .mft-icon:after {
  background: #1aba1a;
}

.mobile-filters-toggle .mft-sliders {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 10px;
  height: 2px;
  box-shadow:
    -3px 4px 0 0,
    3px -4px 0 0;
}

.mobile-filters-toggle .mft-sliders::after,
.mobile-filters-toggle .mft-sliders::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid;
  border-radius: 100%;
}

.mobile-filters-toggle .mft-sliders::before {
  top: -7px;
  left: -4px;
}

.mobile-filters-toggle .mft-sliders::after {
  bottom: -7px;
  right: -4px;
}

.woocommerce a.added_to_cart {
  display: none;
}

.woocommerce .single-product .woocommerce div.product,
.woocommerce .single-product div.product {
  display: grid;
  grid-template-columns: minmax(320px, 46%) 1fr;
  grid-template-areas: "gallery summary" "gallery tabs";
  column-gap: 50px;
  align-items: start;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.woocommerce .single-product div.product .woocommerce-product-gallery {
  grid-area: gallery;
  margin: 0;
}

.woocommerce .single-product div.product .summary {
  grid-area: summary;
  width: 100%;
  margin: 0;
}

.woocommerce .single-product div.product .woocommerce-tabs {
  grid-area: tabs;
  margin: 0;
}

.woocommerce .single-product .woocommerce-product-gallery__wrapper {
  border: 1px solid #eef1f4;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.woocommerce .single-product .woocommerce-product-gallery__image img {
  border-radius: 12px;
}

.woocommerce .single-product .woocommerce-product-gallery__trigger {
  border-radius: 10px;
  border: 1px solid #eef1f4;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.woocommerce .single-product .summary .product_title {
  margin: 0 0 25px 0;
  font-size: 18px;
  line-height: 26px;
  color: #111827;
}

.woocommerce .single-product .summary .price {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 800;
  color: #1aba1a;
}

.woocommerce .single-product .summary .price del {
  color: #9ca3af;
  font-weight: 700;
  margin-right: 8px;
  text-decoration: none;
}

.woocommerce .single-product .summary .price del bdi {
  font-size: 14px;
  text-decoration: line-through;
}

.woocommerce .single-product .summary .price ins {
  color: #1aba1a;
  text-decoration: none;
}

.woocommerce .single-product .summary form.cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 15px 0;
}

.woocommerce .single-product .summary .quantity {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 6px 10px;
  background: #fff;
}

.woocommerce .single-product .summary .quantity input.qty {
  border: 0;
  outline: none;
  background: transparent;
  text-align: center;
  font-weight: 800;
  color: #111827;
}

.woocommerce
  .single-product
  div.product
  form.cart
  .single_add_to_cart_button.button.alt {
  background: #1aba1a;
  border: 1px solid #1aba1a;
  color: #fff;
  border-radius: 10px;
  padding: 10px 15px;
  margin: 0 0 0 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition:
    transform 0.15s ease,
    background 0.15s ease;
}

.woocommerce
  .single-product
  div.product
  form.cart
  .single_add_to_cart_button.button.alt:hover {
  background: #7cae4d;
  border-color: #7cae4d;
  transform: translateY(-1px);
}

.woocommerce .single-product .product_meta {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #eef1f4;
  font-size: 13px;
  font-weight: 900;
  color: #111827;
  display: flex;
  flex-direction: column;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image a {
  width: 76%;
  margin: 0 auto;
}

.woocommerce .single-product .product_meta .sku {
  font-weight: 600;
  color: #666666;
}

.woocommerce .single-product .product_meta a {
  color: #666666;
  font-weight: 600;
  text-decoration: none;
}

.product-info {
  display: contents;
}

.transport-free {
  background-color: rgba(26, 186, 26, 0.15);
  color: #1aba1a;
  width: 200px;
  text-align: center;
  padding: 5px;
  border-radius: 6px;
}

.stock-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  margin: 15px 0 0;
}

.stock-status::before {
  content: "✔";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  background: #1aba1a;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
}

.woocommerce .single-product .product_meta a:hover {
  color: #7cae4d;
  text-decoration: underline;
}

.woocommerce .single-product .woocommerce-tabs {
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.woocommerce .single-product .woocommerce-tabs ul.wc-tabs {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 10px;
  list-style: none;
}

.woocommerce .single-product .woocommerce-tabs ul.wc-tabs li {
  margin: 0;
  padding: 0;
}

.woocommerce .single-product .woocommerce-tabs .woocommerce-Tabs-panel {
  margin: 0;
  padding: 14px;
}

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

.woocommerce .single-product table.shop_attributes {
  width: 100%;
  border: 0;
  margin: 0;
  border-collapse: collapse;
}

.woocommerce .single-product table.shop_attributes th,
.woocommerce .single-product table.shop_attributes td {
  border: 0;
  padding: 10px 0;
  vertical-align: top;
}

.woocommerce .single-product table.shop_attributes tr + tr th,
.woocommerce .single-product table.shop_attributes tr + tr td {
  border-top: 1px solid #eef1f4;
}

.woocommerce .single-product table.shop_attributes th {
  width: 38%;
  color: #111827;
  font-size: 14px;
  font-weight: 500;
}

.woocommerce .single-product table.shop_attributes td {
  color: #374151;
}

.woocommerce .single-product table.shop_attributes p {
  margin: 0;
  padding: 0;
}

.woocommerce .single-product table.shop_attributes a {
  color: #1aba1a;
  font-weight: 500;
  text-decoration: none;
}

.woocommerce .single-product table.shop_attributes a:hover {
  color: #7cae4d;
  text-decoration: underline;
}

.woocommerce .single-product div.product > .up-sells,
.woocommerce .single-product div.product > .upsells,
.woocommerce .single-product div.product > .related {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 10px;
  padding-top: 14px;
}

.woocommerce div.product div.images.woocommerce-product-gallery {
  width: 100%;
}

.woocommerce .woocommerce .single-product span.onsale {
  position: absolute;
  top: 30px;
  left: 30px;
  right: initial;
  background: #d42e2e;
  color: #fff;
  padding: 15px 8px;
  font-size: 12px;
  border-radius: 5px;
  text-transform: uppercase;
}

.woocommerce .single-product div.product > .up-sells > h2,
.woocommerce .single-product div.product > .upsells > h2,
.woocommerce .single-product div.product > .related > h2 {
  width: 100%;
  margin: 25px 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #111827;
  padding-bottom: 10px;
  border-bottom: 1px solid #eef2f7;
}

.single-product .entry-header {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  margin: 0 0 10px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-left: 0;
}

.woocommerce-checkout .wc-block-components-sidebar-layout {
  justify-content: space-between;
}

.woocommerce-checkout
  .wc-block-components-sidebar-layout
  .wc-block-components-main {
  width: calc(65% - 10px);
}

.woocommerce-checkout .wc-block-components-sidebar {
  width: calc(35% - 10px);
  padding: 14px;
}

.woocommerce-checkout .wc-block-components-main,
.woocommerce-checkout .wc-block-components-sidebar {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 8px 26px rgba(17, 24, 39, 0.06);
  overflow: hidden;
}

.woocommerce-checkout .wc-block-components-main {
  padding: 14px 14px 18px;
}

.woocommerce-checkout .wc-block-components-checkout-step {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 12px;
  background: radial-gradient(
    circle at 0 0,
    rgba(20, 151, 118, 0.1) 0,
    #ffffff 45%
  );
}

.woocommerce-checkout .wc-block-components-checkout-step__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #0f172a;
  margin: 0;
}

.woocommerce-checkout .wc-block-components-text-input input {
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  padding: 12px 12px !important;
  font-size: 14px !important;
  background: #fff !important;
  box-shadow: none !important;
}

.woocommerce-checkout .wc-block-components-text-input label {
  font-size: 12px;
  color: #6b7280;
}

.woocommerce-checkout .wc-block-components-text-input input:focus {
  outline: none !important;
  border-color: #1aba1a !important;
  box-shadow: 0 0 0 4px rgba(20, 151, 118, 0.15) !important;
}

.woocommerce-checkout .wc-blocks-components-select__select {
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  padding: 12px 40px 12px 12px !important;
  background: #fff !important;
  font-size: 14px !important;
  appearance: none;
}

.woocommerce-checkout .wc-blocks-components-select__container {
  position: relative;
}

.woocommerce-checkout .wc-blocks-components-select__expand {
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  pointer-events: none;
  opacity: 0.7;
}

.woocommerce-checkout .wc-blocks-components-select__select:focus {
  border-color: #1aba1a !important;
  box-shadow: 0 0 0 4px rgba(20, 151, 118, 0.15) !important;
  outline: none !important;
}

.woocommerce-checkout .wc-block-components-address-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  padding: 12px;
}

.woocommerce-checkout .wc-block-components-address-card__edit {
  color: #1aba1a;
  font-weight: 700;
}

.woocommerce-checkout .wc-block-components-radio-control-accordion-option {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.woocommerce-checkout .wc-block-components-radio-control__option {
  padding: 12px;
}

.woocommerce-checkout .wc-block-components-radio-control__option-checked {
  background: rgba(20, 151, 118, 0.08);
  border-left: 4px solid #1aba1a;
}

.woocommerce-checkout .wc-block-components-radio-control__label {
  font-weight: 700;
  color: #0f172a;
}

.woocommerce-checkout .wc-block-components-radio-control-accordion-content {
  padding: 0 12px 12px;
  color: #374151;
}

.woocommerce-checkout
  .wc-block-components-checkbox__input:focus
  + .wc-block-components-checkbox__mark {
  outline: none;
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}

.woocommerce-checkout .wc-block-checkout__terms {
  border-top: 1px solid #e5e7eb;
  padding-top: 10px;
  color: #6b7280;
  font-size: 13px;
}

.woocommerce-checkout .wc-block-components-checkout-place-order-button {
  background: #1aba1a !important;
  border: 0 !important;
  color: #fff !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(20, 151, 118, 0.25);
}

.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
  filter: brightness(0.95);
}

.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button {
  color: #1aba1a;
  font-weight: 700;
  text-decoration: none;
}

.woocommerce-checkout
  .wc-block-components-checkout-return-to-cart-button:hover {
  text-decoration: underline;
}

.woocommerce-checkout .wc-block-components-checkout-order-summary__title {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px;
  background: radial-gradient(
    circle at 0 0,
    rgba(124, 174, 77, 0.14) 0,
    #ffffff 50%
  );
  margin: 0 0 15px 0;
}

.woocommerce-checkout .wc-block-components-checkout-order-summary__title-text {
  font-weight: 800;
  color: #0f172a;
}

.woocommerce-checkout .wc-block-components-checkout-order-summary__title-price {
  font-weight: 900;
  color: #1aba1a;
}

.woocommerce-checkout .wc-block-components-order-summary {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  padding: 0 5px;
}

.woocommerce-checkout .wc-block-components-order-summary-item {
  padding: 12px;
  border-top: 1px solid #e5e7eb;
}

.woocommerce-checkout .wc-block-components-order-summary-item:first-child {
  border-top: 0;
}

.woocommerce-checkout .wc-block-components-order-summary-item__image img {
  border-radius: 10px;
}

.woocommerce-checkout .wc-block-components-order-summary-item__quantity {
  background: #1aba1a;
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
}

.woocommerce-checkout .wc-block-components-product-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px;
}

.woocommerce-checkout .wc-block-components-product-price__regular {
  opacity: 0.55;
}

.woocommerce-checkout .wc-block-components-product-price__value.is-discounted {
  color: #1aba1a;
  font-weight: 900;
}

.woocommerce-checkout .wc-block-components-totals-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff;
  margin-top: 10px;
}

.woocommerce-checkout .wc-block-components-totals-footer-item {
  background: rgba(20, 151, 118, 0.08);
  border-color: rgba(20, 151, 118, 0.25);
}

.woocommerce-checkout .wc-block-components-totals-item__label {
  font-weight: 800;
  color: #111827;
}

.woocommerce-checkout .wc-block-components-totals-item__value {
  font-weight: 900;
  color: #0f172a;
}

.woocommerce-checkout .wc-block-components-notice-banner,
.woocommerce-checkout .wc-block-components-notices {
  border-radius: 12px;
}

.wc-block-components-order-summary
  .wc-block-components-order-summary-item__description
  .wc-block-components-product-metadata,
.wc-block-components-order-summary
  .wc-block-components-order-summary-item__description
  p {
  display: none;
}

.woocommerce-checkout .wc-block-components-order-summary__content {
  display: block;
  max-height: 360px;
  overflow-y: auto;
  padding-right: 6px;
}

.woocommerce-checkout
  .wc-block-components-order-summary__content::-webkit-scrollbar {
  width: 6px;
}

.woocommerce-checkout
  .wc-block-components-order-summary__content::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 6px;
}

.woocommerce-checkout
  .wc-block-components-order-summary__content::-webkit-scrollbar-track {
  background: transparent;
}

.wp-block-woocommerce-checkout-order-summary-block {
  border: none;
}

.woocommerce-cart .wc-block-cart__main {
  min-width: 0;
  padding-right: 50px;
}

.woocommerce-cart .wc-block-cart__sidebar {
  border: 1px solid #e5e7eb;
  background: radial-gradient(circle at 0 0, #f1f5ff 0%, #ffffff 55%) #fff;
  border-radius: 14px;
  padding: 14px;
  margin: 12px 0 0;
}

.wc-block-cart-items .screen-reader-text {
  display: none;
}

.woocommerce-cart table.wc-block-cart-items {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
}

.woocommerce-cart .wc-block-cart-items__header {
  display: none;
}

.woocommerce-cart .wc-block-cart-items__row {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.02);
  margin: 0 0 10px 0;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 160px;
  gap: 12px;
  align-items: start;
}

.woocommerce-cart .wc-block-cart-items__row > td {
  padding: 14px;
  border: 0;
  vertical-align: top;
}

.woocommerce-cart .wc-block-cart-item__image {
  width: 86px;
}

.woocommerce-cart .wc-block-cart-item__image img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  object-fit: cover;
}

.woocommerce-cart .wc-block-cart-item__product {
  min-width: 0;
}

.woocommerce-cart .wc-block-cart-item__wrap {
  display: grid;
  gap: 8px;
}

.woocommerce-cart
  .wc-block-cart-item__product
  .wc-block-components-product-name {
  font-weight: 500;
  color: #111827;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.25;
  max-width: 100%;
}

.woocommerce-cart
  .wc-block-cart-item__product
  .wc-block-components-product-name:hover {
  text-decoration: underline;
}

.woocommerce-cart .wc-block-cart-item__prices {
  font-size: 13px;
}

.woocommerce-cart .wc-block-components-product-price__regular {
  opacity: 0.65;
}

.woocommerce-cart .wc-block-components-product-price__value {
  font-weight: 800;
}

.woocommerce-cart .wc-block-components-product-metadata__description {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.35;
  max-height: 2.7em;
  overflow: hidden;
}

.woocommerce-cart .wc-block-cart-item__quantity {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.woocommerce-cart .wc-block-components-quantity-selector {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.woocommerce-cart .wc-block-components-quantity-selector__input {
  border: 0;
  width: 58px;
  font-weight: 800;
  box-shadow: none;
}

.woocommerce-cart .wc-block-components-quantity-selector__button {
  border: 0;
  background: #f8fafc;
}

.woocommerce-cart .wc-block-components-quantity-selector__button:hover {
  background: #eef2f7;
}

.woocommerce-cart .wc-block-cart-item__remove-link {
  color: #ef4444;
  font-weight: 700;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(239, 68, 68, 0.25);
  background: rgba(239, 68, 68, 0.06);
}

.woocommerce-cart .wc-block-cart-item__remove-link:hover {
  background: rgba(239, 68, 68, 0.1);
}

.woocommerce-cart .wc-block-cart-item__total {
  text-align: right;
}

.woocommerce-cart .wc-block-cart-item__total-price-and-sale-badge-wrapper {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.woocommerce-cart
  .wc-block-cart-item__total
  .wc-block-components-product-price__value {
  font-weight: 900;
  font-size: 14px;
  color: #111827;
}

.woocommerce-cart .wc-block-components-sale-badge {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  font-size: 12px;
  color: #334155;
}

.woocommerce-cart .wc-block-cart__totals-title {
  margin: 4px 0 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111827;
}

.woocommerce-cart .wc-block-components-panel__button {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff;
  font-weight: 800;
}

.woocommerce-cart .wc-block-components-panel__button:hover {
  background: #f8fafc;
}

.woocommerce-cart .wc-block-cart__submit-button {
  background: #1aba1a !important;
  border: 0 !important;
  color: #fff !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em;
}

.woocommerce-cart .wc-block-cart__submit-button:hover {
  opacity: 0.9;
}

.woocommerce-account .woocommerce {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.woocommerce-account .woocommerce::before,
.woocommerce-account .woocommerce::after {
  display: none !important;
}

.woocommerce-MyAccount-navigation {
  width: 260px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 12px;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-MyAccount-navigation li {
  margin: 0;
}

.woocommerce-MyAccount-navigation a {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: all 0.2s ease;
}

.woocommerce-MyAccount-navigation a:hover {
  background: #f1f5f9;
  color: #111827;
}

.woocommerce-MyAccount-navigation .is-active > a {
  background: linear-gradient(135deg, #ebfee0, #f8fafc);
  color: #0f172a;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px #bafdc2;
}

.woocommerce-MyAccount-navigation-link--customer-logout {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed #e5e7eb;
}

.woocommerce-MyAccount-content {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 22px 24px;
}

.woocommerce-MyAccount-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 14px;
}

.woocommerce-MyAccount-content strong {
  color: #111827;
  font-weight: 600;
}

.woocommerce-MyAccount-content a {
  color: #1aba1a;
  text-decoration: none;
  font-weight: 500;
}

.woocommerce-MyAccount-content a:hover {
  text-decoration: underline;
}

.woocommerce-notices-wrapper {
  margin-bottom: 16px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
}

.woocommerce-message {
  background: #ecfdf5;
  border: 1px solid #86efac;
  color: #065f46;
  display: flex;
  align-items: center;
}

.woocommerce-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #7f1d1d;
}

.woocommerce-info {
  background: linear-gradient(135deg, #ebfee0, #f8fafc);
  color: #000;
  border: none;
}

.woocommerce-account .woocommerce-MyAccount-content form,
.woocommerce-account .woocommerce-EditAccountForm,
.woocommerce-account form.woocommerce-EditAccountForm {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 22px rgba(17, 24, 39, 0.06);
}

.woocommerce-account .woocommerce-MyAccount-content form legend {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  padding: 0 6px;
}

.woocommerce-account .woocommerce-MyAccount-content form fieldset {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
  margin-top: 14px;
}

.woocommerce-account .woocommerce-form-row {
  margin: 0 0 12px;
}

.woocommerce-account .form-row-first,
.woocommerce-account .form-row-last {
  width: 48%;
}

.woocommerce-account .form-row-first {
  float: left;
}

.woocommerce-account .form-row-last {
  float: right;
}

.woocommerce-account .form-row-wide {
  width: 100%;
  clear: both;
}

.woocommerce-account .woocommerce-form-row label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #374151;
  margin-bottom: 6px;
}

.woocommerce-account .woocommerce-form-row .required {
  color: #ef4444;
}

.woocommerce-account #account_display_name_description em {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 12px;
  color: #6b7280;
}

.woocommerce-account .woocommerce-Input,
.woocommerce-account .input-text,
.woocommerce-account select,
.woocommerce-account textarea {
  width: 100%;
  height: 42px;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  color: #111827;
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.05s ease;
}

.woocommerce-account textarea {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

.woocommerce-account .woocommerce-Input:focus,
.woocommerce-account .input-text:focus,
.woocommerce-account select:focus,
.woocommerce-account textarea:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.woocommerce-account .password-input {
  position: relative;
  display: block;
}

.woocommerce-account .password-input .woocommerce-Input {
  padding-right: 44px;
}

.woocommerce-account button.show-password-input {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #f9fafb;
  cursor: pointer;
}

.woocommerce-account button.show-password-input:hover {
  background: #f3f4f6;
}

.woocommerce-account .woocommerce-Button.button,
.woocommerce-account button.button,
.woocommerce-account .button,
.woocommerce-MyAccount-content a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  margin: 15px 0 0;
  border-radius: 3px;
  background: #1aba1a;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    transform 0.05s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}

.woocommerce-account .woocommerce-Button.button:hover,
.woocommerce-account button.button:hover,
.woocommerce-account .button:hover {
  background: #0b1220;
  border-color: #0b1220;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.18);
}

.woocommerce-account .woocommerce-Button.button:active,
.woocommerce-account button.button:active,
.woocommerce-account .button:active {
  transform: translateY(1px);
}

.woocommerce-info::before {
  display: none;
}

.woocommerce-message::before {
  position: initial;
  margin: 0 5px 0 0;
}

.woocommerce-account .woocommerce-Addresses.u-columns {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.woocommerce-account .woocommerce-Addresses.u-columns::before,
.woocommerce-account .woocommerce-Addresses.u-columns::after {
  display: none;
}

.woocommerce-account .woocommerce-Addresses .u-column1,
.woocommerce-account .woocommerce-Addresses .u-column2,
.woocommerce-account .woocommerce-Addresses .col-1,
.woocommerce-account .woocommerce-Addresses .col-2 {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.woocommerce-account .woocommerce-Addresses {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.woocommerce-account .woocommerce-MyAccount-content > p {
  font-size: 15px;
  color: #6b7280;
  margin: 0 0 14px;
}

.woocommerce-account .woocommerce-Address {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px 18px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
}

.woocommerce-account .woocommerce-Address-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 12px;
  padding: 0 0 12px;
  border-bottom: 1px solid #eef2f7;
}

.woocommerce-account .woocommerce-Address-title::before,
.woocommerce-account .woocommerce-Address-title::after {
  display: none !important;
}

.woocommerce-account .woocommerce-Address-title h2 {
  font-size: 15px;
  color: #111827;
  margin: 0;
}

.woocommerce-account .woocommerce-Address-title .edit {
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #6fd771;
  color: #111827;
  text-decoration: none;
  white-space: nowrap;
}

.woocommerce-account .woocommerce-Address-title .edit:hover {
  background: #f3f4f6;
}

.woocommerce-account .woocommerce-Address address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.65;
  color: #374151;
  margin: 0;
  word-break: break-word;
}

.woocommerce-account .woocommerce-Address address:empty {
  min-height: 72px;
}

.woof_open_hidden_li a {
  color: #1aba1a;
  font-size: 14px;
  font-weight: 500;
}

.layout {
  display: flex;
  gap: 20px;
  margin: 20px auto;
  padding: 0 !important;
}

.sidebar {
  width: 20%;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  display: none;
}

.main-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.small-row {
  display: flex;
  gap: 20px;
}

.small-row .card {
  flex: 1;
  height: 180px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.small-row .card-left {
  width: 60%;
}

.small-row .card-right {
  width: 40%;
}

.right-promo {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.right-promo .card {
  height: 100%;
}

.top-product {
  display: flex !important;
  flex-direction: row-reverse !important;
  gap: 20px !important;
  align-items: center;
}

.bottom-product {
  display: flex !important;
  flex-direction: row-reverse !important;
  gap: 20px !important;
  align-items: center;
  background-color: #111 !important;
}

.bottom-product-right p {
  color: #fff !important;
  text-align: center !important;
}

.bottom-product-right .price {
  color: #1aba1a !important;
}

.top-product-left,
.bottom-product-right {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  gap: 25px;
}

.card {
  background: #ddd;
  border-radius: 12px;
  padding: 16px;
  transition: 0.25s;
  height: 100% !important;
}

.mega-nav {
  background: white;
  display: flex;
  padding: 10px 20px;
}

.mega-item {
  position: relative;
  margin-right: 30px;
  cursor: pointer;
}

.mega-menu {
  position: absolute;
  top: 40px;
  left: 0;
  background: white;
  padding: 20px;
  display: none;
  gap: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mega-item:hover .mega-menu {
  display: flex;
}

.sidebar-menu,
.sidebar-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-menu li {
  position: relative;
}

.sidebar-menu a.dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
  cursor: pointer;
  text-decoration: none;
  color: #333;
  line-height: 1.2;
}

.sidebar-menu a.dropdown::after {
  content: "";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  transition: transform 0.25s ease;
}

.submenu {
  background: #f8f8f8;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  padding-left: 15px;
}

.submenu li {
  padding: 10px 20px;
  cursor: pointer;
}

.submenu li:hover {
  background: #eaeaea;
}

.sidebar-menu li.open > .submenu {
  max-height: 200px;
}

.sidebar-menu li.open > a.dropdown::after {
  transform: rotate(180deg);
}

.submenu.open {
  max-height: 200px;
}

.searchbar {
  display: none;
}

.searchbar2 {
  background: #1db100;
  padding: 12px 20px;
  border-radius: 8px;
}

.searchbar-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.search-left {
  flex: 3;
}

.search-left input {
  width: 100%;
  padding: 10px 16px;
  border-radius: 25px;
  border: none;
  outline: none;
  font-size: 14px;
}

.search-right {
  color: white;
  font-weight: 500;
  white-space: nowrap;
  flex: 1;
}

.wp-block-group {
  padding: 0 !important;
}

.branduri-categ {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 !important;
}

.brands,
.feature {
  width: 49%;
}

.brands-title span,
.categ-title span {
  font-weight: 700;
  margin-right: 20px;
}

.brands-title a,
.categ-title a {
  color: #666666;
}

.brands-title,
.categ-title {
  padding-bottom: 20px;
}

.brand-logos img {
  margin-right: 15px;
}

.top-categorii {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.services-section,
.programs-section {
  padding: 20px !important;
}

.section-title {
  font-size: 20px;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: 700;
  top: 25px;
  left: 0;
  position: relative;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.services-section .card {
  position: relative;
  width: 49%;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  padding: 100px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  transition: background 0.3s ease;
}

.card-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: white;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}

.section-wrapper {
  margin-top: 30px;
  background-color: #fff;
  border-radius: 12px;
  padding: 20px !important;
}

.section-header {
  background: #4caf50;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 6px 6px 0 0;
}

.section-body {
  display: flex;
  align-items: stretch;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  gap: 24px;
}

.main-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.main-panel-columns {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  flex: 1;
}

.product-images {
  padding: 24px 16px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  position: relative;
  border-right: 1px solid #f0f0f0;
  gap: 16px;
}

.savings-badge {
  position: absolute;
  top: 24px;
  left: 16px;
  background: #4caf50;
  color: #fff;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  z-index: 2;
}

.savings-badge span {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
}

.main-image-wrap {
  width: 100%;
  aspect-ratio: 4/4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
}

.main-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
}

.thumb {
  width: 64px;
  height: 64px;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb:hover,
.thumb.active {
  border-color: #4caf50;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-details {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-right: 1px solid #f0f0f0;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 16px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.price-current {
  font-size: 1.7rem;
  font-weight: 800;
  color: #e53935;
}

.price-old {
  font-size: 1rem;
  color: #aaa;
  text-decoration: line-through;
  font-weight: 500;
}

.btn-add {
  margin-left: auto;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-add:hover {
  background: #4caf50;
}

.specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

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

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

.badge-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.badge {
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-green {
  border: 2px solid #4caf50;
  color: #4caf50 !important;
}

.badge-red {
  border: 2px solid #e53935;
  color: #e53935 !important;
}

.urgency-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.countdown-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-bottom: 22px;
}

.urgency-text {
  font-size: 0.72rem;
  font-weight: 700;
  color: #555;
  text-transform: uppercase;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 4px;
}

.count-block {
  background: #f5f5f5;
  border-radius: 6px;
  min-width: 54px;
  padding: 8px 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.count-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}

.count-label {
  font-size: 0.65rem;
  color: #888;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.stock-bar-wrap {
  margin-top: 4px;
}

.stock-track {
  height: 8px;
  background: #e0e0e0;
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 6px;
}

.stock-fill {
  height: 100%;
  width: 34.7%;
  background: linear-gradient(90deg, #4caf50, #81c784);
  border-radius: 99px;
  transition: width 1s ease;
}

.stock-text {
  font-size: 0.82rem;
  color: #555;
  font-weight: 500;
}

.stock-text strong {
  color: #1a1a1a;
}

.sidebar-cards {
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
  border-left: 1px solid #f0f0f0;
}

.side-card {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.side-card:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}

.side-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.side-card:hover img {
  transform: scale(1.04);
}

.discount-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e53935;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  padding: 2px 8px;
}

.top-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0 auto;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 30px;
}

.hero-banner {
  position: relative;
  background: #fff;
  min-height: 220px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 24px 24px;
  border-radius: 12px;
}

.hero-banner img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.hero-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #111;
  line-height: 1.25;
  max-width: 260px;
}

.btn-compare {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  width: fit-content;
  transition: background 0.2s;
}

.btn-compare:hover {
  background: #4caf50;
}

.product-grid-panel {
  background: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
}

.product-cell {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 20px 18px;
  cursor: pointer;
  transition: background 0.18s;
}

.product-cell:nth-child(3n) {
  border-right: none;
}

.product-cell:nth-child(n + 4) {
  border-bottom: none;
}

.product-cell-img {
  width: 52px;
  height: 68px;
  object-fit: contain;
  flex-shrink: 0;
}

.product-cell-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-cell-count {
  font-size: 0.88rem;
  font-weight: 500;
  color: #ccc;
}

.categories-wrapper {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 16px;
  padding: 0 !important;
  margin-top: 16px;
}

.category-col {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.category-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #111;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.category-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

.category-link:hover {
  color: #4caf50;
}

.category-hero {
  width: 100%;
  aspect-ratio: 16/7;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.category-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.category-hero:hover img {
  transform: scale(1.03);
}

.category-divider {
  height: 1px;
  background: #e8e8e8;
  margin-bottom: 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 12px;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  gap: 10px;
  padding: 8px 4px;
  border-radius: 8px;
  transition: background 0.18s;
}

.product-card:hover {
  background: #f7f7f7;
}

.product-img-wrap {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #f0f0f0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-img-wrap img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}

.product-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.product-count {
  font-size: 0.8rem;
  font-weight: 400;
  color: #888;
  margin-top: -6px;
}

.programs-section {
  background-color: #fff;
  padding: 24px;
  border-radius: 12px;
}

.programs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.programs-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #4caf50;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-arrows {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.nav-btn {
  background: #fff;
  border: none;
  padding: 7px 14px;
  font-size: 0.95rem;
  color: #444;
  cursor: pointer;
  line-height: 1;
  transition:
    background 0.18s,
    color 0.18s;
}

.nav-btn:first-child {
  border-right: 1px solid #ddd;
}

.nav-btn:hover {
  background: #f0f0f0;
}

.nav-btn:active {
  background: #e0e0e0;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.program-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
}

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

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

.card-icon-overlay {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon-overlay svg {
  width: 72px;
  height: 72px;
  opacity: 0.9;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.3));
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
}

.card-desc {
  font-size: 0.85rem;
  color: #555;
  font-weight: 400;
  margin-bottom: 10px;
}

.btn-detalii {
  display: inline-block;
  border: 1.5px solid #4caf50;
  color: #4caf50;
  background: transparent;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  border-radius: 5px;
  cursor: pointer;
  width: fit-content;
  transition:
    background 0.2s,
    color 0.2s;
  margin-top: auto;
}

.btn-detalii:hover {
  background: #4caf50;
  color: #fff;
}

.n2-ss-slider-2 .n2-ow {
  max-height: 400px;
}

.flex-control-thumbs img {
  padding: 20px;
}

.searchbar2 .search-left form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 25px;
  padding: 8px 16px;
  gap: 8px;
  min-width: 420px;
}

.searchbar2 .search-left select {
  background: transparent;
  border: none;
  border-right: 1px solid #ccc;
  color: #333;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  font-size: 14px;
  padding-right: 12px;
}

.searchbar2 .search-left select option {
  color: #333;
  background: #fff;
}

.searchbar2 .search-left input[type="text"] {
  background: transparent;
  border: none;
  color: #333;
  outline: none;
  padding: 0 8px;
  font-size: 14px;
  flex: 1;
}

.searchbar2 .search-left input::placeholder {
  color: #aaa;
}

.searchbar2 .search-left button {
  background: transparent;
  border: none;
  color: #333;
  cursor: pointer;
  font-size: 16px;
  padding: 0;
  display: flex;
  align-items: center;
}

.product-checkout-section {
  padding-top: 40px;
  border-top: none !important;
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  margin-top: 30px;
}

.product-checkout-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.product-checkout-section .woocommerce {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.product-checkout-section .woocommerce-form-coupon-toggle {
  font-size: 13px !important;
  box-sizing: border-box !important;
  flex: 0 0 auto !important;
  width: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  padding: 10px 16px !important;
  margin-bottom: 20px !important;
  background: #e8f5e9 !important;
  border: 1px solid #c8e6c9 !important;
  border-radius: 8px !important;
}

.product-checkout-section .woocommerce-form-coupon-toggle a {
  color: #3a9e3f;
  font-weight: 600;
}

.product-checkout-section .woocommerce-checkout {
  display: flex !important;
  gap: 30px !important;
  align-items: flex-start !important;
  flex-wrap: wrap !important;
}

.product-checkout-section #customer_details {
  flex: 1 1 55% !important;
  display: flex !important;
  flex-direction: column !important;
  width: auto !important;
  float: none !important;
  margin-top: 0 !important;
}

.product-checkout-section #customer_details .col-1,
.product-checkout-section #customer_details .col-2 {
  width: 100% !important;
  float: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.product-checkout-section #order_review_heading {
  flex: 1 1 35% !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #333 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  display: flex !important;
  align-items: flex-end !important;
  padding-bottom: 10px !important;
  border-bottom: 2px solid #e0e0e0 !important;
  min-height: 42px !important;
}

.product-checkout-section #order_review {
  flex: 1 1 35% !important;
  margin-top: 0 !important;
  background: #edeff5 !important;
  border: 1px solid #eee !important;
  border-radius: 8px !important;
  padding: 20px !important;
}

.product-checkout-section .woocommerce-billing-fields h3,
.product-checkout-section .woocommerce-additional-fields h3,
.product-checkout-section #order_review_heading {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #333 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 16px !important;
  padding-bottom: 10px !important;
  border-bottom: 2px solid #e0e0e0 !important;
}

.product-checkout-section .form-row {
  margin-bottom: 14px !important;
}

.product-checkout-section .form-row label {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #666 !important;
  margin-bottom: 6px !important;
  display: block !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.product-checkout-section .form-row input[type="text"],
.product-checkout-section .form-row input[type="email"],
.product-checkout-section .form-row input[type="tel"],
.product-checkout-section .form-row select,
.product-checkout-section .form-row textarea {
  border: 1.5px solid #ddd !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  width: 100% !important;
  background: #fff !important;
  color: #333 !important;
  box-sizing: border-box !important;
  transition:
    border-color 0.2s,
    box-shadow 0.2s !important;
  -webkit-appearance: none !important;
}

.product-checkout-section .form-row input:focus,
.product-checkout-section .form-row select:focus,
.product-checkout-section .form-row textarea:focus {
  border-color: #3a9e3f !important;
  box-shadow: 0 0 0 3px rgba(58, 158, 63, 0.12) !important;
  outline: none !important;
}

.product-checkout-section table.woocommerce-checkout-review-order-table {
  width: 100% !important;
}

.product-checkout-section table.woocommerce-checkout-review-order-table th {
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: #313131 !important;
  padding: 8px 12px !important;
  border-bottom: 1px solid #eee !important;
  border-top: none !important;
  background: transparent !important;
}

.product-checkout-section table.woocommerce-checkout-review-order-table td {
  padding: 14px 12px !important;
  border-bottom: 1px solid #eee !important;
  border-top: none !important;
  font-size: 14px !important;
  background: transparent !important;
}

.product-checkout-section .order-total th,
.product-checkout-section .order-total td {
  font-weight: 700 !important;
  font-size: 16px !important;
  color: #3a9e3f !important;
  border-bottom: none !important;
}

.product-checkout-section #payment {
  border: none !important;
  background: #f0f0f0 !important;
  border-radius: 8px !important;
  padding: 16px !important;
  margin-top: 12px !important;
}

.product-checkout-section #payment .payment_methods {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 16px 0 !important;
}

.product-checkout-section #payment .payment_methods li {
  padding: 12px 0 !important;
  border-bottom: 1px solid #eee !important;
  font-size: 14px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.product-checkout-section #payment .payment_methods li:last-child {
  border-bottom: none !important;
}

.product-checkout-section #place_order {
  background: #1aba1a !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 16px 40px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  margin-top: 10px !important;
}

.product-checkout-section #place_order:hover {
  background: #2d7d31 !important;
}

.product-checkout-section .woocommerce-billing-fields h3 {
  min-height: 42px !important;
  display: flex !important;
  align-items: flex-end !important;
  margin-bottom: 0 !important;
  padding-bottom: 10px !important;
  border-bottom: 2px solid #e0e0e0 !important;
}

.product-checkout-section .product-checkout-inner h2 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e0e0e0;
}

.product-checkout-section .shop_table {
  border: none !important;
}

.woocommerce-tabs ul.tabs {
  padding: 0;
  margin: 0;
  border-bottom: 2px solid #e0e0e0;
  display: flex;
  gap: 40px;
  list-style: none;
  background: none;
}

.woocommerce-tabs ul.tabs::before {
  display: none !important;
}

.woocommerce-tabs ul.tabs li {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.woocommerce-tabs ul.tabs li a {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #999 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 12px 0 !important;
  display: block !important;
  text-decoration: none !important;
  border-bottom: 3px solid transparent !important;
  margin-bottom: -2px !important;
  background: none !important;
}

.woocommerce-tabs ul.tabs li.active a {
  color: #333 !important;
  border-bottom: 3px solid #333 !important;
}

.woocommerce-tabs ul.tabs li a:hover {
  color: #333 !important;
}

.woocommerce-tabs .panel {
  padding: 5px 0;
  border: none;
}

.woocommerce-tabs #tab-description p,
.woocommerce-tabs #tab-description li {
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: #333 !important;
}

.woocommerce-tabs #tab-description h2,
.woocommerce-tabs #tab-description h3 {
  font-size: 14px !important;
  font-weight: 700 !important;
  margin-top: 16px !important;
  margin-bottom: 6px !important;
  color: #222 !important;
}

.i4ewOd-pzNkMb-r4nke-LS81yb {
  display: none !important;
}

.woocommerce-Tabs-panel--description {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 15px;
  font-family: "Arial", sans-serif;
  color: #333;
  line-height: 1.6;
}

.woocommerce-Tabs-panel--description h2,
.woocommerce-Tabs-panel--description h3 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.woocommerce-Tabs-panel--description p {
  margin-bottom: 20px;
}

.woocommerce-Tabs-panel--description img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 8px;
}

.woocommerce-Tabs-panel--description .two-columns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.woocommerce-Tabs-panel--description .two-columns .column {
  flex: 1;
  min-width: 300px;
}

.woocommerce-Tabs-panel--description .section {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.woocommerce-Tabs-panel--description .section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.imagini1 .woocommerce-product-gallery {
  max-width: 100% !important;
}

.imagini1 .woocommerce-product-gallery__image img {
  max-height: 350px !important;
  width: auto !important;
  margin: 0 auto !important;
  display: block !important;
  object-fit: contain !important;
}

.imagini1 .flex-control-thumbs {
  display: flex !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}

.imagini1 .flex-control-thumbs li {
  width: 70px !important;
  height: 70px !important;
}

.imagini1 .flex-control-thumbs li img {
  width: 70px !important;
  height: 70px !important;
  object-fit: contain !important;
  border: 1px solid #eee !important;
  border-radius: 4px !important;
  cursor: pointer !important;
}

.imagini1 .flex-control-thumbs li img.flex-active {
  border-color: #4caf50 !important;
}

.thumbs-slider-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-top: 10px !important;
}

.flex-control-thumbs {
  display: flex !important;
  gap: 8px !important;
  flex: 1 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

.flex-control-thumbs li {
  width: 70px !important;
  min-width: 70px !important;
  height: 70px !important;
  list-style: none !important;
}

.flex-control-thumbs li img {
  width: 70px !important;
  height: 70px !important;
  object-fit: contain !important;
  border: 1px solid #eee !important;
  border-radius: 4px !important;
  cursor: pointer !important;
}

.flex-control-thumbs li img.flex-active {
  border-color: #4caf50 !important;
}

.thumb-prev,
.thumb-next {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid #ddd !important;
  border-radius: 50% !important;
  width: 30px !important;
  min-width: 30px !important;
  height: 30px !important;
  font-size: 12px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
  padding: 0 !important;
}

.thumb-prev:hover,
.thumb-next:hover {
  background: #4caf50 !important;
  color: #fff !important;
  border-color: #4caf50 !important;
}

.thumb-prev:disabled,
.thumb-next:disabled {
  opacity: 0.3 !important;
  cursor: default !important;
}

.related.products {
  background: #fff !important;
  border-radius: 12px !important;
  padding: 24px !important;
  margin-bottom: 30px !important;
  overflow: visible !important;
  margin-top: 40px;
}

.related-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.related-header h2 {
  text-transform: uppercase !important;
  color: #222 !important;
  line-height: 1.2;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.related-vezi-toate {
  color: #555 !important;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

.related-slider-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  overflow: visible !important;
  position: relative;
  padding: 0 50px;
}

.related.products ul.products {
  flex-wrap: nowrap !important;
  flex: 1 !important;
  overflow: hidden !important;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.related.products ul.products li.product {
  min-width: calc(20% - 13px) !important;
  margin: 0 !important;
  flex: 0 0 calc(20% - 16px);
  max-width: calc(20% - 16px);
  width: calc(20% - 16px);
  display: flex !important;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  background: #fff;
  border-radius: 18px;
  padding: 18px 16px 20px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  overflow: hidden;
}

.related.products ul.products li.product.visible {
  display: block !important;
}

.related.products ul.products li.product.hidden-item {
  display: none !important;
}

.related.products ul.products li.product img {
  width: 100% !important;
  height: 160px !important;
  object-fit: contain !important;
  margin-bottom: 10px !important;
}

.related.products ul.products li.product .woocommerce-loop-product__title {
  margin-bottom: 8px !important;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  color: #111;
  margin: 0 0 12px;
  min-height: 74px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}

.related.products ul.products li.product .price {
  font-weight: 700 !important;
  color: #222 !important;
  margin-bottom: 10px !important;
  font-size: 16px;
  display: block;
  margin: 0 0 14px;
  min-height: 56px;
  text-align: left;
  line-height: 1.35;
  align-items: baseline;
  display: flex;
}

.related.products ul.products li.product .add_to_cart_button {
  margin-top: auto !important;
  background: #222 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 10px !important;
  text-align: center !important;
  font-size: 12px !important;
  cursor: pointer !important;
  text-decoration: none !important;
  display: block !important;
  margin: 0 auto;
}

.related.products ul.products li.product .add_to_cart_button:hover {
  background: #4caf50 !important;
}

.rel-prev,
.rel-next {
  min-width: 36px !important;
  font-size: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #111;
  color: #fff;
  cursor: pointer;
  z-index: 3;
}

.rel-prev:hover,
.rel-next:hover {
  background: #4caf50 !important;
  color: #fff !important;
  border-color: #4caf50 !important;
}

.rel-prev.hidden,
.rel-next.hidden {
  opacity: 0.2 !important;
  pointer-events: none !important;
}

.woocommerce-Tabs-panel h1 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 20px;
}

.product-card-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 10px 0;
}

.product-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 26px;
}

.badge-transport {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #1aba1a;
  background: #e8f5e9;
  border: 1.5px solid #a5d6a7;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-cadou {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #1aba1a;
  background: #ffebee;
  border: 1.5px solid #ef9a9a;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

.badge-stock.in-stock {
  color: #1aba1a;
}

.badge-stock.in-stock::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #1aba1a;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.badge-stock.out-of-stock {
  color: #1aba1a;
}

.badge-stock.out-of-stock::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #1aba1a;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.related.products .woocommerce-Price-amount bdi {
  font-weight: 600;
}

.woocommerce-checkout #order_review_heading {
  display: none !important;
  margin: 0 0 16px 0;
  align-self: flex-start;
}

.woocommerce-checkout #order_review {
  flex: 1 1 35% !important;
  float: none !important;
  width: auto !important;
  position: sticky !important;
  top: 20px !important;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
}

#order_review {
  background: #fff !important;
  border-radius: 12px !important;
  padding: 20px !important;
  border: 1px solid #eee !important;
}

#order_review .woocommerce-checkout-review-order-table {
  display: table !important;
}

.woocommerce-checkout-review-order-table thead th {
  padding-bottom: 10px !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  color: #999 !important;
  padding: 8px 0 !important;
  border-bottom: 1px solid #eee !important;
  background: transparent !important;
}

.woocommerce-checkout-review-order-table .cart_item td {
  font-size: 13px !important;
  vertical-align: middle !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid #eee !important;
  background: transparent !important;
}

.woocommerce-checkout-review-order-table .order-total td,
.woocommerce-checkout-review-order-table .order-total th {
  font-weight: 700 !important;
  font-size: 15px !important;
  padding-top: 16px !important;
}

.woocommerce-checkout-review-order-table .order-total .amount {
  color: #4caf50 !important;
}

#payment {
  background: #f5f5f5 !important;
  border-radius: 8px !important;
  padding: 16px !important;
  margin-top: 16px !important;
}

#payment ul.payment_methods {
  border: none !important;
  padding: 0 !important;
  margin-bottom: 12px !important;
  background: transparent !important;
}

#place_order {
  background: #4caf50 !important;
  color: #fff !important;
  border: none !important;
  width: 100% !important;
  padding: 14px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  margin-top: 12px !important;
}

#place_order:hover {
  background: #388e3c !important;
}

.ev-order-review-title {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #333 !important;
  margin-bottom: 16px !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
  text-transform: none !important;
}

.ev-review-product {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.ev-review-thumb img {
  flex-shrink: 0 !important;
  width: 55px !important;
  height: 55px !important;
  object-fit: contain !important;
  border: 1px solid #eee !important;
  border-radius: 6px !important;
  background: #f9f9f9 !important;
}

.ev-review-name {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #222 !important;
}

.woocommerce-checkout-review-order-table .cart_item .product-name {
  display: block !important;
}

.woocommerce-checkout-review-order-table .cart_item .product-quantity {
  font-size: 12px !important;
  color: #666 !important;
  margin-top: 4px !important;
  display: block !important;
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
  padding-top: 16px !important;
  border-top: 1px solid #eee !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  color: #222 !important;
  background: transparent !important;
}

#payment ul.payment_methods li {
  border-radius: 6px !important;
  margin-bottom: 8px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 13px !important;
  color: #333 !important;
  padding: 6px 0 !important;
  background: transparent !important;
}

.woocommerce-checkout
  .woocommerce-checkout-review-order-table
  tr.cart-subtotal {
  display: none !important;
}

.woocommerce-checkout
  .woocommerce-checkout-review-order-table
  tr.order-total
  td
  .amount
  bdi {
  color: #4caf50 !important;
  font-weight: 700 !important;
}

.woocommerce-checkout #payment div.payment_box {
  display: none !important;
  background: transparent !important;
}

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

.woocommerce-checkout .woocommerce-privacy-policy-text {
  display: none !important;
}

.woocommerce-checkout .ev-review-thumb img {
  width: 55px !important;
  height: 55px !important;
  object-fit: contain !important;
  border: 1px solid #eee !important;
  border-radius: 6px !important;
  background: #f9f9f9 !important;
}

.woocommerce-checkout
  .woocommerce-checkout-review-order-table
  .cart_item
  .product-quantity {
  display: inline !important;
  font-size: 12px !important;
  color: #666 !important;
  margin-left: 4px !important;
}

.woocommerce-checkout #payment {
  background: #f0f0f0 !important;
  border-radius: 8px !important;
  padding: 16px !important;
  margin-top: 12px !important;
  border: none !important;
}

.woocommerce-checkout #payment ul.payment_methods {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.woocommerce-checkout #payment ul.payment_methods li {
  background: transparent !important;
  border: none !important;
  padding: 6px 0 !important;
}

.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table {
  background: #fff !important;
  border-radius: 8px !important;
  padding: 12px !important;
  border: 1px solid #eee !important;
}

.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table td,
.woocommerce-checkout
  #order_review
  .woocommerce-checkout-review-order-table
  th {
  background: #fff !important;
}

form.woocommerce-checkout #payment {
  background-color: #e1e3eb !important;
  background: #f0f0f0 !important;
  border-radius: 8px !important;
  padding: 16px !important;
  border: none !important;
}

.product-checkout-section #order_review table.shop_table th,
.product-checkout-section #order_review table.shop_table td,
.product-checkout-section #order_review table.shop_table tr,
.product-checkout-section #order_review table.shop_table {
  background: #ffffff !important;
  background-color: #ffffff !important;
}

.cart-title {
  font-size: 16px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: #222 !important;
  margin-bottom: 20px !important;
  padding-bottom: 12px !important;
  border-bottom: 2px solid #222 !important;
}

.product-cart-section .wc-proceed-to-checkout {
  display: none !important;
}

.product-cart-section .coupon {
  display: none !important;
}

.product-cart-section .woocommerce-cart-form table {
  font-size: 13px !important;
}

.product-cart-section .woocommerce-cart-form table td.product-thumbnail img {
  width: 60px !important;
  height: 60px !important;
  object-fit: contain !important;
  border: 1px solid #eee !important;
  border-radius: 6px !important;
}

.product-cart-section .woocommerce-cart-form table td {
  padding: 12px 8px !important;
  vertical-align: middle !important;
  background: #fff !important;
}

.product-cart-section .woocommerce-cart-form table th {
  font-size: 11px !important;
  text-transform: uppercase !important;
  color: #999 !important;
  background: #fff !important;
  padding: 8px !important;
  border-bottom: 1px solid #eee !important;
}

.product-cart-section .wc-proceed-to-checkout,
.product-cart-section .coupon {
  display: none !important;
}

.product-cart-section .cart_totals {
  float: none !important;
  width: 100% !important;
  max-width: 400px !important;
  margin-left: auto !important;
}

.product-cart-section .cart_totals table {
  font-size: 13px !important;
}

.woocommerce-cart-form td.product-thumbnail {
  display: none !important;
}

.woocommerce-cart-form th.product-thumbnail {
  display: none !important;
}

.product-checkout-section .cart_totals {
  display: none;
}

.woocommerce table.shop_table td {
  border-top: none !important;
}

.woocommerce-cart table.shop_table thead th {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: #666;
  border-bottom: 1px solid #d9d9d9;
  padding: 18px 12px;
}

.woocommerce-cart table.shop_table tbody tr.cart_item td {
  vertical-align: middle;
  padding: 22px 12px;
  border-bottom: 1px solid #ededed;
}

.woocommerce-cart td.product-name a {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  line-height: 1.3;
}

.woocommerce-cart td.product-thumbnail img {
  width: 90px;
  height: auto;
}

.woocommerce-cart td.product-price,
.woocommerce-cart td.product-subtotal {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  white-space: nowrap;
}

.woocommerce-cart .quantity .qty {
  width: 56px;
  height: 34px;
  text-align: center;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  box-shadow: none;
}

.woocommerce-cart button[name="update_cart"] {
  background: #2cc52c !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 10px !important;
  padding: 14px 24px !important;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: none !important;
}

.woocommerce-cart button[name="update_cart"]:hover {
  background: #23ab23 !important;
}

.woocommerce-cart a.remove {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #222 !important;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50%;
  background: transparent !important;
}

.woocommerce-cart a.remove:hover {
  color: #000 !important;
  background: transparent !important;
}

.woocommerce-cart .actions {
  padding-top: 22px !important;
}

.woocommerce-cart .coupon {
  display: none;
}

body.ev-custom-cart .woocommerce {
  max-width: 1100px;
  margin: 0 auto;
}

body.ev-custom-cart .woocommerce-cart-form table.shop_table {
  border: 0;
  border-collapse: collapse;
}

body.ev-custom-cart .woocommerce-cart-form table.shop_table th {
  font-size: 12px;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  padding: 18px 20px;
  border-bottom: 1px solid #d9d9d9;
}

body.ev-custom-cart .woocommerce-cart-form table.shop_table td {
  padding: 28px 20px;
  vertical-align: middle;
  border-top: 0;
  border-bottom: 1px solid #ececec;
}

body.ev-custom-cart td.product-name a {
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  color: #111;
  text-decoration: none;
}

body.ev-custom-cart td.product-thumbnail {
  width: 110px;
}

body.ev-custom-cart td.product-thumbnail img {
  width: 78px;
  max-width: 78px;
  height: auto;
}

body.ev-custom-cart td.product-price,
body.ev-custom-cart td.product-subtotal {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  white-space: nowrap;
}

body.ev-custom-cart .quantity .qty {
  width: 56px;
  min-height: 34px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  text-align: center;
  box-shadow: none;
  padding: 4px;
}

body.ev-custom-cart a.remove {
  color: #222 !important;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  background: transparent !important;
  display: inline-block;
  width: auto;
  height: auto;
}

body.ev-custom-cart a.remove:hover {
  color: #000 !important;
  background: transparent !important;
}

body.ev-custom-cart .actions {
  padding-top: 22px !important;
}

body.ev-custom-cart .actions .coupon {
  display: none !important;
}

body.ev-custom-cart button[name="update_cart"] {
  background: #2fc133 !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 10px !important;
  padding: 14px 26px !important;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: none !important;
}

body.ev-custom-cart button[name="update_cart"]:hover {
  background: #25a52a !important;
}

body.ev-custom-cart .cart_totals h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
}

.product-cart-section .cart-title,
.product-checkout-inner .checkout-title,
.woocommerce-billing-fields > h3,
.ev-order-review-title {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 22px;
}

.woocommerce-message,
.woocommerce-info {
  background: #dfe9dc;
  border: 0;
  border-radius: 8px;
  color: #111;
  padding: 18px 22px;
  margin-bottom: 22px;
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: #2dbd2d;
}

.woocommerce-cart-form table.shop_table,
.woocommerce table.shop_table {
  border: 0 !important;
  border-collapse: collapse;
  width: 100%;
}

.woocommerce table.shop_table thead th {
  font-size: 12px;
  font-weight: 700;
  color: #6a6a6a;
  text-transform: uppercase;
  border-bottom: 1px solid #bfbfbf !important;
  padding: 16px 18px;
  background: transparent;
}

.woocommerce table.shop_table tbody td {
  padding: 18px 18px;
  vertical-align: middle;
  border-top: 0 !important;
  border-bottom: 1px solid #ececec !important;
  background: #fff;
}

.woocommerce td.product-thumbnail {
  width: 110px;
}

.woocommerce td.product-thumbnail img {
  width: 75px;
  height: auto;
  display: block;
}

.woocommerce td.product-name a {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: #111;
  text-decoration: none;
}

.woocommerce td.product-price,
.woocommerce td.product-subtotal {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  white-space: nowrap;
}

.woocommerce .quantity .qty,
.woocommerce-cart-form .quantity select,
.woocommerce-cart-form .quantity input.qty {
  width: 56px;
  min-width: 56px;
  height: 34px;
  border: 1px solid #d6d6d6;
  border-radius: 6px;
  text-align: center;
  box-shadow: none;
  background: #fff;
  padding: 4px 8px;
}

.woocommerce a.remove {
  color: #222 !important;
  font-size: 22px;
  font-weight: 700;
  background: transparent !important;
  width: auto;
  height: auto;
  line-height: 1;
  border-radius: 0;
}

.woocommerce a.remove:hover {
  color: #000 !important;
  background: transparent !important;
}

.woocommerce-cart-form .actions {
  padding-top: 22px !important;
  padding-bottom: 28px !important;
  border-bottom: 0 !important;
  text-align: right;
}

.woocommerce-cart-form .actions .coupon {
  display: none !important;
}

.woocommerce-cart-form .actions > .button,
.woocommerce-cart-form .actions button,
.woocommerce-cart-form .actions .input-text {
  margin-left: 12px;
}

.woocommerce button[name="update_cart"],
.woocommerce .button[name="update_cart"] {
  background: #20c020 !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 10px !important;
  padding: 15px 24px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  box-shadow: none !important;
}

.woocommerce .ev-empty-cart,
.woocommerce-cart-form .actions .button.alt,
.woocommerce-cart-form .actions .checkout-button,
.woocommerce a.checkout-button {
  border-radius: 10px !important;
}

button[name="clear_cart"],
.ev-clear-cart-btn,
a.ev-clear-cart-btn {
  display: inline-block;
  background: #222 !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 10px !important;
  padding: 15px 24px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  text-decoration: none;
}

.product-checkout-inner {
  margin-top: 34px;
}

.woocommerce-form-login-toggle .woocommerce-info a,
.woocommerce-form-coupon-toggle .woocommerce-info a {
  color: #ff4b3e !important;
  text-decoration: underline;
}

.woocommerce-checkout .col2-set {
  flex: 0 0 calc(60% - 13px);
  max-width: calc(60% - 13px);
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  flex: 0 0 calc(40% - 13px);
  max-width: calc(40% - 13px);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  height: 40px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
  padding: 8px 12px;
}

.woocommerce form .form-row textarea {
  min-height: 110px;
  height: auto;
}

.woocommerce-checkout-review-order {
  background: #f3f4f7;
  border-radius: 10px;
  padding: 18px 18px 10px 18px;
}

.woocommerce-checkout-review-order table.shop_table {
  background: transparent !important;
  border: 0 !important;
}

.woocommerce-checkout-review-order table.shop_table th {
  background: transparent;
  border-bottom: 1px solid #d8dbe2 !important;
  font-size: 12px;
  color: #777;
  text-transform: uppercase;
}

.woocommerce-checkout-review-order table.shop_table td {
  background: transparent;
  border-bottom: 1px solid #dde1e7 !important;
}

.product-cart-section .cart-collaterals {
  display: none !important;
}

.single-product div.product {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.single-product div.product .woocommerce-product-gallery,
.single-product div.product .summary {
  width: 100%;
}

.single-product .woocommerce-product-gallery img {
  width: 100%;
  height: auto;
  display: block;
}

.single-product .product_title {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.single-product .price {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.single-product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.single-product form.cart .quantity {
  margin: 0 !important;
}

.single-product form.cart .single_add_to_cart_button {
  min-height: 46px;
  padding: 12px 22px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
}

.related.products ul.products li.product a img {
  width: 100%;
  max-width: 190px;
  height: 190px;
  object-fit: contain;
  display: block;
  margin: 0 auto 16px;
}

.rel-prev {
  left: 0;
}

.rel-next {
  right: 0;
}

.related.products .products {
  align-items: stretch;
}

.related.products ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.related.products ul.products li.product > a:first-of-type {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  text-decoration: none;
  margin-bottom: 30px;
}

.related.products ul.products li.product .onsale {
  top: 12px;
  left: 12px;
  right: auto;
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
  padding: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.related.products ul.products li.product .price del {
  display: block;
  font-size: 12px;
  color: #8a8a8a;
  opacity: 1;
  margin-bottom: 2px;
}

.related.products ul.products li.product .price ins {
  display: block;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  color: #111;
}

.related.products ul.products li.product .price > .amount:last-child,
.related.products ul.products li.product .price ins .amount {
  font-size: 18px;
  font-weight: 800;
  color: #111;
  margin-left: 10px;
}

.related.products ul.products li.product .product-card-meta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.related.products ul.products li.product .product-badges-row {
  min-height: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.related.products ul.products li.product .badge-transport,
.related.products ul.products li.product .badge-cadou {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
}

.related.products ul.products li.product .badge-stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.related.products ul.products li.product .button,
.related.products ul.products li.product .added_to_cart {
  width: 100%;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px !important;
  padding: 0 18px;
  margin-top: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-sizing: border-box;
}

/* Buton Add to cart - related products */

.related.products ul.products li.product .button,
.related.products ul.products li.product .added_to_cart {
  width: 70%;
  margin: 12px auto 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 0;
}

/* elimină eventualele reguli care îl fac 100% */

.related.products ul.products li.product a.button {
  max-width: 70%;
}

/* dacă tema adaugă line-height ciudat */

.related.products ul.products li.product .button span {
  text-align: center;
}

.related.products ul.products li.product a.button.add_to_cart_button,
.related.products ul.products li.product a.button.product_type_simple,
.related.products ul.products li.product a.button.ajax_add_to_cart {
  white-space: nowrap;
}

.related.products ul.products li.product a.button br {
  display: none !important;
}

.related.products ul.products li.product > * {
  flex-shrink: 0;
}

.programe .wp-block-button a {
  background-color: #1aba1a;
}

.titluri {
  background-color: #fff;
  border-radius: 14px;
  margin-top: 22px;
  margin-bottom: 11px;
}

.titluri .entry-title {
  margin: 10px auto;
}

.produse .titluri {
  margin-top: 0;
}

.tel-footer {
  color: #1aba1a;
  font-size: 24px;
  font-weight: 700;
}

#footer .social-media img {
  padding-right: 10px;
}

.widgettitle {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
  color: #000;
}

#footer .social-media {
  margin-top: 25px;
}

#menu-linkuri-utile li,
#menu-termeni-si-politici li {
  margin-bottom: 5px;
}

.politica-cookies .wp-block-columns,
.termeni-si-conditii .wp-block-columns,
.politica-de-livrare .wp-block-columns,
.politica-de-confidentialitate .wp-block-columns,
.politica-de-retur .wp-block-columns {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
}

.contact-info-card .info-value,
.contact-info-card .info-value a {
  font-size: 18px;
  font-weight: 500;
  color: #000 !important;
}

.contact-info-card .info-label {
  color: rgb(111 215 113);
  font-size: 24px;
  font-weight: 700;
}

.contact-info-card .info-label .dashicons {
  line-height: 2;
}

/* .shop_table .woocommerce-shipping-totals {
  display: flex;
  flex-direction: column;
}
.calculated_shipping .shop_table tbody {
display: block;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  text-align: left;
}
.woocommerce form .form-row label, .woocommerce-page form .form-row label {
    text-align: left;
}
 */

/* ===== SUMAR COMANDA - CART ===== */

.woocommerce .cart-collaterals .cart_totals {
  width: 100% !important;
  float: none !important;
}

/* ===== TABEL TOTALS ===== */

.woocommerce .cart_totals table.shop_table {
  display: table !important;
  width: 100% !important;
  table-layout: auto !important;
  border-collapse: collapse !important;
}

.woocommerce .cart_totals table.shop_table thead,
.woocommerce .cart_totals table.shop_table tbody,
.woocommerce .cart_totals table.shop_table tfoot {
  display: table-row-group !important;
}

.woocommerce .cart_totals table.shop_table tr,
.woocommerce .cart_totals table .woocommerce-shipping-totals {
  display: table-row !important;
}

.woocommerce .cart_totals table.shop_table th,
.woocommerce .cart_totals table.shop_table td {
  display: table-cell !important;
  vertical-align: top !important;
  padding: 12px 8px !important;
  word-wrap: break-word !important;
  white-space: normal !important;
}

.woocommerce .cart_totals table.shop_table th {
  width: 30% !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

.woocommerce .cart_totals table.shop_table td {
  width: 70% !important;
  text-align: left !important;
}

/* ===== SHIPPING CALCULATOR FORM ===== */

/* Toggle nativ WooCommerce - nu forta display */

.woocommerce .shipping-calculator-form[style*="display: block"],
.woocommerce .shipping-calculator-form[style*="display:block"] {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  width: 100% !important;
  margin-top: 12px !important;
}

.woocommerce .shipping-calculator-form p {
  margin: 0 !important;
  width: 100% !important;
}

/* Labels */

.woocommerce .shipping-calculator-form label {
  display: block !important;
  text-align: left !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  margin-bottom: 6px !important;
  white-space: normal !important;
}

/* Inputs */

.woocommerce .shipping-calculator-form input[type="text"],
.woocommerce .shipping-calculator-form select {
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 10px 12px !important;
  border: 1.5px solid #ddd !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  text-align: left !important;
}

/* Select2 */

.woocommerce .shipping-calculator-form .select2-container,
.woocommerce .shipping-calculator-form .select2-container--default {
  width: 100% !important;
  box-sizing: border-box !important;
}

.woocommerce .shipping-calculator-form .select2-selection--single {
  height: 44px !important;
  border: 1.5px solid #ddd !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 12px !important;
  box-sizing: border-box !important;
}

.woocommerce .shipping-calculator-form .select2-selection__rendered {
  line-height: normal !important;
  padding: 0 !important;
  text-align: left !important;
}

.woocommerce .shipping-calculator-form .select2-selection__arrow {
  top: 50% !important;
  transform: translateY(-50%) !important;
  right: 8px !important;
}

/* Forteaza shipping td sa nu limiteze latimea formularului */

.woocommerce .cart_totals table .woocommerce-shipping-totals td {
  width: auto !important;
  max-width: none !important;
  padding-right: 0 !important;
}

.woocommerce .cart_totals table .woocommerce-shipping-totals td > * {
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Shipping calculator span/p full width */

.woocommerce .cart_totals .shipping-calculator-form,
.woocommerce .cart_totals .shipping-calculator-form p,
.woocommerce .cart_totals .shipping-calculator-form .form-row {
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Override table-layout care limiteaza */

.woocommerce .cart_totals table.shop_table {
  table-layout: auto !important;
}

.woocommerce .cart_totals table.shop_table th {
  width: 1% !important;
  white-space: nowrap !important;
}

.woocommerce .cart_totals table.shop_table td {
  width: 99% !important;
}

#post-24 .wp-block-group__inner-container {
  background: #ffffff00 !important;
}

.full-width-shipping-row th {
  display: none !important;
}

.full-width-shipping-row td {
  width: 100% !important;
  display: block !important;
  padding: 15px 0 !important;
}

.custom-shipping-label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}

.custom-shipping-container .shipping-calculator-form,
.custom-shipping-container .select2-container,
.custom-shipping-container input[type="text"],
.custom-shipping-container button {
  width: 100% !important;
  display: block !important;
  box-sizing: border-box !important;
}

/* =========================================================
   MEDIA QUERIES
   ========================================================= */

/* =========================================================
   MEDIA QUERIES
   each breakpoint appears only once
   ========================================================= */

@media (max-width: 1199px) {
  .related.products ul.products li.product {
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
    width: calc(25% - 15px);
  }
}

@media (max-width: 600px) {
  .gallery img {
    height: 180px;
  }
  .port-left,
  .port-right,
  .sol-left,
  .sol-right,
  .proj {
    width: 100%;
  }
  .values-title {
    font-size: 1.7rem;
  }
  .value-card {
    padding: 24px;
  }
  .section-card {
    padding: 25px;
  }
  .about-wrapper img {
    width: 100%;
  }
  .hero h1 {
    font-size: 36px;
  }
  .categories-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .category-col {
    margin-bottom: 20px;
  }
  .services-section .card {
    width: 100%;
  }
  .top-info {
    grid-template-columns: 1fr;
  }
  .product-grid-panel {
    grid-template-columns: repeat(2, 1fr);
  }
  .program-card {
    flex: 0 0 calc(100% - 15px);
  }
}

@media (max-width: 900px) {
  .contact-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .contact-card {
    padding: 28px;
  }
  .page-title {
    font-size: 2rem;
  }
  .woocommerce-page .woocommerce ul.products li.product {
    flex: 0 0 calc((100% - 5px) / 2);
  }
  .woocommerce-page .woocommerce-result-count,
  .woocommerce-page .woocommerce-ordering {
    float: none;
    display: block;
    margin-bottom: 8px;
  }
  .woocommerce-page .woocommerce-ordering select.orderby {
    width: 100%;
  }
  .woocommerce-page .woocommerce-pagination .page-numbers {
    padding: 6px;
    gap: 4px;
  }
  .woocommerce-page .woocommerce-pagination .page-numbers a,
  .woocommerce-page .woocommerce-pagination .page-numbers span {
    min-width: 30px;
    height: 30px;
    font-size: 12px;
    border-radius: 8px;
  }
  .woocommerce-page .woocommerce-ordering:after {
    top: initial;
    bottom: 10px;
  }
  .dali-carousel .owl-nav button {
    width: 40px;
  }
  .dali-carousel .owl-nav button.owl-next {
    right: 0;
  }
  .dali-carousel .owl-nav button.owl-prev {
    left: 0;
  }
  .navbar-collapse {
    width: 85%;
    overflow: auto;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 9px;
    box-shadow:
      0 16px 34px rgba(0, 0, 0, 0.14),
      0 5px 10px rgba(0, 0, 0, 0.08);
    padding: 8px;
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
    animation: mobileMenuPop 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .navbar-collapse > .navbar-nav.me-auto {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 0 8px 0;
    padding: 0;
    width: 100%;
  }
  .navbar-collapse > .navbar-nav.me-auto .nav-link {
    display: flex;
    align-items: center;
    padding: 9px 10px;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
    color: #111827;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 7px;
    transition:
      background-color 0.18s ease,
      transform 0.12s ease;
  }
  .navbar-collapse > .navbar-nav.me-auto .nav-link:hover {
    background-color: #eef2ff;
    transform: translateX(2px);
  }
  .navbar-collapse .current-menu-item > .nav-link,
  .navbar-collapse .nav-link.active {
    background-color: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
  }
  .navbar-collapse .navbar-nav.ms-auto {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px;
    justify-content: space-between;
    padding: 8px;
    margin: 0;
    background-color: #f3f4f6;
    border-radius: 7px;
    width: 100%;
  }
  .navbar-collapse .navbar-nav.ms-auto > .nav-item {
    flex: 1 1 0;
    width: auto !important;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 7px;
    display: flex;
    justify-content: center;
  }
  .navbar-collapse .navbar-nav.ms-auto > .nav-item > .nav-link {
    display: flex;
    justify-content: center;
  }
  .navbar-collapse > .navbar-nav.ms-auto .nav-link {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 0;
    color: #1f2937;
    position: relative;
  }
  .navbar-collapse > .navbar-nav.ms-auto .nav-link i {
    font-size: 18px !important;
    line-height: 1;
  }
  .navbar-collapse .nav-item.position-relative .badge {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0 !important;
    left: 30px !important;
    transform: none !important;
    font-size: 10px;
    font-weight: 700;
    padding: 0;
    border-radius: 50% !important;
    background-color: #1aba1a !important;
  }
  #menu-main-menu li {
    padding: 0 8px;
  }
  @keyframes mobileMenuPop {
    from {
      opacity: 0;
      transform: translateX(-50%) translateY(-10px) scale(0.97);
    }
    to {
      opacity: 1;
      transform: translateX(-50%) translateY(0) scale(1);
    }
  }
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }
  .contact-two-column {
    flex-direction: column;
    margin: 30px 0;
  }
  .contact-two-column .contact-left {
    order: 0;
  }
  .contact-two-column .contact-right {
    order: 1;
  }
  .info-value {
    font-size: 14px;
  }
  .product-checkout-section .woocommerce-checkout {
    flex-direction: column !important;
  }
  .product-checkout-section #customer_details,
  .product-checkout-section #order_review {
    flex: 1 1 100% !important;
  }
  .product-checkout-section .woocommerce {
    padding: 20px !important;
  }
}

@media (max-width: 480px) {
  #energy-calculator {
    padding: 20px 18px;
  }
  #energy-calculator button {
    padding: 12px;
  }
}

@media (min-width: 1024px) {
  .woocommerce-page #widget-area.widget-area {
    position: sticky;
    top: 12px;
  }
}

@media (min-width: 980px) {
  .woocommerce-account .woocommerce-Addresses {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .woocommerce-page .woocommerce ul.products li.product {
    flex: 0 0 calc((100% - 10px) / 3);
  }
}

@media (max-width: 992px) {
  .mobile-filters-toggle {
    display: inline-flex;
  }
  #widget-area .widget-woof {
    position: fixed;
    top: 0;
    left: 0;
    width: min(86vw, 360px);
    height: 100vh;
    overflow: auto;
    z-index: 9999;
    background: #fff;
    border-right: 1px solid #e5e7eb;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    transform: translateX(-105%);
    transition: transform 0.28s ease;
    will-change: transform;
    padding: 12px;
  }
  body.filters-open #widget-area .widget-woof {
    transform: translateX(0);
  }
  body.filters-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9998;
  }
  body.filters-open {
    overflow: hidden;
  }
  .woocommerce .single-product .woocommerce div.product,
  .woocommerce .single-product div.product {
    grid-template-columns: 1fr;
    grid-template-areas: "gallery" "summary" "tabs";
    padding: 12px;
    gap: 14px;
  }
  .woocommerce .single-product div.product .woocommerce-tabs {
    margin: 20px 0 0;
  }
  .woocommerce-checkout .wc-block-components-main,
  .woocommerce-checkout .wc-block-components-sidebar {
    padding: 12px;
  }
  .woocommerce-checkout
    .wc-block-components-sidebar-layout
    .wc-block-components-main {
    width: 100%;
  }
  .woocommerce-checkout .wc-block-components-sidebar {
    display: none;
  }
  .woocommerce-MyAccount-navigation {
    width: 100%;
  }
  .woocommerce-account .woocommerce {
    flex-direction: column;
  }
}

@media (max-width: 500px) {
  #n2-ss-2,
  #n2-ss-2-align,
  #n2-ss-2 .n2-ss-slider-wrapper-inside,
  #n2-ss-2 .n2-ss-slider-1,
  #n2-ss-2 .n2-ss-slider-2,
  #n2-ss-2 .n2-ss-slide,
  #n2-ss-2 .n2-ss-layers-container {
    height: 200px !important;
    max-height: 200px !important;
    overflow: hidden !important;
  }
  #n2-ss-2 p {
    font-size: 9px !important;
    line-height: 1.2 !important;
  }
  .home-box {
    width: 100%;
    margin: 0 0 15px 0;
  }
  .home-box-text {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .carousel-title {
    background-size: contain;
    font-size: 14px;
  }
  #footer .wp-block-columns {
    display: flex;
    justify-content: space-between;
    gap: 0;
  }
  #footer .wp-block-column {
    width: 100%;
    flex-basis: initial !important;
    flex-grow: unset;
  }
  #footer .wp-block-column:first-child {
    order: 0;
  }
  #footer .wp-block-column:first-child figure {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #footer .wp-block-column:first-child img {
    width: 50px;
    margin: auto;
  }
  #footer .wp-block-column:last-child {
    display: flex;
    justify-content: center;
    font-size: 10px;
    line-height: 12px;
    margin: 0 0 25px 0;
    order: 1;
  }
  #footer .wp-block-column:last-child ul {
    margin: 0 15px 0 0;
  }
  #footer .wp-block-column:nth-child(2),
  #footer .wp-block-column:nth-child(3) {
    width: calc(100% / 2 - 10px);
    order: 3;
    margin: 0 auto;
  }
  #footer .wp-block-column:nth-child(2) h2,
  #footer .wp-block-column:nth-child(3) h2 {
    font-size: 16px;
  }
  #footer .wp-block-column:nth-child(2) ul li a,
  #footer .wp-block-column:nth-child(3) ul li a {
    font-size: 12px;
  }
  #footer .footer-copyright p {
    margin: 0;
    font-size: 12px;
  }
  .section-card {
    flex-direction: column;
  }
  .section-card-right {
    height: 200px;
    overflow: hidden;
  }
  .section-card-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 1000px) {
  .layout {
    flex-direction: column;
  }
  .sidebar,
  .right {
    width: 100%;
  }
  .small-row {
    flex-direction: column;
  }
  .right-promo {
    width: 100%;
  }
  .brands,
  .feature {
    width: 100% !important;
  }
  .main-panel-columns {
    display: flex !important;
    flex-direction: column;
  }
  .section-body {
    flex-direction: column;
  }
  .sidebar-cards {
    width: 100% !important;
  }
  .top-categorii {
    display: grid !important;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .searchbar-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .search-right {
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .woocommerce-checkout {
    display: block;
  }
  .woocommerce-checkout .col2-set,
  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review {
    max-width: 100%;
    width: 100%;
  }
  .related-slider-wrap {
    padding: 0 42px;
  }
  .related.products ul.products li.product {
    flex: 0 0 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
    width: calc(33.333% - 14px);
    padding: 16px 14px 18px;
    border-radius: 16px;
  }
  .searchbar-inner {
    flex-direction: column;
  }
  .related.products ul.products li.product a img {
    max-width: 160px;
    height: 160px;
  }
  .related.products ul.products li.product .woocommerce-loop-product__title {
    font-size: 16px;
    min-height: 66px;
  }
  .related.products ul.products li.product .price ins,
  .related.products ul.products li.product .price > .amount:last-child,
  .related.products ul.products li.product .price ins .amount {
    font-size: 24px;
  }
  .tel-footer {
    font-size: 14px;
  }
  #footer .wp-block-columns {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .produs-informatie {
    display: flex;
  }
  .produs-informatie .imagini1 {
    margin-right: 10px;
  }
  .related.products ul.products li.product .price {
    flex-direction: column;
    text-align: center;
    margin: auto 0 0;
  }
  .woocommerce td.product-name a {
    font-size: 12px;
  }
  .related ul.products li.product {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .related ul.products li.product .woocommerce-loop-product__link {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .related ul.products li.product .add_to_cart_button,
  .related ul.products li.product a.button {
    margin-top: auto;
  }
}

@media (min-width: 992px) {
  .single-product div.product .woocommerce-product-gallery {
    width: calc(50% - 15px);
  }
  .single-product div.product .summary {
    width: calc(50% - 15px);
  }
}

@media (max-width: 767px) {
  .single-product .product_title {
    font-size: 24px;
  }
  .single-product .price {
    font-size: 20px;
  }
  .woocommerce div.product .woocommerce-tabs ul.tabs li {
    width: 100%;
  }
  .related-header h2 {
    font-size: 22px;
  }
  .related.products ul.products {
    gap: 14px;
  }
  .related.products ul.products li.product {
    flex: 0 0 calc(50% - 7px);
    max-width: calc(50% - 7px);
    width: calc(50% - 7px);
  }
  .rel-prev,
  .rel-next {
    width: 32px;
    height: 32px;
    top: 32%;
  }
  .related.products ul.products li.product a img {
    max-width: 140px;
    height: 140px;
  }
  .related.products ul.products li.product .woocommerce-loop-product__title {
    min-height: auto;
    -webkit-line-clamp: 2;
  }
  .related.products ul.products li.product .price {
    min-height: auto;
  }
  .related.products ul.products li.product .button,
  .related.products ul.products li.product .added_to_cart {
    min-height: 44px;
    font-size: 15px;
  }
  .produs-informatie {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .single-product form.cart {
    display: block;
  }
  .single-product form.cart .quantity {
    margin-bottom: 12px !important;
  }
  .single-product form.cart .single_add_to_cart_button {
    width: 100%;
  }
  .related-slider-wrap {
    padding: 0 36px;
  }
  .related.products ul.products li.product {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    padding: 14px 12px 16px;
  }
  .related.products ul.products li.product .woocommerce-loop-product__title {
    min-height: auto;
  }
  .related-header {
    align-items: flex-start;
  }
  .related-header h2 {
    font-size: 22px;
  }
  .related.products ul.products li.product a img {
    max-width: 130px;
    height: 130px;
  }
}

@media (max-width: 400px) {
  body.single-product .related ul.products li.product {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 20px 0 !important;
    padding: 0 10px !important;
    box-sizing: border-box;
  }
  body.single-product .related ul.products li.product img {
    width: 100%;
    height: auto;
  }
  body.single-product .related ul.products li.product .button {
    width: 100%;
  }
}
