*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #333333;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #0e6036;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: rgb(7.5090909091, 51.4909090909, 28.9636363636);
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}
button:focus {
  outline: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 576px) {
  .container {
    max-width: 540px;
  }
}

.section {
  padding: 80px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: #0e6036;
}

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

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.align-items-center {
  align-items: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-center {
  justify-content: center !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.vt-button {
  background-color: #0e6036;
  border-color: #0e6036;
  color: #FFFFFF;
}
.vt-button:hover {
  background-color: rgb(7.5090909091, 51.4909090909, 28.9636363636);
  border-color: rgb(7.5090909091, 51.4909090909, 28.9636363636);
  transform: translateY(-2px);
  color: #FFFFFF;
}
.vt-button:active {
  transform: translateY(0);
  background-color: rgb(7.5090909091, 51.4909090909, 28.9636363636);
  border-color: rgb(7.5090909091, 51.4909090909, 28.9636363636);
  color: #FFFFFF;
}

.top-header {
  background-color: #0e6036;
  color: #FFFFFF;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.main-nav {
  background-color: #FFFFFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}
.main-nav .navbar-brand img {
  height: 50px;
  width: auto;
}
.main-nav .navbar-toggler {
  display: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}
.main-nav .navbar-toggler:focus {
  outline: none;
}
.main-nav .navbar-collapse {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-nav .navbar-nav .nav-item {
  margin: 0 1rem;
}
.main-nav .navbar-nav .nav-item .nav-link {
  color: #333333;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}
.main-nav .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0e6036;
  transition: width 0.3s ease;
}
.main-nav .navbar-nav .nav-item .nav-link:hover, .main-nav .navbar-nav .nav-item .nav-link.active {
  color: #0e6036;
}
.main-nav .navbar-nav .nav-item .nav-link:hover::after, .main-nav .navbar-nav .nav-item .nav-link.active::after {
  width: 100%;
}
.main-nav .nav-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-nav .nav-right .cart-icon {
  position: relative;
  font-size: 1.25rem;
  color: #333333;
  cursor: pointer;
  transition: color 0.3s ease;
}
.main-nav .nav-right .cart-icon:hover {
  color: #0e6036;
}
.main-nav .nav-right .cart-icon .cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #0e6036;
  color: #FFFFFF;
  font-size: 0.75rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-nav .nav-right .language-switch {
  margin-left: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-nav .nav-right .language-switch .btn-link {
  color: #333333;
  font-weight: 500;
  padding: 0 0.5rem;
  transition: color 0.3s ease;
}
.main-nav .nav-right .language-switch .btn-link:hover {
  color: #0e6036;
}
.main-nav .nav-right .language-switch span {
  color: #666666;
}
@media (max-width: 992px) {
  .main-nav .navbar-toggler {
    display: block;
  }
  .main-nav .navbar-collapse {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-direction: column;
  }
  .main-nav .navbar-collapse.show {
    display: flex;
  }
  .main-nav .navbar-collapse .navbar-nav {
    width: 100%;
    margin: 0 0 1rem 0;
  }
  .main-nav .navbar-collapse .navbar-nav .nav-item {
    margin: 0;
    width: 100%;
    text-align: center;
  }
  .main-nav .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 0.75rem 0;
    display: block;
  }
  .main-nav .navbar-collapse .navbar-nav .nav-item .nav-link::after {
    display: none;
  }
  .main-nav .navbar-collapse .nav-right {
    width: 100%;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
  }
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 992px) {
  .main-nav .navbar-collapse {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 991px) {
  .main-nav .navbar-collapse {
    background-color: #FFFFFF;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .main-nav .navbar-collapse .navbar-nav {
    margin-bottom: 1rem;
  }
  .main-nav .navbar-collapse .navbar-nav .nav-item {
    margin: 0;
  }
  .main-nav .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 0.75rem 0;
  }
  .main-nav .navbar-collapse .nav-right {
    justify-content: center;
  }
}
.hero-banner {
  position: relative;
  margin-bottom: 3rem;
}
.hero-banner .banner-slider {
  position: relative;
  overflow: hidden;
}
.hero-banner .banner-item {
  position: relative;
  height: 800px;
}
.hero-banner .banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
@media (max-width: 768px) {
  .hero-banner .banner-item {
    height: 600px;
  }
}
@media (max-width: 576px) {
  .hero-banner .banner-item {
    height: 450px;
  }
}
.hero-banner .banner-item .banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  z-index: 1;
  width: 90%;
  max-width: 800px;
  padding: 2rem;
  position: relative;
}
.hero-banner .banner-item .banner-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.hero-banner .banner-item .banner-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .hero-banner .banner-item .banner-content h1 {
    font-size: 3rem;
  }
}
@media (max-width: 576px) {
  .hero-banner .banner-item .banner-content h1 {
    font-size: 2.5rem;
  }
}
.hero-banner .banner-item .banner-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
@media (max-width: 576px) {
  .hero-banner .banner-item .banner-content p {
    font-size: 1rem;
  }
}
.hero-banner .banner-item .banner-content .btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border: none !important;
  transition: all 0.3s ease;
  background-color: #0e6036;
  color: #FFFFFF;
  border: 2px solid #0e6036;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-banner .banner-item .banner-content .btn-primary:hover {
  background-color: transparent;
  color: #FFFFFF;
}
@media (max-width: 576px) {
  .hero-banner .banner-item .banner-content .btn-primary {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
}

.featured-products {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.product-card {
  background: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.product-card .product-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.product-card .product-image .product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.product-card .product-image .product-overlay .quick-view {
  background-color: #FFFFFF;
  color: #333333;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.product-card .product-image .product-overlay .quick-view:hover {
  background-color: #0e6036;
  color: #FFFFFF;
}
.product-card .product-info {
  padding: 1.5rem;
  text-align: center;
}
.product-card .product-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-card .product-info .price {
  color: #0e6036;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.product-card .product-info .btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border: none !important;
  transition: all 0.3s ease;
  background-color: #0e6036;
  color: #FFFFFF;
  width: 100%;
}
.product-card .product-info .btn-primary:hover {
  background-color: rgb(7.5090909091, 51.4909090909, 28.9636363636);
}
.product-card:hover .product-image img {
  transform: scale(1.1);
}
.product-card:hover .product-image .product-overlay {
  opacity: 1;
  z-index: 2;
}
.product-card:hover .product-image .product-overlay .quick-view {
  transform: translateY(0);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.product-filters {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.product-filters .filter-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border: none !important;
  transition: all 0.3s ease;
  background-color: #FFFFFF;
  color: #333333;
  border: 1px solid #dee2e6;
}
.product-filters .filter-btn:hover, .product-filters .filter-btn.active {
  background-color: #0e6036;
  color: #FFFFFF;
  border-color: #0e6036;
}

.latest-news {
  padding: 80px 0;
}
.latest-news .news-card {
  background: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
.latest-news .news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.latest-news .news-card .news-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.latest-news .news-card .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.latest-news .news-card .news-image .news-date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #0e6036;
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
}
.latest-news .news-card .news-content {
  padding: 1.5rem;
}
.latest-news .news-card .news-content h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.latest-news .news-card .news-content h3 a {
  color: #333333;
  transition: all 0.3s ease;
}
.latest-news .news-card .news-content h3 a:hover {
  color: #0e6036;
}
.latest-news .news-card .news-content p {
  color: #666666;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.latest-news .news-card .news-content .read-more {
  font-weight: 500;
  color: #0e6036;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}
.latest-news .news-card .news-content .read-more i {
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}
.latest-news .news-card .news-content .read-more:hover {
  color: rgb(7.5090909091, 51.4909090909, 28.9636363636);
}
.latest-news .news-card .news-content .read-more:hover i {
  transform: translateX(5px);
}
.latest-news .news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .news-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.news-categories {
  margin-bottom: 2rem;
}
.news-categories .category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.news-categories .category-list .category-item {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border: none !important;
  transition: all 0.3s ease;
  background-color: #FFFFFF;
  color: #333333;
  border: 1px solid #dee2e6;
  font-size: 0.875rem;
}
.news-categories .category-list .category-item:hover, .news-categories .category-list .category-item.active {
  background-color: #0e6036;
  color: #FFFFFF;
  border-color: #0e6036;
}

.footer {
  background-color: #f8f9fa;
  padding-top: 80px;
}
.footer h4 {
  color: #333333;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  position: relative;
}
.footer h4::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #0e6036;
}
.footer p {
  color: #666666;
  margin-bottom: 1rem;
}
.footer .footer-links li {
  margin-bottom: 0.75rem;
}
.footer .footer-links li a {
  color: #666666;
  transition: all 0.3s ease;
}
.footer .footer-links li a:hover {
  color: #0e6036;
  padding-left: 5px;
}
.footer .contact-info li {
  color: #666666;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}
.footer .contact-info li i {
  color: #0e6036;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}
.footer .social-links {
  display: flex;
  gap: 1rem;
}
.footer .social-links a {
  width: 40px;
  height: 40px;
  background-color: #FFFFFF;
  color: #0e6036;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer .social-links a:hover {
  background-color: #0e6036;
  color: #FFFFFF;
  transform: translateY(-3px);
}
.footer .row > div {
  border-right: 1px solid #dee2e6;
  padding-right: 2rem;
}
.footer .row > div:last-child {
  border-right: none;
  padding-right: 0;
}
@media (max-width: 992px) {
  .footer .row > div {
    border-right: none;
    padding-right: 0;
    margin-bottom: 2rem;
  }
  .footer .row > div:last-child {
    margin-bottom: 0;
  }
}

.footer-bottom {
  background-color: rgb(239.075, 241.35, 243.625);
  padding: 1.5rem 0;
  margin-top: 4rem;
}
.footer-bottom p {
  margin: 0;
  color: #666666;
  font-size: 0.875rem;
}

@media (max-width: 992px) {
  .footer .row > div:not(:last-child) {
    border-right: 1px solid #dee2e6;
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .footer .col-md-3 {
    margin-bottom: 2rem;
  }
  .footer .col-md-3:last-child {
    margin-bottom: 0;
  }
}
.product-gallery .main-image {
  border: 1px solid #e9ecef;
  border-radius: 4px;
  overflow: hidden;
}
.product-gallery .main-image img {
  width: 100%;
  height: auto;
}
.product-gallery .thumbnail-images img {
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.product-gallery .thumbnail-images img.active, .product-gallery .thumbnail-images img:hover {
  border-color: #0e6036;
}

.product-info .product-title {
  font-size: 2rem;
  color: #333333;
  margin-bottom: 1rem;
}
.product-info .product-price {
  margin-bottom: 1.5rem;
}
.product-info .product-price .new-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0e6036;
}
.product-info .product-price .old-price {
  font-size: 1.25rem;
  color: #666666;
  text-decoration: line-through;
  margin-left: 1rem;
}
.product-info .product-price .discount-badge {
  background-color: #0e6036;
  color: #FFFFFF;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
}

.product-attributes .attribute {
  margin-bottom: 1rem;
}
.product-attributes .attribute .attribute-title {
  color: #666666;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.product-attributes .attribute .attribute-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.product-attributes .attribute .attribute-options .btn {
  padding: 0.35rem 0.75rem;
  font-size: 0.813rem;
  border: 1px solid #0e6036;
  color: #0e6036;
  min-width: 45px;
  text-align: center;
  background: transparent;
}
.product-attributes .attribute .attribute-options .btn:hover {
  background-color: rgba(14, 96, 54, 0.1);
}
.product-attributes .attribute .attribute-options .btn.active {
  background-color: #0e6036;
  color: #FFFFFF;
}

.quantity-selector {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.quantity-selector .quantity-label {
  color: #666666;
  font-size: 0.875rem;
  margin-right: 1rem;
}
.quantity-selector .quantity-buttons {
  display: inline-flex;
  align-items: center;
  border: 1px solid #0e6036;
  border-radius: 4px;
}
.quantity-selector .quantity-buttons .btn {
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  color: #0e6036;
  border: none;
  background: transparent;
}
.quantity-selector .quantity-buttons .btn:hover {
  background-color: rgba(14, 96, 54, 0.1);
}
.quantity-selector .quantity-buttons input {
  width: 40px;
  border: none;
  text-align: center;
  font-size: 0.875rem;
  color: #333333;
  padding: 0.25rem;
}
.quantity-selector .quantity-buttons input:focus {
  outline: none;
}
.quantity-selector .quantity-buttons input::-webkit-inner-spin-button, .quantity-selector .quantity-buttons input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-actions .btn-add-to-cart {
  background-color: #0e6036;
  border-color: #0e6036;
  color: #FFFFFF;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}
.product-actions .btn-add-to-cart:hover {
  background-color: rgb(7.5090909091, 51.4909090909, 28.9636363636);
  border-color: rgb(7.5090909091, 51.4909090909, 28.9636363636);
  transform: translateY(-2px);
}
.product-actions .btn-add-to-cart:active {
  transform: translateY(0);
}

#productTabs {
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
}
#productTabs .nav-item {
  margin: 0;
}
#productTabs .nav-item .nav-link {
  color: #666666;
  border: none;
  padding: 1rem 0;
  font-weight: 500;
  position: relative;
  background: transparent;
  margin-right: 2rem;
}
#productTabs .nav-item .nav-link:hover {
  color: #0e6036;
}
#productTabs .nav-item .nav-link.active {
  color: #0e6036;
  background: transparent;
}
#productTabs .nav-item .nav-link.active:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #0e6036;
}
@media (max-width: 576px) {
  #productTabs {
    gap: 0.5rem;
  }
  #productTabs .nav-item .nav-link {
    padding: 0.75rem 0;
    margin-right: 1.5rem;
    font-size: 0.875rem;
  }
}

.tab-content {
  min-height: 300px;
}
.tab-content .tab-pane {
  padding: 1rem 0;
}

.blog-detail {
  max-width: 800px;
  margin: 0 auto;
}
.blog-detail .article-header .article-title {
  font-size: 2rem;
  color: #0e6036;
  margin-bottom: 1rem;
}
@media (max-width: 576px) {
  .blog-detail .article-header .article-title {
    font-size: 1.75rem;
  }
}
.blog-detail .article-header .article-meta {
  color: #ced4da;
}
.blog-detail .article-header .article-meta .meta-item {
  display: inline-flex;
  align-items: center;
  margin-right: 1.5rem;
}
.blog-detail .article-header .article-meta .meta-item i {
  margin-right: 0.5rem;
  color: #0e6036;
}
.blog-detail .article-description .lead {
  font-size: 1.125rem;
  color: #343a40;
  line-height: 1.6;
}
@media (max-width: 576px) {
  .blog-detail .article-description .lead {
    font-size: 1rem;
  }
}
.blog-detail .article-image figcaption {
  font-size: 0.875rem;
  color: #ced4da;
}
.blog-detail .article-content h2 {
  color: #0e6036;
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}
@media (max-width: 576px) {
  .blog-detail .article-content h2 {
    font-size: 1.25rem;
  }
}
.blog-detail .article-content p {
  color: #343a40;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.blog-detail .article-content .tip-box {
  background-color: rgba(14, 96, 54, 0.1);
  border-left: 4px solid #0e6036;
  padding: 1.5rem;
  border-radius: 4px;
}
.blog-detail .article-content .tip-box h3 {
  color: #0e6036;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.blog-detail .article-content .tip-box h3 i {
  margin-right: 0.5rem;
}
.blog-detail .article-content .product-recommendation {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 4px;
}
.blog-detail .article-content .product-recommendation h3 {
  color: #0e6036;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.blog-detail .article-content .product-recommendation .card {
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease;
}
.blog-detail .article-content .product-recommendation .card:hover {
  transform: translateY(-5px);
}
.blog-detail .article-footer {
  border-top: 1px solid #e9ecef;
  padding-top: 2rem;
}
.blog-detail .article-footer h4 {
  color: #0e6036;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.blog-detail .article-footer .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.blog-detail .article-footer .tags .tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background-color: rgba(14, 96, 54, 0.1);
  color: #0e6036;
  border-radius: 4px;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.blog-detail .article-footer .tags .tag:hover {
  background-color: #0e6036;
  color: #FFFFFF;
}
.blog-detail .article-footer .share-buttons {
  display: flex;
  gap: 1rem;
}
.blog-detail .article-footer .share-buttons .btn {
  color: #FFFFFF;
  padding: 0.5rem 1rem;
}
.blog-detail .article-footer .share-buttons .btn i {
  margin-right: 0.5rem;
}
.blog-detail .article-footer .share-buttons .btn.btn-facebook {
  background-color: #3b5998;
}
.blog-detail .article-footer .share-buttons .btn.btn-facebook:hover {
  background-color: rgb(44.7393364929, 67.4881516588, 115.2606635071);
}
.blog-detail .article-footer .share-buttons .btn.btn-twitter {
  background-color: #1da1f2;
}
.blog-detail .article-footer .share-buttons .btn.btn-twitter:hover {
  background-color: rgb(11.9665271967, 133.4728033473, 208.0334728033);
}
.blog-detail .article-footer .share-buttons .btn.btn-pinterest {
  background-color: #bd081c;
}
.blog-detail .article-footer .share-buttons .btn.btn-pinterest:hover {
  background-color: rgb(140.0710659898, 5.9289340102, 20.7512690355);
}
.blog-detail .article-footer .card-text {
  color: #ced4da;
  font-size: 1rem;
}

.related-articles .section-title {
  font-size: 1.5rem;
  color: #0e6036;
  margin-bottom: 2rem;
  text-align: center;
}
.related-articles .card {
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease;
}
.related-articles .card:hover {
  transform: translateY(-5px);
}
.related-articles .card .card-title {
  font-size: 1.125rem;
  color: #0e6036;
  margin-bottom: 0.5rem;
}
.related-articles .card .card-text {
  color: #ced4da;
  font-size: 1rem;
}
.related-articles .card .btn-link {
  color: #0e6036;
  font-weight: 500;
}
.related-articles .card .btn-link:hover {
  color: rgb(7.5090909091, 51.4909090909, 28.9636363636);
}

.cart-wrapper .cart-table {
  border: 1px solid #e9ecef;
}
.cart-wrapper .cart-table th {
  background-color: #f8f9fa;
  border-bottom: 2px solid #e9ecef;
  padding: 1rem;
  font-weight: 500;
  text-align: center;
}
.cart-wrapper .cart-table th:first-child {
  width: 50px;
}
.cart-wrapper .cart-table td {
  padding: 1rem;
  vertical-align: middle;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
}
.cart-wrapper .cart-table .product-info {
  text-align: left;
}
.cart-wrapper .cart-table .product-info .product-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-right: 1rem;
  border-radius: 4px;
}
.cart-wrapper .cart-table .product-info .product-name {
  color: #0e6036;
  font-weight: 500;
}
.cart-wrapper .cart-table .product-attributes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cart-wrapper .cart-table .product-attributes .attribute {
  font-size: 0.875rem;
  color: #ced4da;
}
.cart-wrapper .cart-table .quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e9ecef;
  border-radius: 4px;
}
.cart-wrapper .cart-table .quantity-selector .btn-quantity {
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  color: #0e6036;
  font-weight: bold;
}
.cart-wrapper .cart-table .quantity-selector .btn-quantity:hover {
  background-color: rgba(14, 96, 54, 0.1);
}
.cart-wrapper .cart-table .quantity-selector .quantity-input {
  width: 40px;
  border: none;
  text-align: center;
  -moz-appearance: textfield;
}
.cart-wrapper .cart-table .quantity-selector .quantity-input::-webkit-outer-spin-button, .cart-wrapper .cart-table .quantity-selector .quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart-wrapper .cart-table .product-total {
  font-weight: 500;
  color: #0e6036;
}
.cart-wrapper .cart-table .btn-remove {
  border: none;
  background: none;
  color: #ced4da;
  padding: 0.5rem;
  transition: color 0.3s ease;
}
.cart-wrapper .cart-table .btn-remove:hover {
  color: #0e6036;
}
@media (max-width: 576px) {
  .cart-wrapper .cart-table th, .cart-wrapper .cart-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.875rem;
  }
  .cart-wrapper .cart-table .product-info .product-image {
    width: 60px;
    height: 60px;
    margin-right: 0.5rem;
  }
  .cart-wrapper .cart-table .quantity-selector .btn-quantity {
    width: 28px;
    height: 28px;
  }
  .cart-wrapper .cart-table .quantity-selector .quantity-input {
    width: 32px;
  }
}
.cart-wrapper .cart-summary {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 4px;
}
.cart-wrapper .cart-summary .summary-title {
  font-size: 1.25rem;
  color: #0e6036;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.cart-wrapper .cart-summary .summary-item {
  margin-bottom: 1rem;
  font-size: 1rem;
}
.cart-wrapper .cart-summary .summary-item span:first-child {
  color: #ced4da;
}
.cart-wrapper .cart-summary .summary-item span:last-child {
  font-weight: 500;
}
.cart-wrapper .cart-summary .summary-total {
  margin: 1.5rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid #e9ecef;
  font-size: 1.125rem;
  font-weight: 500;
}
.cart-wrapper .cart-summary .summary-total .total-amount {
  color: #0e6036;
}
.cart-wrapper .cart-summary .summary-actions .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
}
.cart-wrapper .cart-summary .summary-actions .btn.btn-add-to-cart {
  background-color: #0e6036;
  border-color: #0e6036;
  color: #FFFFFF;
}
.cart-wrapper .cart-summary .summary-actions .btn.btn-add-to-cart:hover {
  background-color: rgb(7.5090909091, 51.4909090909, 28.9636363636);
  border-color: rgb(7.5090909091, 51.4909090909, 28.9636363636);
  transform: translateY(-2px);
}
.cart-wrapper .cart-summary .summary-actions .btn.btn-add-to-cart:active {
  transform: translateY(0);
}
.cart-wrapper .cart-summary .summary-actions .btn.btn-outline {
  border: 1px solid #0e6036;
  color: #0e6036;
  background-color: transparent;
}
.cart-wrapper .cart-summary .summary-actions .btn.btn-outline:hover {
  background-color: rgba(14, 96, 54, 0.1);
}
.cart-wrapper .empty-cart {
  padding: 3rem 0;
}
.cart-wrapper .empty-cart i {
  color: #ced4da;
  margin-bottom: 1rem;
}
.cart-wrapper .empty-cart h3 {
  color: #0e6036;
  margin-bottom: 0.5rem;
}
.cart-wrapper .empty-cart p {
  color: #ced4da;
  margin-bottom: 1.5rem;
}
.cart-wrapper .checkout-form {
  background: #FFFFFF;
  padding: 1.5rem;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}
.cart-wrapper .checkout-form .form-label {
  font-weight: 500;
  color: #343a40;
  margin-bottom: 0.5rem;
}
.cart-wrapper .checkout-form .form-control {
  border: 1px solid #e9ecef;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}
.cart-wrapper .checkout-form .form-control:focus {
  border-color: #0e6036;
  box-shadow: 0 0 0 0.2rem rgba(14, 96, 54, 0.25);
}
.cart-wrapper .checkout-form textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.news-section .section-title {
  font-size: 1.5rem;
  color: #0e6036;
  margin-bottom: 1.5rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 0.5rem;
}
.news-section .section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #0e6036;
}
.news-section .featured-news {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.news-section .featured-news img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.news-section .featured-news img:hover {
  transform: scale(1.05);
}
.news-section .featured-news .featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: #FFFFFF;
}
.news-section .featured-news .featured-content .category {
  display: inline-block;
  background-color: #0e6036;
  color: #FFFFFF;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.news-section .featured-news .featured-content .news-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.news-section .featured-news .featured-content .news-title a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-section .featured-news .featured-content .news-title a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.news-section .featured-news .featured-content .news-excerpt {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}
.news-section .featured-news .featured-content .news-meta {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
.news-section .featured-news .featured-content .news-meta span {
  margin-right: 1rem;
}
.news-section .featured-news .featured-content .news-meta span i {
  margin-right: 0.25rem;
}
.news-section .featured-list .news-item {
  padding: 1rem;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}
.news-section .featured-list .news-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.news-section .featured-list .news-item img {
  border-radius: 4px;
  height: 80px;
  object-fit: cover;
}
.news-section .featured-list .news-item .news-content {
  padding-left: 1rem;
}
.news-section .featured-list .news-item .news-content .category {
  display: inline-block;
  color: #0e6036;
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}
.news-section .featured-list .news-item .news-content .news-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.news-section .featured-list .news-item .news-content .news-title a {
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-section .featured-list .news-item .news-content .news-title a:hover {
  color: #0e6036;
}
.news-section .featured-list .news-item .news-content .news-meta {
  font-size: 0.75rem;
  color: #ced4da;
}
.news-section .featured-list .news-item .news-content .news-meta i {
  margin-right: 0.25rem;
}
.news-section .news-card {
  border: 1px solid #e9ecef;
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease;
}
.news-section .news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.news-section .news-card:hover .card-img {
  transform: scale(1.05);
}
.news-section .news-card .card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.news-section .news-card .card-content {
  padding: 1.5rem;
}
.news-section .news-card .card-content .category {
  display: inline-block;
  color: #0e6036;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.news-section .news-card .card-content .news-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}
.news-section .news-card .card-content .news-title a {
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-section .news-card .card-content .news-title a:hover {
  color: #0e6036;
}
.news-section .news-card .card-content .news-excerpt {
  color: #ced4da;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.news-section .news-card .card-content .news-meta {
  font-size: 0.75rem;
  color: #ced4da;
}
.news-section .news-card .card-content .news-meta span {
  margin-right: 1rem;
}
.news-section .news-card .card-content .news-meta span i {
  margin-right: 0.25rem;
}
@media (max-width: 992px) {
  .news-section .featured-news img {
    height: 300px;
  }
  .news-section .featured-news .featured-content {
    padding: 1.5rem;
  }
  .news-section .featured-news .featured-content .news-title {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .news-section .featured-news img {
    height: 250px;
  }
  .news-section .news-card .card-img {
    height: 180px;
  }
}
@media (max-width: 576px) {
  .news-section .featured-news img {
    height: 200px;
  }
  .news-section .featured-news .featured-content {
    padding: 1rem;
  }
  .news-section .featured-news .featured-content .news-title {
    font-size: 1.125rem;
  }
  .news-section .featured-news .featured-content .news-excerpt {
    display: none;
  }
}

.product-detail__specs .product-detail__specs--item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f6f6f6;
  padding: 10px 16px;
  font-size: 14px;
  gap: 1rem;
  margin-bottom: 5px;
}

.product-detail__specs--item .product-detail__specs--item_title {
  font-weight: bold;
  min-width: 300px;
}

/*# sourceMappingURL=style.css.map */
