:root {
	/* --- ECOLOGICAL PALETTE UPDATE --- */
	/* Primary Green (Main buttons, links) */
	--eco-primary: #43a047; 
	/* Dark Green (Hover states, Header top) */
	--eco-dark: #2e7d32;
	/* Deep Organic (Text replacement for pure black) */
	--eco-black: #1b1b1b;
	/* Light Green (Background accents) */
	--eco-light: #e8f5e9;
	/* Alert/Stock Colors */
	--status-green: #4caf50;
	--status-red: #e53935;
	--input-border-color:#e0e0e0;
	--input-focus-border: #43a047;
	--link-color: #2e7d32;
	--link-color-hover: #1b5e20;
	--breadcrumb-background:#f1f8e9; /* Light mint tint */
	--breadcrumb-color:#689f38;
	--breadcrumb-active-color:#1b1b1b;
	/* Buttons */
	--button-primary-color: #43a047;
	--button-primary-color-hover: #2e7d32;
	--button-primary-color-text: #FFF;
	--button-secondary-color: #f1f8e9;
	--button-secondary-color-hover: #c8e6c9;
	--button-secondary-color-text: #1b5e20;
	/* Header */
	--header-top-background: #1b4d3e; /* Deep Forest Green */
	--header-top-link-color: #a5d6a7;
	--header-top-link-hover-color: #FFF;
	--header-top-language-active-color: #FFF;
	--header-catalog-button-color: #43a047;
	--header-catalog-button-color-text: #FFF;
	--header-schedule-color: #558b2f;
	--header-counter-background: #c62828; /* Red for notifications stands out nicely on green */
	--header-counter-color: #FFF;
	--header-horizontal-menu-border-color: #e8f5e9;
	--header-horizontal-menu-background: #FFF;
	--header-horizontal-menu-link-color: #1b1b1b;
	/* Footer */
	--footer-link-color: #546e7a;
	--footer-link-color-hover: #43a047;
	--footer-text-color: #1b1b1b;
	--footer-copyright-color: #797b7e;
	--footer-developer-color: #999;
	--footer-border-color: #e8f5e9;
	/* Product Buttons */
	--product-buy-button-color: #43a047;
	--product-buy-button-color-hover: #2e7d32;
	--product-buy-button-color-text: #FFF;
	--product-fast-order-button-color: #1b1b1b;
	--product-fast-order-button-color-hover: #333;
	--product-fast-order-button-color-text: #FFF;
	--filter-button-color: #43a047;
	--filter-button-color-hover: #2e7d32;
	--filter-button-color-text: #FFF;
	--instock-status-color: #43a047;
	--outstock-status-color: #e53935;
	/* Main Variables */
	--advantage-icon-color: #2e7d32;
	--advantage-text-color: #546e7a;
	--category-thumb-color: #1b1b1b;
	--product-report-avail-button-background-color: #f1f8e9;
	--product-report-avail-button-background-color-hover: #2e7d32;
	--product-report-avail-button-color: #558b2f;
	--product-report-avail-button-color-hover: #FFF;
	--product-thumb-name-color: #1b1b1b;
	--product-thumb-price-color: #2e7d32; /* Green Price */
	--product-thumb-old-price-color: #90a4ae;
	--product-thumb-background-color: #FFF;
	--product-thumb-border-color: #e8f5e9;
}

/* --- ДОПОЛНИТЕЛЬНЫЕ СТИЛИ: ВЫДЕЛЕНИЕ АКТИВНОЙ КАТЕГОРИИ --- */
header .horizontal-menu li a.active {
  color: var(--eco-primary) !important;
  font-weight: 600;
  border-bottom: 2px solid var(--eco-primary);
  padding-bottom: 5px;
}
header .horizontal-menu li .child1 a.active {
  background-color: var(--eco-light) !important;
  color: var(--eco-dark) !important;
  font-weight: 600;
  border-left: 3px solid var(--eco-primary);
  padding-left: 12px;
}
.category-filter .list-group-item.active {
  background-color: var(--eco-light) !important;
  border-left: 3px solid var(--eco-primary) !important;
  color: var(--eco-dark) !important;
  font-weight: 600;
  padding-left: 12px;
}
.breadcrumb li span {
  color: var(--breadcrumb-active-color);
  font-weight: 600;
}

/* --- ДОПОЛНИТЕЛЬНЫЕ СТИЛИ: АНИМАЦИЯ ТЕЛЕФОНА --- */
header .contact .tel .other-tel {
  display: none;
  position: absolute;
  z-index: 2;
  top: -10px;
  left: -20px;
  padding: 10px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  background: #FFF;
  width: calc(100% + 20px);
  border-radius: 8px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
}
header .contact .tel:hover .other-tel {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
header .contact .tel a svg {
  margin-top: -3px;
  stroke: var(--eco-primary);
  transition: transform 0.2s ease;
}
header .contact .tel:hover a svg {
  transform: scale(1.1);
}

/* --- ДОПОЛНИТЕЛЬНЫЕ СТИЛИ: ПУЛЬСАЦИЯ/ПРЫЖОК КНОПОК --- */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
@keyframes jump {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

/* Кнопка "Купить" — пульсация */
.product-thumb .button-group button:first-child,
.product-buy-button-color {
  background-color: var(--product-buy-button-color);
  color: var(--product-buy-button-color-text);
  width: 60%;
  transition: all 0.3s ease;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
}
.product-thumb .button-group button:first-child:hover,
.product-buy-button-color:hover {
  background-color: var(--product-buy-button-color-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(67, 160, 71, 0.3);
  animation: none;
}

/* Кнопка "Быстрый заказ" — прыжок */
.product-fast-order-button-color {
  background: var(--product-fast-order-button-color);
  color: var(--product-fast-order-button-color-text);
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
  animation: jump 3s infinite;
}
.product-fast-order-button-color:hover {
  background: var(--product-fast-order-button-color-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: none;
}

/* === ДАЛЕЕ — ВАШ ИСХОДНЫЙ CSS (без изменений) === */

/* Global Selection Color - Makes highlighting text look eco-friendly */
::selection {
  background: #c8e6c9;
  color: #1b5e20;
}
/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
  background: #81c784; 
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #43a047; 
}
/* footer.css */
footer {
  margin-top:30px;
  border-top: 1px solid var(--footer-border-color);
  background: #f9fbf9; /* Very subtle green tint for footer bg */
}
footer h2 {
  margin-bottom: 0 !important;
  color: #2e7d32; /* Headings in footer green */
}
footer .link-list a {
  line-height: 1.7;
  text-decoration: none;
  color: var(--footer-link-color);
  transition: all 0.3s ease;
}
footer .link-list a:hover, footer.footer3 .link-list a.active {
  color: var(--footer-link-color-hover);
  padding-left: 5px; /* Slight movement on hover */
}
footer .footer-bottom {
  border-top: 1px solid var(--footer-border-color);
  padding-top: 10px;
  padding-bottom: 10px;
}
footer .contact-list li+li {
  margin-top: 16px;
}
footer .contact-list li a {
  font-weight: 500;
}
footer .schedule {
  color: var(--footer-link-color);
  font-size: 12px !important;
}
footer .footer-copyright {
  color:var(--footer-copyright-color);
  font-size:12px;
}
footer .footer-developer, footer .footer-developer a {
  color:var(--footer-developer-color);
  font-size:12px;
}
/* header.css */
@media (max-width: 767.98px) {
  header {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  header .header-middle {
    border-bottom: 1px solid #e8f5e9;
    margin-bottom: 20px;
    padding: 10px 0 !important;
  }
}
header .header-top {
  font-size:14px;
  padding:5px 0;
  background-color:var(--header-top-background);
}
header .header-top li:not(:last-child) {
  margin-right:35px;
}
header .header-top li a {
  padding-right:5px;
  color: var(--header-top-link-color);
  font-weight: 500;
  transition: color 0.3s ease;
}
header .header-top li a:hover {
  color: var(--header-top-link-hover-color);
}
header .header-top .language-active {
  color: var(--header-top-language-active-color);
  font-weight: 600;
  border-bottom: 1px solid #fff;
}
header .header-middle {
  background: #FFF;
  padding: 20px 0;
}
header .header-middle .header-logo {
  background: #FFF;
}
header .header-middle .header-sitename {
  font-size: 32px;
  color: var(--eco-black);
  font-weight:600;
}
/* Updated Catalog Button to look more organic */
header .header-middle .header-catalog-button {
  background: var(--header-catalog-button-color) !important;
  border-color: var(--header-catalog-button-color) !important;
  color: var(--header-catalog-button-color-text) !important;
  border-radius: 8px !important; /* Soften corners */
  box-shadow: 0 4px 6px rgba(67, 160, 71, 0.2); /* Soft green shadow */
}
header .header-middle .header-catalog-button:hover {
  background: var(--eco-dark) !important;
  border-color: var(--eco-dark) !important;
  box-shadow: 0 6px 12px rgba(67, 160, 71, 0.3);
  transform: translateY(-1px);
}
header .header-middle .header-catalog-button svg path {
  fill: var(--header-catalog-button-color-text) !important;
}
header .contact .tel {
  position: relative;
}
header .contact .tel a {
  font-weight:600;
  font-size:20px;
  color: var(--eco-black);
}
header .contact .tel a svg {
  margin-top:-3px;
  stroke: var(--eco-primary); /* Green phone icon */
}
header .contact .tel .other-tel {
  z-index:2;
  top:-10px;
  left:-20px;
  padding:10px 20px;
  display:none;
  position: absolute;
  box-shadow: 0 5px 20px rgba(0,0,0,.1);
  background: #FFF;
  width:calc(100% + 20px);
  border-radius: 8px;
}
header .contact .tel:hover .other-tel {
  display:block;
}
header .contact .tel .other-tel li:not(:first-child) a {
  font-weight:600;
  font-size:16px;
  color: var(--eco-black);
}
header .contact .tel .other-tel li.schedule  {
  margin-top:10px;
}
header .contact .tel .other-tel li a.order-call {
  margin-top:10px;
  font-size:13px !important;
  width:100% !important;
  color: var(--eco-primary) !important;
}
header .contact .schedule {
  color: var(--header-schedule-color);
}
header .cart-menu li {
  margin-left:20px;
}
header .cart-menu li:not(:last-child) {
  margin-right: 0 !important;
}
header .cart-menu .cart-icon, header .cart-menu .wishlist-icon {
  position: relative;
}
header .cart-menu .cart-icon .header-count, header .cart-menu .wishlist-icon .header-count {
  position: absolute;
  top: -20%;
  right: -30%;
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  background-color: var(--header-counter-background);
  color: var(--header-counter-color);
  font-size: 0.6rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: normal;
  line-height: 1rem;
}
.bottom-mobile-menu .cart-icon, .bottom-mobile-menu .wishlist-icon {
  position: relative;
}
.bottom-mobile-menu .cart-icon .header-count, .bottom-mobile-menu .wishlist-icon .header-count {
  position: absolute;
  margin-top: -4px;
  margin-left: -8px;
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  background-color: var(--header-counter-background);
  color: var(--header-counter-color);
  font-size: 0.6rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: normal;
  line-height: 1rem;
}
header .search-block {
  position: relative;
  width:100%;
}
header .search-block input {
  border-radius: 8px !important;
  border: 1px solid var(--input-border-color) !important;
}
header .search-block .search-list {
  z-index:2;
  position:absolute;
  width:100%;
  background: #FFF;
  border:1px solid #f1f1f1;
  border-top:0;
  display:none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
header .search-block .search-result {
  padding:0px 10px;
}
header .search-block .search-result .search-item {
  border-bottom: 1px solid #f1f1f1;
  padding:10px 0px;
}
header .search-block .search-result .search-item:last-child {
  border-bottom: none;
}
header .search-block .search-result .search-item .product-name {
  font-weight: 600;
  font-size:13px;
  color:#333;
}
header .search-block .search-result .search-item .product-price {
  color: var(--eco-primary);
  font-size: 13px;
  font-weight: 600;
}
header .search-block .search-result .search-item .old-product-price {
  color: #999;
  line-height: 1.3;
  font-size: 11px;
}
header .search-block .search-other a {
  color:#999 !important;
  font-size: 13px;
}
header .search-block .search-other a:hover {
  color: var(--eco-primary) !important;
}
header .horizontal-menu {
  border-top:1px solid var(--header-horizontal-menu-border-color);
  background-color:var(--header-horizontal-menu-background);
}
header .horizontal-menu ul {
  padding:0;
  margin:0;
}
header .horizontal-menu li {
  position: relative;
  margin-right:30px !important;
  cursor: pointer;
}
header .horizontal-menu li:last-child {
  margin-right:0px !important;
}
header .horizontal-menu a {
  font-weight: 500;
  padding:15px 5px 15px;
  color:var(--header-horizontal-menu-link-color);
  font-size: 15px;
  transition: color 0.3s;
}
header .horizontal-menu a:first-child {
  padding-left:0;
}
header .horizontal-menu a:hover {
  padding-right:5px;
  color: var(--eco-primary); /* Green hover on menu */
  font-size: 15px;
}
header .horizontal-menu li .child1 {
  display:none;
  position: absolute;
  z-index:3;
  background:#FFF;
  padding-top: 5px;
  padding-bottom: 5px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  width: 270px;
  overflow-y: visible;
  margin-left: -20px;
  border-top: 2px solid var(--eco-primary); /* Green accent top border */
  border-radius: 0 0 8px 8px;
}
header .horizontal-menu li.menu-children-left {
  position: relative;
}
header .horizontal-menu li.menu-children-left .child1 {
  left: auto;
  right: -1px;
}
header .horizontal-menu li .child1 li {
  position: relative;
  margin-right:0 !important;
  padding-left:5px;
}
header .horizontal-menu li .child1 li .arrow {
  position: absolute;
  right: 15px;
  top:15px;
  transform: rotate(-90deg);
  transition: .2s;
}
header .horizontal-menu li.menu-children-left .child1 li .arrow {
  position: absolute;
  left: 15px;
  top:15px;
  transform: rotate(90deg);
  transition: .2s;
}
header .horizontal-menu li .child1 li .arrow path {
  fill: #999;
}
header .horizontal-menu li .child1 a {
  display: block;
  padding: 6px 15px 6px 15px;
  font-weight: 500;
  font-size: 14px;
  color: var(--header-horizontal-menu-link-color) !important;
  line-height: 1.8129;
}
header .horizontal-menu li .child1 a:hover {
    color: var(--eco-primary) !important;
    background-color: #f9fbf9;
}
header .horizontal-menu li:hover .child1, .child:hover {
  display:block;
}
header .horizontal-menu li .child2 {
  display:none;
  position: absolute;
  z-index:2;
  background:#fff;
  padding-top: 0px;
  padding-bottom: 5px;
  box-shadow: 0 6px 10px #b5b9bd24;
  width: 270px;
  overflow-y: visible;
  left: 100%;
  top:0;
  border-left:1px solid #f1f1f1;
}
header .horizontal-menu li.menu-children-left .child2 {
  left: -100%;
  top:0;
  border-left:0;
  border-right:1px solid #f1f1f1;
}
header .horizontal-menu .child1 li:hover .child2, .child1:hover {
  display:block;
}
header .header-catalog-menu {
  position: absolute;
  z-index: 999;
  margin: -10px -10px;
  padding: 10px 10px;
  display: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  background: #FFF;
  float: left;
  border-radius: 8px;
}
header .header-catalog-menu ul {
  margin: 0;
}
header .header-catalog-menu li {
  width: 270px !important;
  padding: 5px 10px;
  border-radius: 5px;
  position: relative;
}
header .header-catalog-menu li .arrow {
  transform: rotate(-90deg);
  margin-top:7px;
  position: absolute;
  right:10px;
}
header .header-catalog-menu li:hover {
  background: var(--eco-light); /* Light green hover bg */
}
header .header-catalog-menu li a {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}
header .header-catalog-menu li:hover a {
  color: var(--eco-dark);
}
header .header-catalog-menu-children1 {
  position: absolute;
  float: left;
  z-index: 998;
  width: 260px;
  left: 280px;
  height: 100%;
  display: none;
}
header .header-catalog-menu-children2 {
  position: absolute;
  float: left;
  z-index: 999;
  width: 260px;
  left: 560px;
  height: 100%;
  display: none;
}
.list-full-width .child1, .list-full-width .child2 {
  text-align: left;
  text-align-last: left;
}
@media (min-width: 768px) {
  header .static-header {
    background: #FFF;
    display: none;
    border-bottom: 1px solid #f1f1f1;
  }
  header .static-header .header-middle {
    background: #FFF;
    padding: 5px 0 !important;
  }
  header .static-header .header-middle .header-logo {
    padding: 5px 0 !important;
  }
}
  .bottom-mobile-menu {
    position:fixed;
    bottom: 0;
    z-index: 9999;
    width: 100%;
    border-top: 1px solid #f1f1f1;
    background: #FFF;
  }
  .bottom-mobile-menu-item {
    padding: 10px 0;
    min-width: 20%;
    text-align: center;
    float: left;
    border-left: 1px solid #f1f1f1;
  }
  .bottom-mobile-menu-item:first-child {
    border-left: 0;
  }
  .bottom-mobile-menu-item .item-title {
    margin-top: 5px;
    font-size: 10px;
    font-weight: 600;
    color: #000;
  }
  #headerMobileMenu .mobile-language {
    margin: 0;
    padding: 0;
  }
  #headerMobileMenu .mobile-language li {
    padding: 0;
    color: #999;
    font-size: 12px;
  }
  #headerMobileMenu .cabinet-block {
    border-top: 1px solid #f1f1f1;
    padding: 10px 15px;
  }
  #headerMobileMenu .cabinet-block .btn-login {
    text-align: left !important;
  }
   #headerMobileMenu .cabinet-block .btn-login svg {
    height: 18px;
  }
  #headerMobileMenu .cabinet-block .btn-login svg path {
    fill: #FFF;
  }
  #headerMobileMenu .cabinet-block p {
    font-size: 13px;
  }
  #headerMobileMenu .contact-block {
    bottom: 65px;
    height:50px;
    width:100%;
    position: absolute;
    z-index: 9999999;
    background-color: var(--header-counter-background);
    color: var(--header-counter-color);
    padding:15px 15px;
    border-top: 1px solid #f1f1f1;
  }
  #headerMobileMenu .contact-block span {
    font-weight: 600;
    font-size: 13px;
  }
  #headerMobileMenu .contact-block span.telephone {
    font-weight: 600;
    font-size: 14px;
  }
.offcanvas-header-menu.offcanvas-bottom {
  height: 100% !important;
  padding-bottom: 60px;
}
.offcanvas-header-menu .offcanvas-header img {
  width:30% !important;
}
.offcanvas-header-menu ul {
  border-left:0 !important;
  border-right:0 !important;
}
.offcanvas-header-menu ul li {
  font-size:16px;
  font-weight: 600;
  padding:15px;
}
.offcanvas-header-menu ul li a {
  color: #000 !important;
}
.offcanvas-header-menu ul li .next-level {
  position:absolute;
  top:3px;
  right:15px;
}
.offcanvas-header-menu ul li .next-level svg {
  margin-top:-3px;
  stroke:#000;
  transform: rotate(-90deg);
}
/* main.css */
:root {
  --size-1: 10px;
  --size-2: 20px;
  --size-3: 30px;
  --size-4: 40px;
  --size-5: 50px;
  --size-6: 60px;
  --size-7: 70px;
  --size-8: 80px;
}
body {
  font-weight: 400;
  font-size: calc(12px + (14 - 12) * ((100vw - 400px) / 1240));
  line-height: 1.5;
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--eco-black);
}
@media (min-width: 992px) {
  .col-lg-2-4 {
    flex: 0 0 auto;
    width:20%
  }
}
@media (min-width: 1200px) {
  .col-xl-2-4 {
    flex: 0 0 auto;
    width:20%
  }
}
textarea:hover, 
input:hover, 
textarea:active, 
input:active, 
textarea:focus, 
input:focus,
button:focus,
button:active,
button:hover,
label:focus,
.btn:active,
.btn.active
{
    outline:none;
    box-shadow: none !important;
}
button:active {
  outline: none;
  border: none;
}
button:focus {
  outline:0;
}
label {
  font-size: 12px !important;
}
label.control-label {
  font-weight: 600;
}
/* Beautiful Inputs */
input, textarea, select, .form-select {
  padding: .7rem 1rem !important;
  border:1px solid var(--input-border-color) !important;
  font-size: 14px !important;
  border-radius: 6px !important;
  transition: all 0.3s ease;
}
input:focus, textarea:focus, select:focus, .form-select:focus {
    border-color: var(--input-focus-border) !important;
    box-shadow: 0 0 0 3px rgba(67, 160, 71, 0.1) !important;
}
table.border {
  border: 1px solid #d1d1d1 !important;
}
/* Select2 */
.select2-dropdown {
  border:1px solid var(--input-border-color) !important;
}
.select2-selection__rendered {
  padding:0 !important;
  line-height: 1.5 !important;
}
.form-control, .form-select {
  border-radius: 0 !important;
}
.form-control.is-invalid, .was-validated .form-control:invalid {
  border-color: #f84147 !important;
}
.form-select:focus {
  border-color: none;
  outline: 0;
  box-shadow: none;
}
.form-group {
  margin-bottom:20px;
}
.input-group button {
  border:1px solid var(--input-border-color) !important;
}
.list-full-width {
  text-align: justify!important;
  text-align-last: justify;
}
.list-group-item {
  border: 1px solid var(--input-border-color) !important;
  font-weight: 500;
  font-size: 13px !important;
}
.list-group-item + .list-group-item {
  border-top: 0 !important;
}
.accordion-body ul {
  margin-top:0;
  margin-bottom:0;
}
.accordion-body li dl {
  border-bottom: 1px solid #f1f1f1;
  margin-top:10px;
  margin-bottom: 3px;
  font-size:12px;
}
.accordion-body li:last-child dl {
  border-bottom: none;
}
.accordion-body dt {
  color:#999;
  font-weight: 400;
}
.accordion-body dt, .accordion-body dd {
  width:50%;
}
.accordion-button:not(.collapsed)::after {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23999999'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
transform: rotate(-180deg);
}
a {
  display: inline-block;
  text-decoration: none;
  transition: all .3s ease-in-out;
  color:var(--link-color);
}
a:hover {
  color:var(--link-color-hover);
}
a, a:hover, a:active {
  outline:0px !important;
  box-shadow: none !important;
}
.description-row a, #article-article a {
  color: var(--eco-black) !important;
}
.description-row a:hover, #article-article a:hover {
  color: var(--eco-primary) !important;
  text-decoration: underline !important;
}
.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left:auto
}
@media (min-width:576px) {
  .container, .container-sm {
    max-width: 100%
  }
}
@media (min-width: 768px) {
    .container {
      max-width: 100%
    }
}
@media (min-width: 992px) {
    .container {
      max-width: 98%
    }
}
@media (min-width: 1200px) {
    .container {
        width:1170px
    }
}
@media (min-width: 1400px) {
    .container {
        width:1280px
    }
}
@media (min-width: 1600px) {
    .container {
        width:1440px
    }
}
/* IMPROVED BUTTON STYLES */
button, a.btn {
  font-weight: 600 !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  transition: all .3s ease-in-out !important;
  border-radius: 8px !important; /* Rounded for organic look */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-primary {
  background: var(--button-primary-color) !important;
  border: 1px solid var(--button-primary-color) !important;
  color: var(--button-primary-color-text) !important;
  box-shadow: 0 4px 6px rgba(67, 160, 71, 0.2);
}
.btn-primary:hover {
  background: var(--button-primary-color-hover) !important;
  border: 1px solid var(--button-primary-color-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(67, 160, 71, 0.35);
}
.btn-secondary {
  background: var(--button-secondary-color) !important;
  border: 1px solid var(--button-secondary-color) !important;
  color: var(--button-secondary-color-text) !important;
}
.btn-secondary:hover {
  background: var(--button-secondary-color-hover) !important;
  border: 1px solid var(--button-secondary-color-hover) !important;
  color: var(--eco-dark) !important;
}
.btn-link {
  color: #797b7e;
  border: 1px solid #f1f1f1;
  background: #f1f1f1;
  text-decoration: none;
}
.btn-link:hover {
  color: var(--eco-primary);
  border: 1px solid #d1d1d1;
  background: #fff;
}
.btn-lg {
  padding: 12px 20px !important;
  font-size: 14px !important;
  font-weight: 600 !important;;
}
.accordion-item {
  border: 1px solid #f1f1f1;
}
.accordion-item h4 {
  margin-bottom: 0 !important;
}
.accordion-button:not(.collapsed) {
  color: var(--eco-dark);
  background-color: var(--eco-light);
  box-shadow: none;
}
.accordion-button {
  font-size:12px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0px !important;
}
.h1,h1,.h2,h2,.h3,h3,.h4,h4,.h5,h5,.h6,h6 {
  margin-bottom: 15px !important;
  color: var(--eco-black);
}
.h1, h1 {
  font-size: 24px;
  margin-top: 0;
}
.h2, h2 {
  font-size: 20px;
  margin-top: 0;
}
.h3, h3 {
  font-size: 16px;
  margin-top: 0;
}
.h4, h4 {
  font-size: 14px;
  margin-top: 0;
}
.mb-2, .my-2 {
  margin-bottom: var(--size-2) !important;
}
.mb-3, .my-3 {
  margin-bottom: var(--size-3) !important;
}
.pt-1, .py-1, .p-1 {
  padding-top: var(--size-1) !important;
}
.pt-2, .py-2, .p-2 {
  padding-top: var(--size-2) !important;
}
.pt-3, .py-3, .p-3 {
  padding-top: var(--size-3) !important;
}
.pt-4, .py-4, .p-4 {
  padding-top: var(--size-4) !important;
}
.pt-5, .py-5, .p-5 {
  padding-top: var(--size-5) !important;
}
.pt-6, .py-6, .p-6 {
  padding-top: var(--size-6) !important;
}
.pt-7, .py-7, .p-7 {
  padding-top: var(--size-7) !important;
}
.pt-8, .py-8, .p-8 {
  padding-top: var(--size-8) !important;
}
.pb-1, .py-1, .p-1 {
  padding-bottom: var(--size-1) !important;
}
.pb-2, .py-2, .p-2 {
  padding-bottom: var(--size-2) !important;
}
.pb-3, .py-3, .p-3 {
  padding-bottom: var(--size-3) !important;
}
.pb-4, .py-4, .p-4 {
  padding-bottom: var(--size-4) !important;
}
.pl-1, .px-1, .p-1 {
  padding-left: var(--size-1) !important;
}
.pl-2, .px-2, .p-2 {
  padding-left: var(--size-2) !important;
}
.pl-3, .px-3, .p-3 {
  padding-left: var(--size-3) !important;
}
.pr-1, .px-1, .p-1 {
  padding-right: var(--size-1) !important;
}
.pr-2, .px-2, .p-2 {
  padding-right: var(--size-2) !important;
}
.pr-3, .px-3, .p-3 {
  padding-right: var(--size-3) !important;
}
.text-right {
  text-align: right!important;
}
.breadcrumb-row {
  background: var(--breadcrumb-background);
}
.breadcrumb {
  padding:4px 0;
}
.breadcrumb li + li {
  margin-left:5px;
}
.breadcrumb li + li:before {
  content: "/";
  margin-right:5px;
  color:var(--breadcrumb-color);
  font-size: 12px;
  line-height: 1.2;
}
.breadcrumb li a, .breadcrumb li span {
  color:var(--breadcrumb-color);
  font-size: 12px;
  line-height: 1.2;
}
.breadcrumb li span {
  color:var(--breadcrumb-active-color);
  font-weight: 500;
}
.list-group-item.active {
  z-index: 2;
  color: var(--button-primary-color-text) !important;
  background-color: var(--button-primary-color) !important;
  border: 1px solid var(--button-primary-color) !important;
}
.pagination li {
  text-align: center;
  border-bottom: 2px solid none;
}
.pagination li+li {
  margin-left:3px;
}
.pagination li a {
  padding:5px 3px;
  min-width:30px;
  font-size:12px;
  font-weight: 600;
  cursor: pointer;
  color: var(--eco-black);
}
.pagination li:hover a {
  color: var(--eco-primary);
}
.pagination li.active {
  padding:5px 3px;
  font-size:12px;
  min-width:30px;
  font-weight: 600;
  color: var(--eco-primary);
  border-bottom: 2px solid var(--eco-primary);
}
.pagination li.first-page:after {
  content:'...';
  color:#999;
}
.pagination li.last-page:before {
  content:'...';
  color:#999;
}
.list-group {
  border-radius: 0;
}
.product-rating {
  font-size:11px;
  font-weight: 400;
}
.product-rating a {
  margin-left:5px;
  margin-top:8px;
  color: var(--eco-primary);
}
.product-rating svg {
  margin-top:-3px;
}
.product-rating svg.active path {
  fill:#FFD953;
}
.product-rating svg path {
  fill:#E1E2E4;
}
.product-review + .product-review {
  border-top: 1px solid #f2f2f2;
  padding-top:15px;
}
.product-review .review-date {
  color:#999;
  font-size:12px;
}
.product-review .product-rating {
  margin-bottom:10px;
}
.product-review p {
  line-height: 1.6;
  color:#333;
  font-size:13px;
}
.product-reviews-row {
  margin-bottom: 30px;
  padding: 0;
  border-left: 1px solid #f1f1f1;
  --bs-gutter-y: 0;
  --bs-gutter-x: 0;
}
.product-reviews-row div[class^='col'] {
  border: 1px solid #f1f1f1;
  border-left: 0;
  margin: 0 0 -1px;
  padding: 30px;
}
.product-reviews .product-review .review-author {
  font-size: 12px;
  font-weight: 600 !important;
  color: var(--eco-black) !important;
}
.product-reviews .product-review .review-date {
  color: #999;
  font-size: 11px;
}
.product-reviews .product-review .product-image {
  width: 70px;
  height: auto;
  margin-right: 10px;
}
.product-reviews .product-review .product-name {
  color: var(--eco-black);
  font-weight: 500;
  font-size: 12px;
}
.product-reviews .product-review .review-info {
  border: 1px solid #f1f1f1;
  margin: 15px 0;
  padding: 10px 20px;
  background: var(--eco-light); /* Highlight review info */
  border-radius: 6px;
}
.product-reviews .product-review .review-text {
  color: #000;
}
.product-sort-list {
  margin-bottom:20px;
}
.product-sort-list a {
  margin-right:10px;
  font-size:13px;
  color: #999;
}
.product-sort-list a.active {
  color: var(--eco-primary);
  font-weight: 600;
}
.stock-status {
  background: var(--instock-status-color); 
  color:#FFF;
  padding:4px 8px;
  min-width: 56px;
  font-weight: 500;
  font-size: 12px; 
  text-align: center;
  border-radius: 4px;
}
.product-sku {
  background: #f1f1f1; 
  color:#999; 
  padding:4px 8px;
  font-weight: 500; 
  font-size: 12px;
  border-radius: 4px;
}
.advantage .advantage-block {
  border:1px solid #f1f1f1;
  border-radius: 8px;
  transition: all 0.3s;
}
.advantage .advantage-block:hover {
    border-color: var(--eco-primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.advantage .advantage-block .advantage-image svg path {
  fill:var(--advantage-icon-color);
}
.advantage .advantage-block .advantage-image {
  margin:10px 20px 10px 20px;
}
.advantage .advantage-block .advantage-text .h6 {
  font-weight: 600 !important;
  margin-bottom: 0 !important;
  font-size:14px !important;
  color: var(--eco-dark);
}
.advantage .advantage-block .advantage-description {
  color:var(--advantage-text-color);
  font-size:12px;
}
.info-block + .info-block {
  border-bottom:1px solid #f1f1f1;
  margin-bottom:30px;
}
.product-reviews .product-name {
  font-weight: 500;
  letter-spacing: .6px;
  line-height: 1.5;
  color: #333;
  word-break: break-word;
  margin-bottom:10px;
}
.product-reviews .review-text {
  color:#333;
  margin-bottom: 10px;
  font-size:13px;
}
.product-reviews .review-date, .product-reviews .review-author {
  color:#999;
  font-size:13px;
}
.product-tags a {
  border-radius: 5px;
  background-color: #f1f1f1;
  padding: 4px 12px;
  font-size: 12px;
  margin-right: 10px;
  color: #555;
  transition: all 0.3s;
}
.product-tags a:hover {
    background-color: var(--eco-primary);
    color: #fff;
}
.product-tags a:last-child {
  margin-right: 0;
}
#product-product .product-images {
  top:20px;
  position: sticky;
  width: 100%;
}
#product-product .product-info {
  top:20px;
  position: sticky;
}
#product-product .swiper {
  width: 100%;
  height: 100%;
}
#product-product .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#product-product .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#product-product .swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}
#product-product .swiper-slide {
  background-size: cover;
  background-position: center;
}
#product-product .mySwiper2 {
  height: 80%;
  width: 100%;
  border: 1px solid #f1f1f1;
  border-radius: 8px;
}
#product-product .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#product-product .product-thumbs {
  top:20px;
  position: sticky;
}
#product-product .product-thumbs-item {
  margin-bottom: 10px;
  border: 1px solid #f1f1f1;
  cursor: pointer;
  text-align: center;
  border-radius: 4px;
}
#product-product .product-thumbs-item svg {
  width: 60px;
  height: 60px;
}
#product-product .product-thumbs-item.active {
  border: 2px solid var(--eco-primary);
}
.article-list img {
  margin-bottom: 10px;
  border-radius: 6px;
}
.article-list .article-title {
  font-weight: 500;
  letter-spacing: .6px;
  line-height: 1.5;
  color: var(--eco-black);
  word-break: break-word;
  margin-bottom:5px;
}
.article-list .article-date {
  color: var(--eco-primary);
  font-size:13px;
}
.progress-wrap {
  position: fixed;
  right: 40px;
  bottom: 40px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset  0 0 0 2px rgba(0,0,0,0.2);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap svg.progress-arrow { 
  top:7px;
  left:7px;
  position: absolute;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  overflow: hidden;
}
.progress-wrap svg.progress-arrow path { 
  fill: var(--eco-dark); 
}
.progress-wrap svg.progress-circle path {
  fill: none; 
  stroke: var(--eco-primary);
  stroke-width: 4;
  box-sizing:border-box;
  -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
#notify {
  z-index: 1000;
  bottom: 0px;
  margin-right: 30px;
}
@media (max-width: 767.98px) {
  #notify {
    bottom: 50px;
    margin-right: 10px;
  }
}
#notify .toast {
  background: var(--eco-primary);
  box-shadow: none;
  color:#FFF;
  margin-bottom: 30px;
  border-radius: 8px;
}
#notify .toast a {
  color:#FFF;
  font-weight: 500;
}
#notify .toast .btn-close {
  background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFF'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  color:#FFF;
}
#search .btn-lg {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  border-radius: 0 8px 8px 0 !important; /* Rounded Right side */
}
#product-category .h1.category-title small {
  color:#999;
  font-size:16px;
}
.category-wall-link {
  font-size: 12px;
  margin-top: 5px;
  color: var(--eco-dark);
}
.category-filter .accordion-item:first-of-type {
  border-radius: 0 !important;
}
.category-filter .input-group-text {
  background: #FFF;
  border: 1px solid #f1f1f1;
  color: #d1d1d1;
  font-size: 12px;
}
.category-filter .accordion-button {
  font-weight: 600;
}
.category-filter .accordion-button:not(.collapsed) {
  background-color: var(--eco-light) !important;
}
.category-filter .form-check input[type=checkbox] {
  border: 1px solid #e5e5e5 !important;
  padding: 8px !important;
  border-radius: 4px !important;
  top: -2px;
  position: relative;
}
.category-filter .form-check input[type=checkbox]:checked {
  background-color: var(--eco-primary);
  border-color: var(--eco-primary) !important;
}
.category-filter .form-check label {
  font-size: 13px !important;
  font-weight: 500;
  cursor: pointer;
  margin-left: 5px;
}
.btn-filter {
  background: var(--filter-button-color) !important;
  border: 1px solid var(--filter-button-color) !important;
  color: var(--filter-button-color-text) !important;
}
.btn-filter:hover {
  background: var(--filter-button-color-hover) !important;
  border: 1px solid var(--filter-button-color-hover) !important;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.category-thumb {
  padding: 10px 10px 20px 10px;
  box-shadow: 0 0 20px rgba(0,0,0,.1);
  margin-bottom: 30px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.category-thumb:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(67, 160, 71, 0.15);
}
.category-thumb a.category-name {
  margin-top: 10px;
  word-break: break-word;
  font-weight: 500;
  color: var(--category-thumb-color);
}
#product-product .product-price {
  margin-top:25px;
}
#product-product .product-price .h1 {
  margin-bottom: 0px !important;
  color: var(--eco-primary);
}
#product-product .product-price .price-block {
  margin-bottom: 15px !important;
}
#product-product .product-quantity input {
  border:1px solid var(--header-search-border-color);
}
#product-product .product-quantity button {
  border:1px solid var(--header-search-border-color);
}
.product-row {
  margin-bottom: 30px;
  padding: 0;
  border-left: 1px solid #f1f1f1;
  --bs-gutter-y: 0;
  --bs-gutter-x: 0;
}
.product-row div[class^='col'] {
  border: 1px solid #f1f1f1;
  border-left: 0;
  margin: 0 0 -1px;
}
.product-thumb {
  z-index: 0;
  padding: 10px 10px 20px 10px;
  position: relative;
  background-color: var(--product-thumb-background-color);
  transition: all 0.3s ease;
  height: 100%;
}
/* Enhancing Product Card Hover */
.product-thumb:hover {
  z-index: 1;
  box-shadow: 0 0 20px rgba(67, 160, 71, 0.2); /* Green glow */
  border-color: transparent;
  transform: scale(1.02);
  border-radius: 8px;
}
.product-thumb .image {
  text-align: center;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 6px;
}
.product-thumb .image a {
  display: block;
}
.product-thumb .image img {
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.5s ease;
}
/* Zoom effect on image hover for organic feel */
.product-thumb:hover .image img {
  transform: scale(1.05);
}
.product-thumb .caption {
  padding: 0 10px;
  min-height: 80px;
  text-align: center;
}
.product-thumb .caption h4 {
  margin-bottom: 5px;
  font-size: 14px;
}
.product-thumb .caption h4 a {
  color: var(--product-thumb-name-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
}
.product-thumb .caption h4 a:hover {
  color: var(--eco-primary);
}
.product-thumb .caption .price {
  color: var(--product-thumb-price-color);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.product-thumb .caption .price-new {
  color: var(--eco-primary); /* Green price */
  font-weight: 700;
}
.product-thumb .caption .price-old {
  color: var(--product-thumb-old-price-color);
  text-decoration: line-through;
  font-size: 12px;
  font-weight: 400;
  margin-left: 5px;
}
.product-thumb .caption .price-tax {
  color: #999;
  font-size: 11px;
  display: block;
  font-weight: 400;
}
.product-thumb .caption .rating {
  padding-bottom: 10px;
}
.product-thumb .button-group {
  margin-top: 10px;
  border-top: 1px solid var(--product-thumb-border-color);
  background-color: #fafafa;
  overflow: auto;
  display: flex; /* Flexbox for better alignment */
  justify-content: center;
}
.product-thumb .button-group button {
  width: 100%; /* Distribute space */
  border: none;
  display: inline-block;
  float: left;
  background-color: transparent;
  color: #888;
  line-height: 38px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 0;
}
/* Primary "Buy" button in the grid */
.product-thumb .button-group button:first-child {
    background-color: var(--product-buy-button-color);
    color: var(--product-buy-button-color-text);
    width: 60%; /* Make buy button larger */
}
.product-thumb .button-group button:first-child:hover {
    background-color: var(--product-buy-button-color-hover);
}
/* Wishlist and Compare icons */
.product-thumb .button-group button + button {
  width: 20%;
  border-left: 1px solid var(--product-thumb-border-color);
}
.product-thumb .button-group button:hover {
  color: var(--eco-black);
  background-color: var(--eco-light);
}
/* SPECIFIC PAGE STYLES */
/* Alerts - Making them fit the theme */
.alert-success {
    color: var(--eco-dark);
    background-color: var(--eco-light);
    border-color: #c8e6c9;
    border-radius: 8px;
}
.alert-success a {
    color: var(--eco-dark);
    font-weight: bold;
}
.alert-danger {
    color: #b71c1c;
    background-color: #ffcdd2;
    border-color: #ef9a9a;
    border-radius: 8px;
}
/* Swiper / Carousel Controls */
.swiper-button-next, .swiper-button-prev {
    color: var(--eco-primary) !important;
}
.swiper-pagination-bullet-active {
    background: var(--eco-primary) !important;
}
/* Product Page Specifics */
#product-product h1 {
    font-weight: 700;
    color: var(--eco-black);
}
#product-product .btn-group button {
    margin-right: 5px;
    border-radius: 4px;
}
/* Quantity Input */
#product-product .input-group .form-control {
    text-align: center;
    max-width: 60px;
    border-radius: 0;
}
#product-product .input-group-btn:first-child > .btn {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
#product-product .input-group-btn:last-child > .btn {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
/* Tabs on Product Page */
.nav-tabs {
    border-bottom: 2px solid #e8f5e9;
}
.nav-tabs .nav-link {
    margin-bottom: -2px;
    border: none;
    color: #777;
    font-weight: 500;
}
.nav-tabs .nav-link:hover {
    color: var(--eco-primary);
    border-color: transparent;
}
.nav-tabs .nav-link.active {
    border: none;
    border-bottom: 2px solid var(--eco-primary);
    color: var(--eco-primary);
    font-weight: 600;
}
/* Description Text */
.tab-content {
    padding: 20px 0;
    color: #555;
    line-height: 1.7;
}
/* MODAL / POPUP Styling */
.modal-content {
    border-radius: 10px;
    border: none;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.modal-header {
    border-bottom: 1px solid #f1f1f1;
    background: #fff;
    border-radius: 10px 10px 0 0;
}
.modal-title {
    color: var(--eco-black);
    font-weight: 600;
}
.modal-footer {
    border-top: 1px solid #f1f1f1;
}
/* Cart Page */
.table-bordered {
    border: 1px solid #e8f5e9;
}
.table-bordered td, .table-bordered th {
    border: 1px solid #e8f5e9;
    vertical-align: middle;
}
.table thead th {
    border-bottom: 2px solid var(--eco-primary);
    background-color: var(--eco-light);
    color: var(--eco-dark);
    font-weight: 600;
}
/* Checkout / Login Forms */
.well, .card-body { /* Assuming 'well' might be used in older OC versions or bootstrap cards */
    background-color: #fff;
    border: 1px solid #e8f5e9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
legend {
    color: var(--eco-primary);
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #e8f5e9;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
/* Leaflet/Map corrections if present */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
}
/* Additional Utilities to enforce styles */
.text-danger {
    color: var(--status-red) !important;
}
.text-success {
    color: var(--status-green) !important;
}
/* Contact Page */
#information-contact .card {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
#information-contact .card-header {
    background-color: var(--eco-primary);
    color: white;
    font-weight: 600;
}
/* Mobile optimizations final touches */
@media (max-width: 767px) {
    .product-list .product-thumb .caption {
        min-height: auto;
        padding: 10px;
        text-align: left;
    }
    .product-list .product-thumb .image {
        float: left;
        padding: 0 15px;
    }
}