@charset "UTF-8";
.btn-primary {
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #4CAF50 0%, #81C784 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}
.btn-primary:focus {
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.3);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #2E7D32;
  color: #2E7D32;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: #2E7D32;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}

.btn-success {
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}
.btn-success:hover {
  background: linear-gradient(135deg, #4CAF50 0%, #81C784 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

a {
  color: #2E7D32;
  transition: color 0.3s ease;
}
a:hover {
  color: #4CAF50;
  text-decoration: none;
}

.cart-btn {
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  border: none;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}
.cart-btn:hover {
  background: linear-gradient(135deg, #4CAF50 0%, #81C784 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.add-to-cart-btn {
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}
.add-to-cart-btn:hover {
  background: linear-gradient(135deg, #4CAF50 0%, #81C784 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}
.add-to-cart-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.buy-now-btn {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}
.buy-now-btn:hover {
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.badge {
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.tag {
  background: #81C784;
  color: #1B5E20;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}

.organic-badge {
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.organic-badge::before {
  content: "🌿";
  font-size: 1rem;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.1);
  display: flex !important;
  flex-direction: column !important;
}
.product-card .product-content {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}
.product-card .product-footer {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: auto !important;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
  border-color: #4CAF50;
}
.product-card .product-image {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}
.product-card .product-image img {
  width: 100%;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.3s ease;
  background: white;
}
.product-card .product-image:hover img {
  transform: scale(1.05);
}
.product-card .product-image .organic-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 2;
}
.product-card .product-image .discount-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #E53E3E;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 2;
}
.product-card .product-info {
  padding: 16px;
}
.product-card .product-info .product-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.4;
}
.product-card .product-info .product-title a {
  color: inherit;
  text-decoration: none;
}
.product-card .product-info .product-title a:hover {
  color: #2E7D32;
}
.product-card .product-info .product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.product-card .product-info .product-price .current-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #E53E3E;
}
.product-card .product-info .product-price .original-price {
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
}
.product-card .product-info .product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}
.product-card .product-info .product-rating .stars {
  color: #ffc107;
  font-size: 0.9rem;
}
.product-card .product-info .product-rating .rating-text {
  font-size: 0.8rem;
  color: #666;
}
.product-card .product-info .product-actions {
  display: flex;
  gap: 8px;
}
.product-card .product-info .product-actions .btn {
  flex: 1;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.product-list .product-item {
  background: white;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  border-left: 4px solid transparent;
}
.product-list .product-item:hover {
  border-left-color: #2E7D32;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
  transform: translateX(4px);
}
.product-list .product-item .product-content {
  display: flex;
  gap: 16px;
}
.product-list .product-item .product-content .product-image {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
}
.product-list .product-item .product-content .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
.product-list .product-item .product-content .product-details {
  flex: 1;
}
.product-list .product-item .product-content .product-details .product-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.product-list .product-item .product-content .product-details .product-title a {
  color: inherit;
  text-decoration: none;
}
.product-list .product-item .product-content .product-details .product-title a:hover {
  color: #2E7D32;
}
.product-list .product-item .product-content .product-details .product-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 12px;
}
.product-list .product-item .product-content .product-details .product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-list .product-item .product-content .product-details .product-meta .product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #E53E3E;
}
.product-list .product-item .product-content .product-details .product-meta .product-actions {
  display: flex;
  gap: 8px;
}

.product-detail .product-gallery .main-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}
.product-detail .product-gallery .main-image img {
  width: 100%;
  height: 400px;
  -o-object-fit: fill;
     object-fit: fill;
}
.product-detail .product-gallery .thumbnail-images {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.product-detail .product-gallery .thumbnail-images .thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.product-detail .product-gallery .thumbnail-images .thumbnail:hover {
  border-color: #4CAF50;
}
.product-detail .product-gallery .thumbnail-images .thumbnail.active {
  border-color: #2E7D32;
}
.product-detail .product-gallery .thumbnail-images .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
.product-detail .product-info .product-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}
.product-detail .product-info .product-price {
  font-size: 2rem;
  font-weight: 700;
  color: #E53E3E;
  margin-bottom: 16px;
}
.product-detail .product-info .product-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
}
.product-detail .product-info .product-features {
  margin-bottom: 24px;
}
.product-detail .product-info .product-features .feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.product-detail .product-info .product-features .feature-item .feature-icon {
  color: #2E7D32;
  font-size: 1.2rem;
}
.product-detail .product-info .product-features .feature-item .feature-text {
  color: #666;
}
.product-detail .product-info .product-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.product-detail .product-info .product-actions .btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.organic-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.organic-features .feature-tag {
  background: #81C784;
  color: #1B5E20;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}
.organic-features .feature-tag.premium {
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  color: white;
}

.main-nav {
  background: white;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
  border-bottom: 3px solid #4CAF50;
}
.main-nav .navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1B5E20;
  text-decoration: none;
}
.main-nav .navbar-brand:hover {
  color: #2E7D32;
}
.main-nav .navbar-nav .nav-item {
  margin: 0 8px;
}
.main-nav .navbar-nav .nav-item .nav-link {
  color: #333;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}
.main-nav .navbar-nav .nav-item .nav-link:hover {
  color: #2E7D32;
  background: rgba(76, 175, 80, 0.1);
}
.main-nav .navbar-nav .nav-item .nav-link.active {
  color: #2E7D32;
  background: rgba(76, 175, 80, 0.15);
}
.main-nav .navbar-nav .nav-item .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  border-radius: 2px;
}
.main-nav .search-form {
  position: relative;
}
.main-nav .search-form .search-input {
  border: 2px solid rgba(76, 175, 80, 0.2);
  border-radius: 25px;
  padding: 10px 20px 10px 45px;
  width: 300px;
  transition: all 0.3s ease;
}
.main-nav .search-form .search-input:focus {
  border-color: #2E7D32;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
  outline: none;
}
.main-nav .search-form .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #2E7D32;
  font-size: 1.1rem;
}
.main-nav .search-form .search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  border: none;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.main-nav .search-form .search-btn:hover {
  background: linear-gradient(135deg, #4CAF50 0%, #81C784 100%);
}
.main-nav .cart-icon {
  position: relative;
  color: #2E7D32;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}
.main-nav .cart-icon:hover {
  color: #4CAF50;
  transform: scale(1.1);
}
.main-nav .cart-icon .cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  animation: pulse 2s infinite;
}

.breadcrumb {
  background: rgba(76, 175, 80, 0.05);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
}
.breadcrumb .breadcrumb-item {
  color: #666;
}
.breadcrumb .breadcrumb-item a {
  color: #2E7D32;
  text-decoration: none;
}
.breadcrumb .breadcrumb-item a:hover {
  color: #4CAF50;
}
.breadcrumb .breadcrumb-item.active {
  color: #1B5E20;
  font-weight: 500;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #4CAF50;
  font-weight: bold;
}

.sidebar-nav {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}
.sidebar-nav .nav-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1B5E20;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #4CAF50;
}
.sidebar-nav .nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-nav .nav-list .nav-item {
  margin-bottom: 8px;
}
.sidebar-nav .nav-list .nav-item .nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.sidebar-nav .nav-list .nav-item .nav-link:hover {
  color: #2E7D32;
  background: rgba(76, 175, 80, 0.1);
}
.sidebar-nav .nav-list .nav-item .nav-link.active {
  color: #2E7D32;
  background: rgba(76, 175, 80, 0.15);
  font-weight: 500;
}
.sidebar-nav .nav-list .nav-item .nav-link .nav-icon {
  color: #4CAF50;
  font-size: 1.1rem;
}

.category-nav {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}
.category-nav .category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.category-nav .category-grid .category-item {
  background: rgba(76, 175, 80, 0.05);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.category-nav .category-grid .category-item:hover {
  background: rgba(76, 175, 80, 0.1);
  border-color: #4CAF50;
  transform: translateY(-2px);
}
.category-nav .category-grid .category-item .category-icon {
  font-size: 2rem;
  color: #2E7D32;
  margin-bottom: 8px;
}
.category-nav .category-grid .category-item .category-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}
.category-nav .category-grid .category-item .category-count {
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 768px) {
  .main-nav .search-form .search-input {
    width: 100%;
    margin-bottom: 10px;
  }
  .main-nav .navbar-nav .nav-item {
    margin: 4px 0;
  }
  .main-nav .navbar-nav .nav-item .nav-link {
    padding: 10px 12px;
  }
  .category-nav .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.form-container {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.1);
}

.form-group {
  margin-bottom: 20px;
}
.form-group .form-label {
  display: block;
  font-weight: 600;
  color: #1B5E20;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.form-group .form-label.required::after {
  content: " *";
  color: #E53E3E;
}
.form-group .form-control, .form-group .search-form .search-input, .search-form .form-group .search-input, .form-group .form-textarea, .form-group .form-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(76, 175, 80, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}
.form-group .form-control:focus, .form-group .search-form .search-input:focus, .search-form .form-group .search-input:focus, .form-group .form-textarea:focus, .form-group .form-select:focus {
  border-color: #2E7D32;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
  outline: none;
}
.form-group .form-control:hover, .form-group .search-form .search-input:hover, .search-form .form-group .search-input:hover, .form-group .form-textarea:hover, .form-group .form-select:hover {
  border-color: #4CAF50;
}
.form-group .form-control::-moz-placeholder, .form-group .search-form .search-input::-moz-placeholder, .search-form .form-group .search-input::-moz-placeholder, .form-group .form-textarea::-moz-placeholder, .form-group .form-select::-moz-placeholder {
  color: #999;
}
.form-group .form-control::placeholder, .form-group .search-form .search-input::placeholder, .search-form .form-group .search-input::placeholder, .form-group .form-textarea::placeholder, .form-group .form-select::placeholder {
  color: #999;
}
.form-group .form-control.is-invalid, .form-group .search-form .is-invalid.search-input, .search-form .form-group .is-invalid.search-input, .form-group .is-invalid.form-textarea, .form-group .is-invalid.form-select {
  border-color: #E53E3E;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}
.form-group .form-control.is-valid, .form-group .search-form .is-valid.search-input, .search-form .form-group .is-valid.search-input, .form-group .is-valid.form-textarea, .form-group .is-valid.form-select {
  border-color: #2E7D32;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}
.form-group .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234CAF50' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 12px;
  padding-right: 40px;
}
.form-group .form-textarea {
  min-height: 100px;
  resize: vertical;
}
.form-group .form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-group .form-checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #2E7D32;
}
.form-group .form-checkbox .form-check-label {
  color: #666;
  font-size: 0.95rem;
}
.form-group .form-radio {
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-group .form-radio input[type=radio] {
  width: 18px;
  height: 18px;
  accent-color: #2E7D32;
}
.form-group .form-radio .form-check-label {
  color: #666;
  font-size: 0.95rem;
}
.form-group .form-help {
  font-size: 0.85rem;
  color: #666;
  margin-top: 4px;
}
.form-group .form-error {
  font-size: 0.85rem;
  color: #E53E3E;
  margin-top: 4px;
}

.input-group {
  display: flex;
  align-items: stretch;
}
.input-group .input-group-text {
  background: rgba(76, 175, 80, 0.1);
  border: 2px solid rgba(76, 175, 80, 0.2);
  border-right: none;
  color: #1B5E20;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px 0 0 8px;
}
.input-group .form-control, .input-group .search-form .search-input, .search-form .input-group .search-input, .input-group .form-group .form-select, .form-group .input-group .form-select, .input-group .form-group .form-textarea, .form-group .input-group .form-textarea {
  border-radius: 0 8px 8px 0;
  border-left: none;
}
.input-group .form-control:focus, .input-group .search-form .search-input:focus, .search-form .input-group .search-input:focus, .input-group .form-group .form-select:focus, .form-group .input-group .form-select:focus, .input-group .form-group .form-textarea:focus, .form-group .input-group .form-textarea:focus {
  border-left: none;
}

.search-form {
  position: relative;
}
.search-form .search-input {
  padding-left: 45px;
  border-radius: 25px;
}
.search-form .search-input:focus {
  border-radius: 25px;
}
.search-form .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #2E7D32;
  font-size: 1.1rem;
}
.search-form .search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  border: none;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.search-form .search-btn:hover {
  background: linear-gradient(135deg, #4CAF50 0%, #81C784 100%);
}

.login-form {
  max-width: 400px;
  margin: 0 auto;
}
.login-form .form-header {
  text-align: center;
  margin-bottom: 24px;
}
.login-form .form-header .form-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1B5E20;
  margin-bottom: 8px;
}
.login-form .form-header .form-subtitle {
  color: #666;
  font-size: 0.95rem;
}
.login-form .form-footer {
  text-align: center;
  margin-top: 20px;
}
.login-form .form-footer .form-link {
  color: #2E7D32;
  text-decoration: none;
}
.login-form .form-footer .form-link:hover {
  color: #4CAF50;
}

.register-form {
  max-width: 500px;
  margin: 0 auto;
}
.register-form .form-header {
  text-align: center;
  margin-bottom: 24px;
}
.register-form .form-header .form-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1B5E20;
  margin-bottom: 8px;
}
.register-form .form-header .form-subtitle {
  color: #666;
  font-size: 0.95rem;
}
.register-form .form-row {
  display: flex;
  gap: 16px;
}
.register-form .form-row .form-group {
  flex: 1;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form .form-header {
  text-align: center;
  margin-bottom: 24px;
}
.contact-form .form-header .form-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1B5E20;
  margin-bottom: 8px;
}
.contact-form .form-header .form-subtitle {
  color: #666;
  font-size: 0.95rem;
}

.filter-form {
  background: rgba(76, 175, 80, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}
.filter-form .filter-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1B5E20;
  margin-bottom: 16px;
}
.filter-form .filter-group {
  margin-bottom: 16px;
}
.filter-form .filter-group .filter-label {
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}
.filter-form .filter-group .filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-form .filter-group .filter-options .filter-option {
  background: white;
  border: 2px solid rgba(76, 175, 80, 0.2);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 0.9rem;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-form .filter-group .filter-options .filter-option:hover {
  border-color: #4CAF50;
  color: #2E7D32;
}
.filter-form .filter-group .filter-options .filter-option.active {
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  border-color: #2E7D32;
  color: white;
}

@media (max-width: 768px) {
  .form-container {
    padding: 16px;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .register-form,
  .contact-form {
    max-width: 100%;
  }
  .filter-form {
    padding: 16px;
  }
  .filter-form .filter-options {
    flex-direction: column;
  }
  .filter-form .filter-options .filter-option {
    text-align: center;
  }
}
.organic-certification {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}
.organic-certification .cert-icon {
  font-size: 1.2rem;
}
.organic-certification.large {
  padding: 12px 24px;
  font-size: 1rem;
}
.organic-certification.large .cert-icon {
  font-size: 1.4rem;
}
.organic-certification.small {
  padding: 4px 8px;
  font-size: 0.8rem;
}
.organic-certification.small .cert-icon {
  font-size: 1rem;
}

.organic-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.organic-features .feature-tag {
  background: #81C784;
  color: #1B5E20;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.organic-features .feature-tag .feature-icon {
  font-size: 1rem;
}
.organic-features .feature-tag.premium {
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  color: white;
}
.organic-features .feature-tag.eco-friendly {
  background: rgba(76, 175, 80, 0.1);
  color: #1B5E20;
  border: 1px solid #4CAF50;
}

.organic-product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(76, 175, 80, 0.1);
  position: relative;
}
.organic-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
  border-color: #4CAF50;
}
.organic-product-card .organic-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}
.organic-product-card .product-image {
  position: relative;
  overflow: hidden;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}
.organic-product-card .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.3s ease;
  background: white;
}
.organic-product-card .product-image:hover img {
  transform: scale(1.05);
}
.organic-product-card .product-image .organic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.organic-product-card .product-image:hover .organic-overlay {
  opacity: 1;
}
.organic-product-card .product-content {
  padding: 20px;
}
.organic-product-card .product-content .product-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.4;
}
.organic-product-card .product-content .product-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 12px;
}
.organic-product-card .product-content .organic-features {
  margin-bottom: 16px;
}
.organic-product-card .product-content .product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #E53E3E;
  margin-bottom: 16px;
}
.organic-product-card .product-content .product-actions {
  display: flex;
  gap: 8px;
}
.organic-product-card .product-content .product-actions .btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.organic-banner {
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  color: white;
  padding: 40px 20px;
  text-align: center;
  border-radius: 16px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.organic-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  animation: float 20s linear infinite;
}
.organic-banner .banner-content {
  position: relative;
  z-index: 2;
}
.organic-banner .banner-content .banner-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.organic-banner .banner-content .banner-subtitle {
  font-size: 1.2rem;
  margin-bottom: 24px;
  opacity: 0.9;
}
.organic-banner .banner-content .banner-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
}
.organic-banner .banner-content .banner-features .feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}
.organic-banner .banner-content .banner-features .feature .feature-icon {
  font-size: 1.5rem;
}
.organic-banner .banner-content .banner-cta .btn {
  background: white;
  color: #1B5E20;
  padding: 12px 32px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.organic-banner .banner-content .banner-cta .btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.organic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.organic-grid .organic-item {
  background: white;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.1);
}
.organic-grid .organic-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
  border-color: #4CAF50;
}
.organic-grid .organic-item .item-icon {
  font-size: 3rem;
  color: #2E7D32;
  margin-bottom: 16px;
}
.organic-grid .organic-item .item-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.organic-grid .organic-item .item-description {
  color: #666;
  line-height: 1.5;
  margin-bottom: 16px;
}
.organic-grid .organic-item .item-features {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.organic-grid .organic-item .item-features .feature-tag {
  background: #81C784;
  color: #1B5E20;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
}

.organic-cert-info {
  background: rgba(76, 175, 80, 0.05);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid rgba(76, 175, 80, 0.1);
}
.organic-cert-info .cert-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.organic-cert-info .cert-header .cert-icon {
  font-size: 2rem;
  color: #2E7D32;
}
.organic-cert-info .cert-header .cert-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1B5E20;
}
.organic-cert-info .cert-content {
  color: #666;
  line-height: 1.6;
}
.organic-cert-info .cert-content .cert-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.organic-cert-info .cert-content .cert-features .cert-feature {
  display: flex;
  align-items: center;
  gap: 8px;
}
.organic-cert-info .cert-content .cert-features .cert-feature .feature-icon {
  color: #2E7D32;
  font-size: 1.2rem;
}
.organic-cert-info .cert-content .cert-features .cert-feature .feature-text {
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .organic-banner {
    padding: 24px 16px;
  }
  .organic-banner .banner-content .banner-title {
    font-size: 2rem;
  }
  .organic-banner .banner-content .banner-subtitle {
    font-size: 1rem;
  }
  .organic-banner .banner-content .banner-features {
    flex-direction: column;
    gap: 16px;
  }
  .organic-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .organic-cert-info {
    padding: 16px;
  }
  .organic-cert-info .cert-content .cert-features {
    grid-template-columns: 1fr;
  }
}
@keyframes float {
  0% {
    transform: translateX(-100px) translateY(-100px);
  }
  100% {
    transform: translateX(100px) translateY(100px);
  }
}
.spice-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.spice-category.brown-spice {
  background: linear-gradient(135deg, #8D6E63 0%, #A1887F 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(141, 110, 99, 0.3);
}
.spice-category.gold-spice {
  background: linear-gradient(135deg, #FF8F00 0%, #FFB74D 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 143, 0, 0.3);
}
.spice-category.red-spice {
  background: linear-gradient(135deg, #D32F2F 0%, #F44336 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}
.spice-category.orange-spice {
  background: linear-gradient(135deg, #FF7043 0%, #FFAB91 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 112, 67, 0.3);
}
.spice-category .spice-icon {
  font-size: 1.1rem;
}

.spice-product-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fffe 100%);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 32px rgba(76, 175, 80, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  border: none;
}
.spice-product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(76, 175, 80, 0.15), 0 8px 24px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  background: linear-gradient(145deg, #ffffff 0%, #f0fdf4 100%);
}
.spice-product-card .spice-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}
.spice-product-card .product-image {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.05) 0%, rgba(76, 175, 80, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.spice-product-card .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.3s ease;
  background: white;
}
.spice-product-card .product-image:hover img {
  transform: scale(1.05);
}
.spice-product-card .product-image .spice-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.spice-product-card .product-image:hover .spice-overlay {
  opacity: 1;
}
.spice-product-card .product-content {
  padding: 20px;
}
.spice-product-card .product-content .product-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.4;
}
.spice-product-card .product-content .spice-origin {
  color: #8D6E63;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.spice-product-card .product-content .spice-origin::before {
  content: "📍 ";
  margin-right: 4px;
}
.spice-product-card .product-content .spice-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 12px;
}
.spice-product-card .product-content .spice-properties {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.spice-product-card .product-content .spice-properties .property-tag {
  background: rgba(76, 175, 80, 0.1);
  color: #1B5E20;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}
.spice-product-card .product-content .spice-properties .property-tag.organic {
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  color: white;
}
.spice-product-card .product-content .spice-properties .property-tag.premium {
  background: linear-gradient(135deg, #FF8F00 0%, #FFB74D 100%);
  color: white;
}
.spice-product-card .product-content .product-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #E53E3E;
  margin-bottom: 16px;
}
.spice-product-card .product-content .product-actions {
  display: flex;
  gap: 8px;
}
.spice-product-card .product-content .product-actions .btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.spice-detail .spice-gallery .main-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
  border: 2px solid rgba(76, 175, 80, 0.1);
}
.spice-detail .spice-gallery .main-image img {
  width: 100%;
  height: 400px;
  -o-object-fit: fill;
     object-fit: fill;
}
.spice-detail .spice-gallery .thumbnail-images {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.spice-detail .spice-gallery .thumbnail-images .thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.spice-detail .spice-gallery .thumbnail-images .thumbnail:hover {
  border-color: #4CAF50;
}
.spice-detail .spice-gallery .thumbnail-images .thumbnail.active {
  border-color: #2E7D32;
}
.spice-detail .spice-gallery .thumbnail-images .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
.spice-detail .spice-info .spice-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}
.spice-detail .spice-info .spice-origin {
  color: #8D6E63;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.spice-detail .spice-info .spice-origin::before {
  content: "📍 ";
  margin-right: 8px;
}
.spice-detail .spice-info .spice-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #E53E3E;
  margin-bottom: 20px;
}
.spice-detail .spice-info .spice-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 1.1rem;
}
.spice-detail .spice-info .spice-properties {
  margin-bottom: 24px;
}
.spice-detail .spice-info .spice-properties .property-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.spice-detail .spice-info .spice-properties .property-item .property-icon {
  color: #2E7D32;
  font-size: 1.2rem;
}
.spice-detail .spice-info .spice-properties .property-item .property-text {
  color: #666;
}
.spice-detail .spice-info .spice-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.spice-detail .spice-info .spice-actions .btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.spice-knowledge-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.1);
}
.spice-knowledge-card .knowledge-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.spice-knowledge-card .knowledge-header .knowledge-icon {
  font-size: 1.5rem;
  color: #2E7D32;
}
.spice-knowledge-card .knowledge-header .knowledge-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1B5E20;
}
.spice-knowledge-card .knowledge-content {
  color: #666;
  line-height: 1.6;
}
.spice-knowledge-card .knowledge-content .knowledge-list {
  margin-top: 12px;
}
.spice-knowledge-card .knowledge-content .knowledge-list .knowledge-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.spice-knowledge-card .knowledge-content .knowledge-list .knowledge-item .item-icon {
  color: #2E7D32;
  font-size: 1rem;
  margin-top: 2px;
}
.spice-knowledge-card .knowledge-content .knowledge-list .knowledge-item .item-text {
  flex: 1;
}

.spice-usage-tips {
  background: rgba(76, 175, 80, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(76, 175, 80, 0.1);
}
.spice-usage-tips .tips-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.spice-usage-tips .tips-header .tips-icon {
  font-size: 1.3rem;
  color: #2E7D32;
}
.spice-usage-tips .tips-header .tips-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1B5E20;
}
.spice-usage-tips .tips-content .tip-item {
  background: white;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 8px;
  border-left: 4px solid #4CAF50;
}
.spice-usage-tips .tips-content .tip-item .tip-title {
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}
.spice-usage-tips .tips-content .tip-item .tip-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .spice-product-card .product-content {
    padding: 16px;
  }
  .spice-product-card .product-content .product-title {
    font-size: 1.1rem;
  }
  .spice-product-card .product-content .spice-properties .property-tag {
    font-size: 0.75rem;
    padding: 3px 6px;
  }
  .spice-detail .spice-info .spice-title {
    font-size: 1.6rem;
  }
  .spice-detail .spice-info .spice-price {
    font-size: 1.8rem;
  }
  .spice-detail .spice-info .spice-actions {
    flex-direction: column;
  }
  .spice-detail .spice-info .spice-actions .btn {
    width: 100%;
  }
  .spice-knowledge-card,
  .spice-usage-tips {
    padding: 16px;
  }
}
.faq-section {
  background: rgba(76, 175, 80, 0.08);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.15);
}
.faq-section .faq-header {
  text-align: center;
  margin-bottom: 32px;
}
.faq-section .faq-header .faq-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1B5E20;
  margin-bottom: 8px;
}
.faq-section .faq-header .faq-title::before {
  content: "❓";
  margin-right: 12px;
  font-size: 1.8rem;
}
.faq-section .faq-header .faq-subtitle {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.5;
}
.faq-section .faq-categories {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.faq-section .faq-categories .faq-category {
  background: rgba(76, 175, 80, 0.1);
  border: 2px solid transparent;
  border-radius: 25px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1B5E20;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-section .faq-categories .faq-category:hover {
  background: rgba(76, 175, 80, 0.2);
  transform: translateY(-2px);
}
.faq-section .faq-categories .faq-category.active {
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  color: white;
  border-color: #2E7D32;
}
.faq-section .faq-list .faq-item {
  background: rgba(76, 175, 80, 0.02);
  border: 1px solid rgba(76, 175, 80, 0.1);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-section .faq-list .faq-item:not([data-category=general]) {
  display: none;
}
.faq-section .faq-list .faq-item:hover {
  border-color: #4CAF50;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}
.faq-section .faq-list .faq-item .faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  transition: all 0.3s ease;
}
.faq-section .faq-list .faq-item .faq-question:hover {
  background: rgba(76, 175, 80, 0.05);
}
.faq-section .faq-list .faq-item .faq-question .question-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  flex: 1;
  margin-right: 16px;
}
.faq-section .faq-list .faq-item .faq-question .question-icon {
  color: #2E7D32;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.faq-section .faq-list .faq-item .faq-question.active .question-icon {
  transform: rotate(180deg);
}
.faq-section .faq-list .faq-item .faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: rgba(76, 175, 80, 0.02);
}
.faq-section .faq-list .faq-item .faq-answer.active {
  padding: 20px;
  max-height: 500px;
}
.faq-section .faq-list .faq-item .faq-answer .answer-content {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}
.faq-section .faq-list .faq-item .faq-answer .answer-content .answer-list {
  margin-top: 12px;
}
.faq-section .faq-list .faq-item .faq-answer .answer-content .answer-list .answer-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.faq-section .faq-list .faq-item .faq-answer .answer-content .answer-list .answer-item .item-icon {
  color: #2E7D32;
  font-size: 1rem;
  margin-top: 2px;
}
.faq-section .faq-list .faq-item .faq-answer .answer-content .answer-list .answer-item .item-text {
  flex: 1;
}
.faq-section .faq-list .faq-item .faq-answer .answer-content .answer-highlight {
  background: rgba(76, 175, 80, 0.1);
  border-left: 4px solid #2E7D32;
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 12px;
  font-weight: 500;
  color: #1B5E20;
}

.spice-faq .faq-item .faq-question .question-text::before {
  content: "🌿 ";
  margin-right: 8px;
}
.spice-faq .faq-item .faq-answer .answer-content .spice-tip {
  background: linear-gradient(135deg, #FF8F00 0%, #FFB74D 100%);
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 12px;
  font-weight: 500;
}
.spice-faq .faq-item .faq-answer .answer-content .spice-tip::before {
  content: "💡 ";
  margin-right: 8px;
}
.spice-faq .faq-item .faq-answer .answer-content .spice-warning {
  background: linear-gradient(135deg, #D32F2F 0%, #F44336 100%);
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 12px;
  font-weight: 500;
}
.spice-faq .faq-item .faq-answer .answer-content .spice-warning::before {
  content: "⚠️ ";
  margin-right: 8px;
}

.faq-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.faq-stats .stat-item {
  background: rgba(76, 175, 80, 0.05);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(76, 175, 80, 0.1);
}
.faq-stats .stat-item .stat-icon {
  font-size: 2rem;
  color: #2E7D32;
  margin-bottom: 8px;
}
.faq-stats .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #1B5E20;
  margin-bottom: 4px;
}
.faq-stats .stat-item .stat-label {
  color: #666;
  font-size: 0.9rem;
}

.faq-support {
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  color: white;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.faq-support::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
}
.faq-support::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  z-index: 0;
}
.faq-support .support-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.faq-support .support-title::before {
  content: "💬";
  margin-right: 12px;
  font-size: 1.6rem;
}
.faq-support .support-description {
  font-size: 1.1rem;
  margin-bottom: 32px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}
.faq-support .support-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.faq-support .support-actions .btn-consultation {
  background: white;
  border: none;
  border-radius: 16px;
  padding: 20px 24px;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.faq-support .support-actions .btn-consultation:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}
.faq-support .support-actions .btn-consultation:hover .btn-arrow {
  transform: translateX(4px);
}
.faq-support .support-actions .btn-consultation:hover.btn-consultation-primary {
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  color: white;
}
.faq-support .support-actions .btn-consultation:hover.btn-consultation-primary .btn-text .btn-title {
  color: white;
}
.faq-support .support-actions .btn-consultation:hover.btn-consultation-primary .btn-text .btn-subtitle {
  color: rgba(255, 255, 255, 0.8);
}
.faq-support .support-actions .btn-consultation:hover.btn-consultation-primary i:not(.btn-arrow) {
  color: white;
}
.faq-support .support-actions .btn-consultation:hover.btn-consultation-secondary {
  background: linear-gradient(135deg, #FF8F00 0%, #FFB74D 100%);
  color: white;
}
.faq-support .support-actions .btn-consultation:hover.btn-consultation-secondary .btn-text .btn-title {
  color: white;
}
.faq-support .support-actions .btn-consultation:hover.btn-consultation-secondary .btn-text .btn-subtitle {
  color: rgba(255, 255, 255, 0.8);
}
.faq-support .support-actions .btn-consultation:hover.btn-consultation-secondary i:not(.btn-arrow) {
  color: white;
}
.faq-support .support-actions .btn-consultation:active {
  transform: translateY(-2px) scale(0.98);
}
.faq-support .support-actions .btn-consultation i:not(.btn-arrow) {
  font-size: 1.5rem;
  color: #2E7D32;
  transition: all 0.3s ease;
}
.faq-support .support-actions .btn-consultation .btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.faq-support .support-actions .btn-consultation .btn-text .btn-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1B5E20;
  margin-bottom: 2px;
  transition: all 0.3s ease;
}
.faq-support .support-actions .btn-consultation .btn-text .btn-subtitle {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  transition: all 0.3s ease;
}
.faq-support .support-actions .btn-consultation .btn-arrow {
  font-size: 1rem;
  color: #2E7D32;
  transition: all 0.3s ease;
}
.faq-support .support-actions .btn-consultation-primary {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.9) 0%, rgba(76, 175, 80, 0.8) 100%);
  border: 2px solid rgba(46, 125, 50, 0.3);
}
.faq-support .support-actions .btn-consultation-primary i:not(.btn-arrow) {
  color: white;
}
.faq-support .support-actions .btn-consultation-primary .btn-text .btn-title {
  color: white;
}
.faq-support .support-actions .btn-consultation-primary .btn-text .btn-subtitle {
  color: rgba(255, 255, 255, 0.9);
}
.faq-support .support-actions .btn-consultation-primary .btn-arrow {
  color: white;
}
.faq-support .support-actions .btn-consultation-secondary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 240, 0.9) 100%);
  border: 2px solid rgba(255, 143, 0, 0.2);
}
.faq-support .support-actions .btn-consultation-secondary i:not(.btn-arrow) {
  color: #FF8F00;
}
.faq-support .support-actions .btn-consultation-secondary .btn-text .btn-title {
  color: #FF8F00;
}
.faq-support .support-actions .btn-consultation-secondary .btn-text .btn-subtitle {
  color: #FF7043;
}
.faq-support .support-actions .btn-consultation-secondary .btn-arrow {
  color: #FF8F00;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 20px;
  }
  .faq-section .faq-header .faq-title {
    font-size: 1.6rem;
  }
  .faq-section .faq-header .faq-subtitle {
    font-size: 1rem;
  }
  .faq-section .faq-categories {
    flex-direction: column;
    align-items: center;
  }
  .faq-section .faq-categories .faq-category {
    width: 100%;
    text-align: center;
    max-width: 200px;
  }
  .faq-section .faq-list .faq-item .faq-question {
    padding: 16px;
  }
  .faq-section .faq-list .faq-item .faq-question .question-text {
    font-size: 1rem;
  }
  .faq-section .faq-list .faq-item .faq-answer.active {
    padding: 16px;
  }
  .faq-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
  }
  .faq-support {
    padding: 24px;
  }
  .faq-support .support-title {
    font-size: 1.5rem;
  }
  .faq-support .support-title::before {
    font-size: 1.3rem;
  }
  .faq-support .support-description {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  .faq-support .support-actions {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .faq-support .support-actions .btn-consultation {
    width: 100%;
    max-width: 280px;
    padding: 16px 20px;
    min-width: auto;
  }
  .faq-support .support-actions .btn-consultation .btn-text .btn-title {
    font-size: 1rem;
  }
  .faq-support .support-actions .btn-consultation .btn-text .btn-subtitle {
    font-size: 0.85rem;
  }
  .faq-support .support-actions .btn-consultation i:not(.btn-arrow) {
    font-size: 1.3rem;
  }
}
.cultivation-section .cultivation-header {
  text-align: center;
  margin-bottom: 32px;
}
.cultivation-section .cultivation-header .cultivation-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1B5E20;
  margin-bottom: 8px;
}
.cultivation-section .cultivation-header .cultivation-title::before {
  content: "🌱";
  margin-right: 12px;
  font-size: 1.8rem;
}
.cultivation-section .cultivation-header .cultivation-subtitle {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.5;
}
.cultivation-section .cultivation-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.cultivation-section .cultivation-tabs .tab-button {
  background: rgba(76, 175, 80, 0.1);
  border: 2px solid transparent;
  border-radius: 25px;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1B5E20;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cultivation-section .cultivation-tabs .tab-button:hover {
  background: rgba(76, 175, 80, 0.2);
  transform: translateY(-2px);
}
.cultivation-section .cultivation-tabs .tab-button.active {
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  color: white;
  border-color: #2E7D32;
}
.cultivation-section .cultivation-content .tab-content {
  display: none;
}
.cultivation-section .cultivation-content .tab-content.active {
  display: block;
}

.cultivation-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.cultivation-steps .step-item {
  background: rgba(76, 175, 80, 0.05);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(76, 175, 80, 0.1);
  transition: all 0.3s ease;
  position: relative;
}
.cultivation-steps .step-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
  border-color: #4CAF50;
}
.cultivation-steps .step-item .step-number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.cultivation-steps .step-item .step-icon {
  font-size: 2.5rem;
  color: #2E7D32;
  margin-bottom: 16px;
}
.cultivation-steps .step-item .step-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1B5E20;
  margin-bottom: 8px;
}
.cultivation-steps .step-item .step-description {
  color: #666;
  line-height: 1.5;
  font-size: 0.95rem;
}

.cultivation-environment {
  background: rgba(76, 175, 80, 0.05);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}
.cultivation-environment .environment-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1B5E20;
  margin-bottom: 20px;
  text-align: center;
}
.cultivation-environment .environment-title::before {
  content: "🌍";
  margin-right: 8px;
}
.cultivation-environment .environment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.cultivation-environment .environment-grid .environment-item {
  background: white;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  border: 1px solid rgba(76, 175, 80, 0.1);
}
.cultivation-environment .environment-grid .environment-item .env-icon {
  font-size: 1.5rem;
  color: #2E7D32;
  margin-bottom: 8px;
}
.cultivation-environment .environment-grid .environment-item .env-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}
.cultivation-environment .environment-grid .environment-item .env-value {
  color: #666;
  font-size: 0.9rem;
}

.cultivation-timeline {
  position: relative;
  padding: 20px 0;
}
.cultivation-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  transform: translateX(-50%);
}
.cultivation-timeline .timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  position: relative;
}
.cultivation-timeline .timeline-item:nth-child(odd) {
  flex-direction: row;
}
.cultivation-timeline .timeline-item:nth-child(odd) .timeline-content {
  margin-right: 32px;
  text-align: right;
}
.cultivation-timeline .timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}
.cultivation-timeline .timeline-item:nth-child(even) .timeline-content {
  margin-left: 32px;
  text-align: left;
}
.cultivation-timeline .timeline-item .timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 2;
}
.cultivation-timeline .timeline-item .timeline-content {
  flex: 1;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.1);
}
.cultivation-timeline .timeline-item .timeline-content .timeline-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1B5E20;
  margin-bottom: 8px;
}
.cultivation-timeline .timeline-item .timeline-content .timeline-description {
  color: #666;
  line-height: 1.5;
}

.cultivation-tips {
  background: rgba(76, 175, 80, 0.05);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}
.cultivation-tips .tips-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1B5E20;
  margin-bottom: 20px;
  text-align: center;
}
.cultivation-tips .tips-title::before {
  content: "💡";
  margin-right: 8px;
}
.cultivation-tips .tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.cultivation-tips .tips-grid .tip-item {
  background: white;
  border-radius: 8px;
  padding: 16px;
  border-left: 4px solid #4CAF50;
}
.cultivation-tips .tips-grid .tip-item .tip-title {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.cultivation-tips .tips-grid .tip-item .tip-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.organic-certification-info {
  background: white;
  border-radius: 16px;
  padding: 32px;
  margin-top: 32px;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.1);
}
.organic-certification-info .cert-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1B5E20;
  margin-bottom: 16px;
  text-align: center;
}
.organic-certification-info .cert-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 32px;
  text-align: center;
}
.organic-certification-info .certification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.organic-certification-info .certification-grid .cert-item {
  background: rgba(76, 175, 80, 0.05);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(76, 175, 80, 0.1);
  transition: all 0.3s ease;
}
.organic-certification-info .certification-grid .cert-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
  border-color: #4CAF50;
}
.organic-certification-info .certification-grid .cert-item .cert-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.organic-certification-info .certification-grid .cert-item .cert-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1B5E20;
  margin-bottom: 8px;
}
.organic-certification-info .certification-grid .cert-item .cert-desc {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.5;
}
.organic-certification-info .certification-grid .cert-item .cert-badge {
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  color: white;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
}
.organic-certification-info .geographic-certification {
  background: rgba(76, 175, 80, 0.05);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}
.organic-certification-info .geographic-certification .geo-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1B5E20;
  margin-bottom: 16px;
  text-align: center;
}
.organic-certification-info .geographic-certification .geo-products {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.organic-certification-info .geographic-certification .geo-products .geo-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border-radius: 8px;
  padding: 12px 20px;
  border: 1px solid rgba(76, 175, 80, 0.2);
}
.organic-certification-info .geographic-certification .geo-products .geo-item .geo-name {
  font-weight: 600;
  color: #1B5E20;
}
.organic-certification-info .geographic-certification .geo-products .geo-item .geo-badge {
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  color: white;
  border-radius: 12px;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 500;
}
.organic-certification-info .geographic-certification .geo-desc {
  color: #666;
  text-align: center;
  font-size: 0.95rem;
}
.organic-certification-info .quality-system {
  margin-bottom: 32px;
}
.organic-certification-info .quality-system .quality-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1B5E20;
  margin-bottom: 20px;
  text-align: center;
}
.organic-certification-info .quality-system .quality-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.organic-certification-info .quality-system .quality-features .quality-item {
  background: rgba(76, 175, 80, 0.05);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(76, 175, 80, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.organic-certification-info .quality-system .quality-features .quality-item .quality-icon {
  font-size: 2rem;
  color: #2E7D32;
  flex-shrink: 0;
}
.organic-certification-info .quality-system .quality-features .quality-item .quality-content h5 {
  font-weight: 600;
  color: #1B5E20;
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.organic-certification-info .quality-system .quality-features .quality-item .quality-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}
.organic-certification-info .testing-standards {
  margin-bottom: 32px;
}
.organic-certification-info .testing-standards .testing-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1B5E20;
  margin-bottom: 20px;
  text-align: center;
}
.organic-certification-info .testing-standards .standards-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.organic-certification-info .testing-standards .standards-list .standard-item {
  background: white;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid rgba(76, 175, 80, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.organic-certification-info .testing-standards .standards-list .standard-item .standard-name {
  font-weight: 600;
  color: #1B5E20;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.organic-certification-info .testing-standards .standards-list .standard-item .standard-desc {
  color: #666;
  font-size: 0.85rem;
}
.organic-certification-info .brand-honors .honors-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1B5E20;
  margin-bottom: 20px;
  text-align: center;
}
.organic-certification-info .brand-honors .honors-list .honor-item {
  background: rgba(76, 175, 80, 0.05);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(76, 175, 80, 0.1);
  display: flex;
  align-items: center;
  gap: 16px;
}
.organic-certification-info .brand-honors .honors-list .honor-item .honor-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.organic-certification-info .brand-honors .honors-list .honor-item .honor-content h5 {
  font-weight: 600;
  color: #1B5E20;
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.organic-certification-info .brand-honors .honors-list .honor-item .honor-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .cultivation-section {
    padding: 20px;
  }
  .cultivation-section .cultivation-header .cultivation-title {
    font-size: 1.6rem;
  }
  .cultivation-section .cultivation-header .cultivation-subtitle {
    font-size: 1rem;
  }
  .cultivation-section .cultivation-tabs {
    flex-direction: column;
    align-items: center;
  }
  .cultivation-section .cultivation-tabs .tab-button {
    width: 100%;
    text-align: center;
    max-width: 200px;
  }
  .cultivation-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cultivation-environment {
    padding: 16px;
  }
  .cultivation-environment .environment-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
  }
  .cultivation-timeline::before {
    left: 20px;
  }
  .cultivation-timeline .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
  }
  .cultivation-timeline .timeline-item:nth-child(odd) .timeline-content, .cultivation-timeline .timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
    margin-right: 0;
    text-align: left;
  }
  .cultivation-timeline .timeline-item .timeline-marker {
    left: 20px;
    transform: translateX(-50%);
  }
  .cultivation-tips {
    padding: 16px;
  }
  .cultivation-tips .tips-grid {
    grid-template-columns: 1fr;
  }
  .organic-certification-info {
    padding: 24px;
  }
  .organic-certification-info .certification-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .organic-certification-info .geo-products {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .organic-certification-info .quality-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .organic-certification-info .standards-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.spice-knowledge-section {
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: none;
  border: none;
  background: transparent;
}
.spice-knowledge-section .knowledge-header {
  text-align: center;
  margin-bottom: 32px;
}
.spice-knowledge-section .knowledge-header .knowledge-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1B5E20;
  margin-bottom: 8px;
}
.spice-knowledge-section .knowledge-header .knowledge-title::before {
  content: "📚";
  margin-right: 12px;
  font-size: 1.8rem;
}
.spice-knowledge-section .knowledge-header .knowledge-subtitle {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.5;
}
.spice-knowledge-section .knowledge-categories {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.spice-knowledge-section .knowledge-categories .category-button {
  background: rgba(76, 175, 80, 0.1);
  border: 2px solid transparent;
  border-radius: 25px;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1B5E20;
  cursor: pointer;
  transition: all 0.3s ease;
}
.spice-knowledge-section .knowledge-categories .category-button:hover {
  background: rgba(76, 175, 80, 0.2);
  transform: translateY(-2px);
}
.spice-knowledge-section .knowledge-categories .category-button.active {
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  color: white;
  border-color: #2E7D32;
}
.spice-knowledge-section .knowledge-content .category-content {
  display: none;
}
.spice-knowledge-section .knowledge-content .category-content.active {
  display: block;
}

.spice-knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.spice-knowledge-grid .knowledge-card {
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
  border: none;
  transition: all 0.3s ease;
  aspect-ratio: 4/5;
}
.spice-knowledge-grid .knowledge-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
  border-color: transparent;
}
.spice-knowledge-grid .knowledge-card .card-image {
  position: relative;
  flex: 1 1 auto;
  height: auto;
  min-height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.spice-knowledge-grid .knowledge-card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.3s ease;
  background: transparent;
  display: block;
}
.spice-knowledge-grid .knowledge-card .card-image:hover img {
  transform: scale(1.05);
}
.spice-knowledge-grid .knowledge-card .card-image .spice-category-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
}
.spice-knowledge-grid .knowledge-card .card-image .spice-category-badge.brown-spice {
  background: linear-gradient(135deg, #8D6E63 0%, #A1887F 100%);
}
.spice-knowledge-grid .knowledge-card .card-image .spice-category-badge.gold-spice {
  background: linear-gradient(135deg, #FF8F00 0%, #FFB74D 100%);
}
.spice-knowledge-grid .knowledge-card .card-image .spice-category-badge.red-spice {
  background: linear-gradient(135deg, #D32F2F 0%, #F44336 100%);
}
.spice-knowledge-grid .knowledge-card .card-image .spice-category-badge.orange-spice {
  background: linear-gradient(135deg, #FF7043 0%, #FFAB91 100%);
}
.spice-knowledge-grid .knowledge-card .card-content {
  padding: 20px;
}
.spice-knowledge-grid .knowledge-card .card-content .card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.spice-knowledge-grid .knowledge-card .card-content .card-origin {
  color: #8D6E63;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.spice-knowledge-grid .knowledge-card .card-content .card-origin::before {
  content: "📍 ";
  margin-right: 4px;
}
.spice-knowledge-grid .knowledge-card .card-content .card-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 12px;
}
.spice-knowledge-grid .knowledge-card .card-content .card-properties {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.spice-knowledge-grid .knowledge-card .card-content .card-properties .property-tag {
  background: rgba(76, 175, 80, 0.1);
  color: #1B5E20;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}
.spice-knowledge-grid .knowledge-card .card-content .card-actions {
  display: flex;
  gap: 8px;
}
.spice-knowledge-grid .knowledge-card .card-content .card-actions .btn {
  flex: 1;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.spice-knowledge-grid .no-products-message {
  text-align: center;
  padding: 40px 20px;
  color: #666;
  font-size: 1.1rem;
}
.spice-knowledge-grid .no-products-message p {
  margin: 0;
}

.spice-detail-modal .modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}
.spice-detail-modal .modal-header {
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  color: white;
  border-radius: 16px 16px 0 0;
  border-bottom: none;
  padding: 20px 24px;
}
.spice-detail-modal .modal-header .modal-title {
  font-size: 1.3rem;
  font-weight: 600;
}
.spice-detail-modal .modal-header .btn-close {
  filter: brightness(0) invert(1);
}
.spice-detail-modal .modal-body {
  padding: 24px;
}
.spice-detail-modal .modal-body .spice-detail-content .detail-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.spice-detail-modal .modal-body .spice-detail-content .detail-image img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.spice-detail-modal .modal-body .spice-detail-content .detail-info .detail-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}
.spice-detail-modal .modal-body .spice-detail-content .detail-info .detail-origin {
  color: #8D6E63;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.spice-detail-modal .modal-body .spice-detail-content .detail-info .detail-origin::before {
  content: "📍 ";
  margin-right: 8px;
}
.spice-detail-modal .modal-body .spice-detail-content .detail-info .detail-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}
.spice-detail-modal .modal-body .spice-detail-content .detail-info .detail-properties {
  margin-bottom: 20px;
}
.spice-detail-modal .modal-body .spice-detail-content .detail-info .detail-properties .property-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.spice-detail-modal .modal-body .spice-detail-content .detail-info .detail-properties .property-item .property-icon {
  color: #2E7D32;
  font-size: 1.1rem;
}
.spice-detail-modal .modal-body .spice-detail-content .detail-info .detail-properties .property-item .property-text {
  color: #666;
}
.spice-detail-modal .modal-body .spice-detail-content .detail-info .detail-usage {
  background: rgba(76, 175, 80, 0.05);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}
.spice-detail-modal .modal-body .spice-detail-content .detail-info .detail-usage .usage-title {
  font-weight: 600;
  color: #1B5E20;
  margin-bottom: 8px;
}
.spice-detail-modal .modal-body .spice-detail-content .detail-info .detail-usage .usage-list .usage-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}
.spice-detail-modal .modal-body .spice-detail-content .detail-info .detail-usage .usage-list .usage-item .usage-icon {
  color: #2E7D32;
  font-size: 1rem;
  margin-top: 2px;
}
.spice-detail-modal .modal-body .spice-detail-content .detail-info .detail-usage .usage-list .usage-item .usage-text {
  color: #666;
  font-size: 0.95rem;
}

.spice-search {
  margin-bottom: 32px;
}
.spice-search .search-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}
.spice-search .search-container .search-input {
  width: 100%;
  padding: 12px 20px 12px 50px;
  border: 2px solid rgba(76, 175, 80, 0.2);
  border-radius: 25px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.spice-search .search-container .search-input:focus {
  border-color: #2E7D32;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
  outline: none;
}
.spice-search .search-container .search-input::-moz-placeholder {
  color: #999;
}
.spice-search .search-container .search-input::placeholder {
  color: #999;
}
.spice-search .search-container .search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #2E7D32;
  font-size: 1.1rem;
}

.spice-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.spice-stats .stat-item {
  background: transparent;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: none;
}
.spice-stats .stat-item .stat-icon {
  font-size: 2rem;
  color: #2E7D32;
  margin-bottom: 8px;
}
.spice-stats .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #1B5E20;
  margin-bottom: 4px;
}
.spice-stats .stat-item .stat-label {
  color: #666;
  font-size: 0.9rem;
}

.spice-recommendations {
  background: transparent;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}
.spice-recommendations .recommendations-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1B5E20;
  margin-bottom: 20px;
  text-align: center;
}
.spice-recommendations .recommendations-title::before {
  content: "⭐";
  margin-right: 8px;
}
.spice-recommendations .recommendations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.spice-recommendations .recommendations-grid .recommendation-item {
  background: transparent;
  border-radius: 8px;
  padding: 16px;
  border: none;
  transition: all 0.3s ease;
}
.spice-recommendations .recommendations-grid .recommendation-item:hover {
  transform: translateY(-2px);
  box-shadow: none;
}
.spice-recommendations .recommendations-grid .recommendation-item .rec-title {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.spice-recommendations .recommendations-grid .recommendation-item .rec-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .spice-knowledge-section {
    padding: 20px;
  }
  .spice-knowledge-section .knowledge-header .knowledge-title {
    font-size: 1.6rem;
  }
  .spice-knowledge-section .knowledge-header .knowledge-subtitle {
    font-size: 1rem;
  }
  .spice-knowledge-section .knowledge-categories {
    flex-direction: column;
    align-items: center;
  }
  .spice-knowledge-section .knowledge-categories .category-button {
    width: 100%;
    text-align: center;
    max-width: 200px;
  }
  .spice-knowledge-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .spice-knowledge-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .spice-detail-modal .modal-body {
    padding: 16px;
  }
  .spice-detail-modal .modal-body .spice-detail-content .detail-image img {
    height: 200px;
  }
  .spice-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
  }
  .spice-recommendations {
    padding: 16px;
  }
  .spice-recommendations .recommendations-grid {
    grid-template-columns: 1fr;
  }
}
.spice-knowledge-section {
  padding: 60px 0;
  background: #2E7D32;
  position: relative;
  overflow: hidden;
}
.spice-knowledge-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 5 L60 25 L80 25 L65 40 L70 60 L50 50 L30 60 L35 40 L20 25 L40 25 Z' fill='rgba(255,255,255,0.3)'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 15 C40 15, 30 25, 30 35 C30 50, 50 70, 50 70 C50 70, 70 50, 70 35 C70 25, 60 15, 50 15 Z' fill='rgba(255,255,255,0.25)'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='20' fill='rgba(255,255,255,0.2)'/%3E%3Ccircle cx='50' cy='50' r='12' fill='rgba(255,255,255,0.3)'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='50' cy='50' rx='25' ry='15' fill='rgba(255,255,255,0.28)'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L55 30 L75 30 L60 45 L65 65 L50 55 L35 65 L40 45 L25 30 L45 30 Z' fill='rgba(255,255,255,0.25)'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='18' fill='rgba(255,255,255,0.22)'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Crect x='30' y='40' width='40' height='20' rx='10' fill='rgba(255,255,255,0.2)'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 20 C40 20, 30 30, 30 40 C30 50, 40 60, 50 60 C60 60, 70 50, 70 40 C70 30, 60 20, 50 20 Z' fill='rgba(255,255,255,0.18)'/%3E%3C/svg%3E");
  background-size: 150px 150px, 120px 120px, 100px 100px, 110px 110px, 130px 130px, 90px 90px, 100px 100px, 80px 80px;
  background-position: 5% 10%, 90% 5%, 15% 70%, 85% 75%, 10% 50%, 95% 60%, 25% 30%, 75% 85%;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
  animation: spiceFloat 25s ease-in-out infinite;
}
.spice-knowledge-section .knowledge-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.spice-knowledge-section .knowledge-header .knowledge-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  position: relative;
}
.spice-knowledge-section .knowledge-header .knowledge-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #4CAF50, #66BB6A);
  border-radius: 2px;
}
.spice-knowledge-section .knowledge-header .knowledge-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.spice-knowledge-section .knowledge-categories {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.spice-knowledge-section .knowledge-categories .category-button {
  padding: 12px 24px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
}
.spice-knowledge-section .knowledge-categories .category-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 25px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.3) 0%, rgba(139, 195, 74, 0.2) 50%, rgba(76, 175, 80, 0.3) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.spice-knowledge-section .knowledge-categories .category-button:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.spice-knowledge-section .knowledge-categories .category-button:hover::before {
  opacity: 1;
}
.spice-knowledge-section .knowledge-categories .category-button.active {
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
  border-color: #4CAF50;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}
.spice-knowledge-section .knowledge-categories .category-button.active:hover {
  background: linear-gradient(135deg, #66BB6A, #8BC34A);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}
.spice-knowledge-section .spice-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}
.spice-knowledge-section .spice-stats .stat-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.12) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.spice-knowledge-section .spice-stats .stat-item:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.2) 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}
.spice-knowledge-section .spice-stats .stat-item .stat-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.spice-knowledge-section .spice-stats .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.spice-knowledge-section .spice-stats .stat-item .stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.spice-knowledge-section .knowledge-content {
  position: relative;
  z-index: 2;
}
.spice-knowledge-section .knowledge-content .category-content {
  display: none;
}
.spice-knowledge-section .knowledge-content .category-content.active {
  display: block;
}
.spice-knowledge-section .knowledge-content .spice-knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
.spice-knowledge-section .knowledge-content .knowledge-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.12) 100%);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  aspect-ratio: 4/5;
  min-height: 0;
  position: relative;
}
.spice-knowledge-section .knowledge-content .knowledge-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.3) 0%, rgba(139, 195, 74, 0.2) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(139, 195, 74, 0.2) 75%, rgba(76, 175, 80, 0.3) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.spice-knowledge-section .knowledge-content .knowledge-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.spice-knowledge-section .knowledge-content .knowledge-card:hover {
  transform: translateY(-12px) scale(1.02);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.2) 100%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}
.spice-knowledge-section .knowledge-content .knowledge-card:hover::before {
  opacity: 1;
}
.spice-knowledge-section .knowledge-content .knowledge-card:hover::after {
  opacity: 1;
}
.spice-knowledge-section .knowledge-content .knowledge-card .card-image {
  position: relative;
  flex: 1 1 auto;
  height: auto;
  min-height: 0;
  overflow: hidden;
}
.spice-knowledge-section .knowledge-content .knowledge-card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.spice-knowledge-section .knowledge-content .knowledge-card .card-image:hover img {
  transform: scale(1.05);
}
.spice-knowledge-section .knowledge-content .knowledge-card .card-image .spice-category-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 8px 14px;
  border-radius: 18px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}
.spice-knowledge-section .knowledge-content .knowledge-card .card-image .spice-category-badge.brown-spice {
  background: linear-gradient(135deg, #8D6E63, #A1887F);
}
.spice-knowledge-section .knowledge-content .knowledge-card .card-image .spice-category-badge.gold-spice {
  background: linear-gradient(135deg, #FFB74D, #FFA726);
}
.spice-knowledge-section .knowledge-content .knowledge-card .card-image .spice-category-badge.red-spice {
  background: linear-gradient(135deg, #E57373, #EF5350);
}
.spice-knowledge-section .knowledge-content .knowledge-card .card-image .spice-category-badge.orange-spice {
  background: linear-gradient(135deg, #FF8A65, #FF7043);
}
.spice-knowledge-section .knowledge-content .knowledge-card .card-image .image-actions {
  position: absolute;
  inset: 0;
  padding: 0;
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  background: transparent;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 5;
  pointer-events: none;
}
.spice-knowledge-section .knowledge-content .knowledge-card .card-image .image-actions .image-action {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #ffffff;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.18s ease;
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  pointer-events: auto;
}
.spice-knowledge-section .knowledge-content .knowledge-card .card-image .image-actions .image-action:hover {
  transform: translateY(-2px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.25);
}
.spice-knowledge-section .knowledge-content .knowledge-card .card-image:hover .image-actions {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.spice-knowledge-section .knowledge-content .knowledge-card .card-image:hover img {
  filter: brightness(0.9);
}
.spice-knowledge-section .knowledge-content .knowledge-card:hover .image-actions {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.spice-knowledge-section .knowledge-content .knowledge-card:hover .image-actions .image-action {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.spice-knowledge-section .knowledge-content .knowledge-card .card-content {
  display: none;
}
.spice-knowledge-section .knowledge-content .knowledge-card .card-image {
  z-index: 1;
}
.spice-knowledge-section .knowledge-content .knowledge-card .image-actions {
  z-index: 5;
  pointer-events: auto;
}
.spice-knowledge-section .knowledge-content .knowledge-card .image-actions .image-action {
  position: relative;
  z-index: 6;
}
.spice-knowledge-section .compact-btn {
  padding: 8px 16px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.spice-knowledge-section .compact-btn.btn-primary {
  background: #8D4E00 !important;
  color: #ffffff !important;
  border: 1px solid #8D4E00 !important;
}
.spice-knowledge-section .compact-btn.btn-primary:hover {
  background: #A0522D !important;
  border-color: #A0522D !important;
}
.spice-knowledge-section .compact-btn.btn-primary:active {
  background: #6B3A00 !important;
  border-color: #6B3A00 !important;
}
.spice-knowledge-section .compact-btn.btn-secondary {
  background: #DAA520 !important;
  color: #ffffff !important;
  border: 1px solid #DAA520 !important;
}
.spice-knowledge-section .compact-btn.btn-secondary:hover {
  background: #FFD700 !important;
  border-color: #FFD700 !important;
}
.spice-knowledge-section .compact-btn.btn-secondary:active {
  background: #B8860B !important;
  border-color: #B8860B !important;
}
.spice-knowledge-section .compact-btn.btn-secondary:disabled {
  background: #9E9E9E !important;
  color: #ffffff !important;
  border-color: #9E9E9E !important;
  cursor: not-allowed;
  opacity: 0.7;
}
.spice-knowledge-section .compact-btn.btn-secondary:disabled:hover {
  background: #9E9E9E !important;
  border-color: #9E9E9E !important;
}
.spice-knowledge-section .spice-recommendations {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  padding: 60px 50px;
  backdrop-filter: blur(25px);
  border: none;
  position: relative;
}
.spice-knowledge-section .spice-recommendations::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 28px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(139, 195, 74, 0.15) 25%, rgba(255, 255, 255, 0.08) 50%, rgba(139, 195, 74, 0.15) 75%, rgba(76, 175, 80, 0.2) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0.6;
  z-index: 1;
}
.spice-knowledge-section .spice-recommendations {
  position: relative;
  z-index: 2;
}
.spice-knowledge-section .spice-recommendations .recommendations-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.spice-knowledge-section .spice-recommendations .recommendations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.spice-knowledge-section .spice-recommendations .recommendation-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 25px;
  border: none;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}
.spice-knowledge-section .spice-recommendations .recommendation-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.spice-knowledge-section .spice-recommendations .recommendation-item .rec-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.spice-knowledge-section .spice-recommendations .recommendation-item .rec-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .spice-knowledge-section {
    padding: 80px 0;
  }
  .spice-knowledge-section .knowledge-header {
    margin-bottom: 40px;
  }
  .spice-knowledge-section .knowledge-header .knowledge-title {
    font-size: 2.5rem;
  }
  .spice-knowledge-section .knowledge-header .knowledge-subtitle {
    font-size: 1.1rem;
  }
  .spice-knowledge-section .knowledge-categories {
    gap: 15px;
    margin-bottom: 40px;
  }
  .spice-knowledge-section .knowledge-categories .category-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .spice-knowledge-section .spice-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
  }
  .spice-knowledge-section .spice-stats .stat-item {
    padding: 20px 15px;
  }
  .spice-knowledge-section .spice-stats .stat-item .stat-icon {
    font-size: 2rem;
  }
  .spice-knowledge-section .spice-stats .stat-item .stat-number {
    font-size: 2rem;
  }
  .spice-knowledge-section .knowledge-content .spice-knowledge-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .spice-knowledge-section .knowledge-content .knowledge-card .card-content {
    display: none;
  }
  .spice-knowledge-section .knowledge-content .knowledge-card .card-image {
    height: 240px;
  }
  .spice-knowledge-section .knowledge-content .knowledge-card .image-actions {
    opacity: 1;
    transform: translateY(0);
    padding: 12px 14px;
  }
  .spice-knowledge-section .knowledge-content .knowledge-card .image-action {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  .spice-knowledge-section .spice-recommendations {
    padding: 30px 20px;
  }
  .spice-knowledge-section .spice-recommendations .recommendations-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .spice-knowledge-section .spice-recommendations .recommendations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1199px) {
  .spice-knowledge-section .knowledge-content .spice-knowledge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@keyframes spiceFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.4;
  }
  25% {
    transform: translateY(-8px) rotate(0.5deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-4px) rotate(0deg);
    opacity: 0.5;
  }
  75% {
    transform: translateY(-12px) rotate(-0.5deg);
    opacity: 0.7;
  }
}
.cultivation-section {
  background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.cultivation-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(220px 220px at 5% 10%, rgba(255, 255, 255, 0.06), transparent 70%), radial-gradient(180px 180px at 95% 90%, rgba(255, 255, 255, 0.05), transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.cultivation-section::after {
  display: none;
}
.cultivation-section .container {
  position: relative;
  z-index: 2;
}

.cultivation-header {
  text-align: center;
  margin-bottom: 60px;
}
.cultivation-header .cultivation-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 16px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.cultivation-header .cultivation-title::before {
  content: "🌱";
  margin-right: 16px;
  font-size: 2.2rem;
}
.cultivation-header .cultivation-subtitle {
  color: #ffffff !important;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  font-weight: 500;
}

.cultivation-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.cultivation-tabs .tab-button {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff !important;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.cultivation-tabs .tab-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.cultivation-tabs .tab-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
}
.cultivation-tabs .tab-button:hover::before {
  left: 100%;
}
.cultivation-tabs .tab-button.active {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.9), rgba(255, 152, 0, 0.8));
  color: #ffffff !important;
  border-color: rgba(255, 193, 7, 0.5);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.cultivation-content .tab-content {
  display: none;
}
.cultivation-content .tab-content.active {
  display: block;
}

.cultivation-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}
.cultivation-steps .step-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 44px 25px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.cultivation-steps .step-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FFC107, #FF9800, #FFC107);
  background-size: 200% 100%;
  animation: stepGradient 3s ease-in-out infinite;
}
.cultivation-steps .step-item:hover {
  transform: translateY(-8px) scale(1.02);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}
.cultivation-steps .step-item .step-number {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #8B4513, #A0522D);
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  z-index: 3;
}
.cultivation-steps .step-item .step-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.cultivation-steps .step-item .step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.cultivation-steps .step-item .step-description {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-size: 1rem;
}

.cultivation-environment {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.cultivation-environment .environment-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.cultivation-environment .environment-title::before {
  content: "🌍";
  margin-right: 12px;
}
.cultivation-environment .environment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.cultivation-environment .environment-grid .environment-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.cultivation-environment .environment-grid .environment-item:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.cultivation-environment .environment-grid .environment-item .env-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}
.cultivation-environment .environment-grid .environment-item .env-label {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  font-size: 1rem;
}
.cultivation-environment .environment-grid .environment-item .env-value {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.cultivation-tips {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.cultivation-tips .tips-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.cultivation-tips .tips-title::before {
  content: "💡";
  margin-right: 12px;
}
.cultivation-tips .tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.cultivation-tips .tips-grid .tip-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  border-left: 4px solid rgba(255, 193, 7, 0.6);
  transition: all 0.3s ease;
}
.cultivation-tips .tips-grid .tip-item:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-left-color: rgba(255, 193, 7, 0.8);
}
.cultivation-tips .tips-grid .tip-item .tip-title {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  font-size: 1.1rem;
}
.cultivation-tips .tips-grid .tip-item .tip-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.6;
}

.organic-certification-info {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px;
  margin-top: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.organic-certification-info .cert-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.organic-certification-info .cert-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  text-align: center;
}
.organic-certification-info .certification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
.organic-certification-info .certification-grid .cert-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}
.organic-certification-info .certification-grid .cert-item:hover {
  transform: translateY(-8px) scale(1.02);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}
.organic-certification-info .certification-grid .cert-item .cert-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.organic-certification-info .certification-grid .cert-item .cert-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.organic-certification-info .certification-grid .cert-item .cert-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.organic-certification-info .certification-grid .cert-item .cert-badge {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.9), rgba(255, 152, 0, 0.8));
  color: #ffffff;
  border-radius: 25px;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}
.organic-certification-info .geographic-certification {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.organic-certification-info .geographic-certification .geo-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.organic-certification-info .geographic-certification .geo-products {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.organic-certification-info .geographic-certification .geo-products .geo-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 15px 25px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}
.organic-certification-info .geographic-certification .geo-products .geo-item:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.organic-certification-info .geographic-certification .geo-products .geo-item .geo-name {
  font-weight: 600;
  color: #ffffff;
  font-size: 1rem;
}
.organic-certification-info .geographic-certification .geo-products .geo-item .geo-badge {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.9), rgba(255, 152, 0, 0.8));
  color: #ffffff;
  border-radius: 15px;
  padding: 6px 15px;
  font-size: 0.85rem;
  font-weight: 500;
}
.organic-certification-info .geographic-certification .geo-desc {
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  font-size: 1rem;
}
.organic-certification-info .quality-system {
  margin-bottom: 40px;
}
.organic-certification-info .quality-system .quality-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 25px;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.organic-certification-info .quality-system .quality-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.organic-certification-info .quality-system .quality-features .quality-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
}
.organic-certification-info .quality-system .quality-features .quality-item:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.organic-certification-info .quality-system .quality-features .quality-item .quality-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}
.organic-certification-info .quality-system .quality-features .quality-item .quality-content h5 {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 1.1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.organic-certification-info .quality-system .quality-features .quality-item .quality-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.6;
}
.organic-certification-info .testing-standards {
  margin-bottom: 40px;
}
.organic-certification-info .testing-standards .testing-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 25px;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.organic-certification-info .testing-standards .standards-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.organic-certification-info .testing-standards .standards-list .standard-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}
.organic-certification-info .testing-standards .standards-list .standard-item:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.organic-certification-info .testing-standards .standards-list .standard-item .standard-name {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.organic-certification-info .testing-standards .standards-list .standard-item .standard-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

@keyframes cultivationFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}
@keyframes stepGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media (max-width: 768px) {
  .cultivation-section {
    padding: 60px 0;
  }
  .cultivation-section .cultivation-header {
    margin-bottom: 40px;
  }
  .cultivation-section .cultivation-header .cultivation-title {
    font-size: 2.2rem;
  }
  .cultivation-section .cultivation-header .cultivation-subtitle {
    font-size: 1.1rem;
  }
  .cultivation-section .cultivation-tabs {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
  }
  .cultivation-section .cultivation-tabs .tab-button {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
  .cultivation-steps {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  .cultivation-steps .step-item {
    padding: 25px 20px;
  }
  .cultivation-environment {
    padding: 30px 20px;
  }
  .cultivation-environment .environment-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
  }
  .cultivation-tips {
    padding: 30px 20px;
  }
  .cultivation-tips .tips-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .organic-certification-info {
    padding: 30px 20px;
  }
  .organic-certification-info .certification-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .organic-certification-info .geo-products {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .organic-certification-info .quality-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .organic-certification-info .standards-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.certificates-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(248, 249, 250, 0.5) 0%, rgba(240, 248, 240, 0.6) 50%, rgba(248, 249, 250, 0.5) 100%);
  position: relative;
  overflow: hidden;
}
.certificates-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(46, 125, 50, 0.03) 0%, transparent 50%);
  z-index: 1;
}
.certificates-section .section-header {
  position: relative;
  z-index: 2;
}
.certificates-section .section-header .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2E7D32;
  margin-bottom: 16px;
  position: relative;
}
.certificates-section .section-header .section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #4CAF50, #66BB6A, #8BC34A);
  border-radius: 2px;
}
.certificates-section .section-header .section-subtitle {
  font-size: 1.15rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}
.certificates-section .certificates-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.certificates-section .certificates-grid .organic-cert {
  border: 2px solid rgba(76, 175, 80, 0.3);
}
.certificates-section .certificates-grid .organic-cert::before {
  background: linear-gradient(90deg, #4CAF50, #66BB6A, #4CAF50);
  opacity: 1 !important;
}
.certificates-section .certificates-grid .organic-cert:hover {
  border-color: rgba(76, 175, 80, 0.5);
  background: linear-gradient(135deg, #ffffff 0%, rgba(240, 248, 240, 0.3) 100%);
}
.certificates-section .certificates-grid .organic-cert .certificate-info h4 {
  color: #2E7D32;
}
.certificates-section .certificates-grid .organic-cert .certificate-info p {
  color: #4CAF50;
  font-weight: 600;
}
.certificates-section .certificates-grid .geo-cert {
  border: 2px solid rgba(255, 193, 7, 0.3);
}
.certificates-section .certificates-grid .geo-cert::before {
  background: linear-gradient(90deg, #FFC107, #FFA000, #FFC107);
  opacity: 1 !important;
}
.certificates-section .certificates-grid .geo-cert:hover {
  border-color: rgba(255, 193, 7, 0.5);
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 248, 225, 0.3) 100%);
}
.certificates-section .certificates-grid .geo-cert .certificate-info h4 {
  color: #E65100;
}
.certificates-section .certificates-grid .geo-cert .certificate-info p {
  color: #FF8F00;
  font-weight: 600;
}
.certificates-section .certificates-grid .certificate-card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(76, 175, 80, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.certificates-section .certificates-grid .certificate-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4CAF50, #2E7D32, #4CAF50);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.certificates-section .certificates-grid .certificate-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.certificates-section .certificates-grid .certificate-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(76, 175, 80, 0.2);
  border-color: rgba(76, 175, 80, 0.3);
}
.certificates-section .certificates-grid .certificate-card:hover::before {
  opacity: 1;
}
.certificates-section .certificates-grid .certificate-card:hover::after {
  opacity: 1;
}
.certificates-section .certificates-grid .certificate-card:hover .certificate-image img {
  transform: scale(1.05);
}
.certificates-section .certificates-grid .certificate-card .certificate-image {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #f8f9fa, #e8f5e8);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.1);
}
.certificates-section .certificates-grid .certificate-card .certificate-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.4s ease;
}
.certificates-section .certificates-grid .certificate-card .certificate-info {
  text-align: center;
}
.certificates-section .certificates-grid .certificate-card .certificate-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1B5E20;
  margin-bottom: 8px;
  line-height: 1.3;
}
.certificates-section .certificates-grid .certificate-card .certificate-info p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .certificates-section {
    padding: 60px 0;
  }
  .certificates-section .section-header .section-title {
    font-size: 1.8rem;
  }
  .certificates-section .section-header .section-subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }
  .certificates-section .certificates-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }
  .certificates-section .certificates-grid .certificate-card {
    padding: 20px;
  }
  .certificates-section .certificates-grid .certificate-card .certificate-image {
    height: 240px;
  }
  .certificates-section .certificates-grid .certificate-card .certificate-info h4 {
    font-size: 1.1rem;
  }
  .certificates-section .certificates-grid .certificate-card .certificate-info p {
    font-size: 0.9rem;
  }
}
@media (min-width: 769px) and (max-width: 1199px) {
  .certificates-section .certificates-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
@media (min-width: 1400px) {
  .certificates-section .certificates-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
}
.min-h1 {
  min-height: 100px;
}

.min-h2 {
  min-height: 200px;
}

.min-h3 {
  min-height: 300px;
}

.min-h4 {
  min-height: 400px;
}

.min-h5 {
  min-height: 500px;
}

.min-h6 {
  min-height: 600px;
}

.wp-100 {
  width: 100px;
  flex: 0 0 100px;
}

.wp-200 {
  width: 200px;
  flex: 0 0 200px;
}

.wp-300 {
  width: 300px;
  flex: 0 0 300px;
}

.wp-400 {
  width: 400px;
  flex: 0 0 400px;
}

.wp-500 {
  width: 500px;
  flex: 0 0 500px;
}

.wp-600 {
  width: 600px;
  flex: 0 0 600px;
}

.wp-700 {
  width: 700px;
  flex: 0 0 700px;
}

.wp-800 {
  width: 800px;
  flex: 0 0 800px;
}

.wp-900 {
  width: 900px;
  flex: 0 0 900px;
}

.wp-1000 {
  width: 1000px;
  flex: 0 0 1000px;
}

.wp-100- {
  width: calc(100% - 100px);
  flex: 0 0 calc(100% - 100px);
}

.wp-200- {
  width: calc(100% - 200px);
  flex: 0 0 calc(100% - 200px);
}

.wp-300- {
  width: calc(100% - 300px);
  flex: 0 0 calc(100% - 300px);
}

.wp-400- {
  width: calc(100% - 400px);
  flex: 0 0 calc(100% - 400px);
}

.wp-500- {
  width: calc(100% - 500px);
  flex: 0 0 calc(100% - 500px);
}

.wp-600- {
  width: calc(100% - 600px);
  flex: 0 0 calc(100% - 600px);
}

.wp-700- {
  width: calc(100% - 700px);
  flex: 0 0 calc(100% - 700px);
}

.wp-800- {
  width: calc(100% - 800px);
  flex: 0 0 calc(100% - 800px);
}

.wp-900- {
  width: calc(100% - 900px);
  flex: 0 0 calc(100% - 900px);
}

.wp-1000- {
  width: calc(100% - 1000px);
  flex: 0 0 calc(100% - 1000px);
}

.h-min-100 {
  min-height: 100px;
}

.h-min-200 {
  min-height: 200px;
}

.h-min-300 {
  min-height: 300px;
}

.h-min-400 {
  min-height: 400px;
}

.h-min-500 {
  min-height: 500px;
}

.h-min-600 {
  min-height: 600px;
}

.h-min-700 {
  min-height: 700px;
}

.h-min-800 {
  min-height: 800px;
}

.h-min-900 {
  min-height: 900px;
}

.h-min-1000 {
  min-height: 1000px;
}

.w-min-100 {
  min-width: 100px;
}

.w-min-200 {
  min-width: 200px;
}

.w-min-300 {
  min-width: 300px;
}

.w-min-400 {
  min-width: 400px;
}

.w-min-500 {
  min-width: 500px;
}

.w-min-600 {
  min-width: 600px;
}

.w-min-700 {
  min-width: 700px;
}

.w-min-800 {
  min-width: 800px;
}

.w-min-900 {
  min-width: 900px;
}

.w-min-1000 {
  min-width: 1000px;
}

.w-max-100 {
  max-width: 100px;
}

.w-max-200 {
  max-width: 200px;
}

.w-max-300 {
  max-width: 300px;
}

.w-max-400 {
  max-width: 400px;
}

.w-max-500 {
  max-width: 500px;
}

.w-max-600 {
  max-width: 600px;
}

.w-max-700 {
  max-width: 700px;
}

.w-max-800 {
  max-width: 800px;
}

.w-max-900 {
  max-width: 900px;
}

.w-max-1000 {
  max-width: 1000px;
}

.hp-100 {
  height: 100px;
}

.hp-200 {
  height: 200px;
}

.hp-300 {
  height: 300px;
}

.hp-400 {
  height: 400px;
}

.hp-500 {
  height: 500px;
}

.hp-600 {
  height: 600px;
}

.hp-700 {
  height: 700px;
}

.hp-800 {
  height: 800px;
}

.hp-900 {
  height: 900px;
}

.hp-1000 {
  height: 1000px;
}

.wh-10 {
  height: 10px;
  width: 10px;
  flex: 0 0 10px;
}

.wh-20 {
  height: 20px;
  width: 20px;
  flex: 0 0 20px;
}

.wh-30 {
  height: 30px;
  width: 30px;
  flex: 0 0 30px;
}

.wh-40 {
  height: 40px;
  width: 40px;
  flex: 0 0 40px;
}

.wh-50 {
  height: 50px;
  width: 50px;
  flex: 0 0 50px;
}

.wh-60 {
  height: 60px;
  width: 60px;
  flex: 0 0 60px;
}

.wh-70 {
  height: 70px;
  width: 70px;
  flex: 0 0 70px;
}

.wh-80 {
  height: 80px;
  width: 80px;
  flex: 0 0 80px;
}

.wh-90 {
  height: 90px;
  width: 90px;
  flex: 0 0 90px;
}

.wh-100 {
  height: 100px;
  width: 100px;
  flex: 0 0 100px;
}

a {
  text-decoration: none;
}

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

html, body {
  overflow-x: hidden;
}

.container-fluid {
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.cursor-pointer {
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%) !important;
  color: #fff !important;
  border: none !important;
}

.btn-secondary {
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%) !important;
  border: 2px solid #2E7D32 !important;
  color: white !important;
}

[v-cloak] {
  display: none;
}

.container-fluid {
  max-width: 1400px;
  margin: 0 auto;
}

.table-response {
  width: 100%;
  overflow-x: auto;
}
.table-response thead {
  display: none;
}
@media (min-width: 768px) {
  .table-response thead {
    display: table-header-group;
  }
}
.table-response:not(.table-response.table-bordered) tr td:first-child, .table-response:not(.table-response.table-bordered) tr th:first-child {
  padding-left: 0;
}
.table-response:not(.table-response.table-bordered) tr td:last-child, .table-response:not(.table-response.table-bordered) tr th:last-child {
  padding-right: 0;
}
.table-response td {
  display: block;
  text-align: right;
  clear: both;
}
.table-response td::before {
  content: attr(data-title) ": ";
  float: left;
}
@media (min-width: 768px) {
  .table-response td::before {
    display: none;
  }
}
@media (min-width: 768px) {
  .table-response td {
    display: table-cell;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .table-response td {
    border-bottom: none;
  }
  .table-response td:last-child {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 24px;
    margin-bottom: 14px;
  }
}

.quantity-wrap {
  border: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  width: 140px;
  height: inherit;
  overflow: hidden;
  position: relative;
}
.quantity-wrap.disabled::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 1;
}
.quantity-wrap input {
  border: none;
  text-align: center;
  padding: 0;
  font-size: 18px;
  height: inherit;
  box-shadow: none !important;
}
.quantity-wrap input::-webkit-inner-spin-button, .quantity-wrap input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity-wrap div {
  font-size: 18px;
  height: inherit;
  width: 38px;
  flex: 0 0 38px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #666;
}
.quantity-wrap div:hover {
  color: #2E7D32;
}

.tabs-plus {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 24px;
  padding-bottom: 6px;
}
.tabs-plus .nav-item {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .tabs-plus .nav-item {
    margin-right: 40px;
  }
}
.tabs-plus .nav-link {
  padding-left: 2px;
  padding-right: 2px;
  border: none !important;
  color: #888;
  font-size: 14px;
  position: relative;
  cursor: pointer;
}
@media (min-width: 768px) {
  .tabs-plus .nav-link {
    font-size: 18px;
  }
}
.tabs-plus .nav-link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #222;
  bottom: -6px;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.3s;
  display: none;
}
.tabs-plus .nav-link.active {
  color: #222;
  font-weight: bold;
}
.tabs-plus .nav-link.active::after {
  transform: scaleX(1);
  display: block;
}

.is-up-file .img-upload-item {
  border-style: dashed !important;
}
.is-up-file .img-upload-item:hover {
  background-color: #f4f4f4 !important;
  border-color: #2E7D32 !important;
}
.is-up-file .img-upload-item:active {
  background-color: #e4e4e4 !important;
}
.is-up-file .img-upload-item .tool-wrap > div:first-of-type {
  border-right: 1px solid #fff;
}
.is-up-file .img-upload-item .tool-wrap > div:hover {
  background-color: #1d4ff3;
}

.swiper .swiper-pagination-bullet-active {
  background-color: #2E7D32;
}

.page-head {
  padding: 40px 0;
  background: #EFF1FE;
  text-align: center;
}
@media (max-width: 768px) {
  .page-head {
    padding: 20px 0;
  }
}
.page-head .page-title {
  font-size: 30px;
  color: #333;
  margin-bottom: 14px;
}
.page-head .breadcrumb {
  margin-bottom: 0;
  font-size: 15px;
}
.page-head .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "\f285";
  font-size: 12px;
  margin-top: 3px;
  font-family: "bootstrap-icons";
}
.page-head .breadcrumb a {
  text-decoration: none;
}

.page-product-content {
  margin-top: 3rem;
}
@media (max-width: 992px) {
  .page-product-content {
    margin-top: 1.5rem;
  }
}
.page-product-content .title-box {
  text-align: center;
  margin-bottom: 40px;
}
.page-product-content .title-box .title {
  font-size: 26px;
  color: #333;
  margin-bottom: 10px;
}
.page-product-content .title-box .sub-title {
  font-size: 16px;
  color: #666;
}
.page-product-content .product-item {
  margin-bottom: 30px;
  background-color: #fff;
  box-shadow: 0 10px 30px 0 rgba(194, 49, 244, 0.1);
}
.page-product-content .product-item .top {
  background-color: #F3F7FF;
  height: 70px;
  display: flex;
  align-items: center;
}
.page-product-content .product-item .top .left {
  width: 70px;
  height: 70px;
  background-color: #2E7D32;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-product-content .product-item .top .left i {
  color: #fff;
  font-size: 20px;
}
.page-product-content .product-item .top .name {
  font-size: 18px;
  padding: 0 10px 0 20px;
}
.page-product-content .product-item .content {
  padding: 20px;
  line-height: 2;
  font-size: 15px;
  color: #555;
}
@media (min-width: 992px) {
  .page-product-content .product-item .content {
    height: 220px;
  }
}

.page-service-content {
  margin-top: 3rem;
  color: #606B86;
}
.page-service-content .title-box {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .page-service-content .title-box {
    margin-bottom: 30px;
  }
}
.page-service-content .title-box .title {
  font-size: 26px;
  color: #333;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .page-service-content .title-box .title {
    font-size: 22px;
    text-align: center;
  }
}
.page-service-content .title-box .sub-title {
  font-size: 16px;
  max-width: 550px;
}
@media (max-width: 992px) {
  .page-service-content .title-box .sub-title {
    font-size: 12px;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .page-service-content .title-box .sub-title {
    line-height: 1.8;
  }
}
@media (min-width: 992px) {
  .page-service-content .service-row-2 {
    padding-left: 64px;
  }
}
.page-service-content .service-icon {
  max-width: 500px;
}
@media (max-width: 992px) {
  .page-service-content .service-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
  }
  .page-service-content .service-icon img {
    max-width: 80%;
  }
}
.page-service-content .service-item {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .page-service-content .service-item {
    margin-bottom: 20px;
  }
}
.page-service-content .service-item .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FCF3F4;
  margin-bottom: 20px;
}
.page-service-content .service-item .icon i {
  font-size: 18px;
  color: #FA4949;
}
.page-service-content .service-item .title {
  margin-bottom: 10px;
  color: #222;
  font-size: 18px;
}
.page-service-content .service-item .sub-title {
  color: #606B86;
  font-size: 14px;
  line-height: 1.8;
}

.page-about-content {
  margin-top: 3rem;
}
.page-about-content .about-text .main-title {
  font-size: 26px;
  color: #333;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .page-about-content .about-text .main-title {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.page-about-content .about-text .about-text-item {
  display: flex;
  margin-bottom: 40px;
}
.page-about-content .about-text .about-text-item:last-child {
  margin-bottom: 0;
}
.page-about-content .about-text .about-text-item .left {
  width: 40px;
  flex: 0 0 40px;
}
.page-about-content .about-text .about-text-item .left i {
  font-size: 24px;
  color: #2E7D32;
}
.page-about-content .about-text .about-text-item .right .title {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}
.page-about-content .about-text .about-text-item .right .sub-title {
  font-size: 14px;
  color: #606B86;
  line-height: 2;
  max-width: 460px;
}
.page-about-content .home-contact {
  background-color: #F9F9FC;
  background: linear-gradient(180deg, #F9F9FC 0%, #fff 100%);
  padding: 60px 0;
}

.layui-layer-btn .layui-layer-btn0 {
  background-color: #2E7D32;
  border-color: #2E7D32;
}

input[type=password] {
  font-family: "Arial";
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }
  .container {
    overflow-x: hidden;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  * {
    max-width: 100%;
    box-sizing: border-box;
  }
  h1, h2, h3, h4, h5, h6, p, span, div {
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
  }
}
header {
  position: relative;
  z-index: 1000;
}
header .header-desktop {
  height: 120px;
  min-height: 120px;
  max-height: 120px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}
header .header-desktop::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #28a745, #20c997, #28a745);
}
header .header-desktop .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  max-width: 90%;
  margin: 0 auto;
}
header .left {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex: 1;
}
header .logo {
  max-width: 270px;
  max-height: 80px;
  position: relative;
}
header .logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
header .logo a:hover {
  transform: scale(1.02);
}
header .logo img {
  width: 270px !important;
  height: 80px !important;
  max-width: 270px !important;
  max-height: 80px !important;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(40, 167, 69, 0.2));
  transition: all 0.3s ease;
}
header .menu .navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
header .menu .navbar-nav .nav-item .nav-link {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c3e50;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  min-width: 80px;
  text-align: center;
}
header .menu .navbar-nav .nav-item .nav-link:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #28a745, #20c997);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}
header .menu .navbar-nav .nav-item .nav-link.active {
  color: #ffffff;
  background: linear-gradient(135deg, #28a745, #20c997);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}
header .right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: flex-end;
}
header .search-group {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  min-width: 300px;
}
header .search-group:hover {
  border-color: #28a745;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.1);
}
header .search-group:focus-within {
  border-color: #28a745;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}
header .search-group .form-control, header .search-group .form-group .form-select, .form-group header .search-group .form-select, header .search-group .form-group .form-textarea, .form-group header .search-group .form-textarea, header .search-group .search-form .search-input, .search-form header .search-group .search-input {
  border: none;
  background: transparent;
  font-size: 1rem;
  padding: 0.5rem 0;
}
header .search-group .form-control:focus, header .search-group .form-group .form-select:focus, .form-group header .search-group .form-select:focus, header .search-group .form-group .form-textarea:focus, .form-group header .search-group .form-textarea:focus, header .search-group .search-form .search-input:focus, .search-form header .search-group .search-input:focus {
  box-shadow: none;
  outline: none;
}
header .search-group .btn {
  background: transparent;
  border: none;
  color: #28a745;
  font-size: 1.2rem;
  padding: 0.5rem;
}
header .search-group .btn:hover {
  color: #20c997;
  transform: scale(1.1);
}
header .language-switch {
  display: flex;
  align-items: center;
  gap: 1rem;
}
header .language-switch .dropdown {
  position: relative;
}
header .language-switch .dropdown > a {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #28a745, #20c997);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  gap: 0.5rem;
  min-width: 100px;
  justify-content: center;
}
header .language-switch .dropdown > a:hover {
  background: linear-gradient(135deg, #20c997, #28a745);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(40, 167, 69, 0.3);
}
header .language-switch .dropdown > a img {
  width: 20px;
  height: auto;
  border-radius: 2px;
}
header .language-switch .dropdown > a::after {
  border-top-color: #ffffff;
  margin-left: 0.5rem;
}
header .language-switch .dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #ffffff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  margin-top: 0;
  min-width: 140px;
  z-index: 1001;
  backdrop-filter: blur(10px);
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
header .language-switch .dropdown .dropdown-menu .dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 0 0.5rem;
}
header .language-switch .dropdown .dropdown-menu .dropdown-item:hover {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: #ffffff;
  transform: translateX(4px);
}
header .language-switch .dropdown .dropdown-menu .dropdown-item img {
  width: 20px;
  height: auto;
  margin-right: 8px;
  border-radius: 2px;
}
header .language-switch .dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header .icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
header .icons .item {
  position: relative;
}
header .icons .item a, header .icons .item .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
}
header .icons .item a:hover, header .icons .item .btn:hover {
  background: linear-gradient(135deg, #28a745, #20c997);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(40, 167, 69, 0.3);
}
header .icons .item a:hover img, header .icons .item .btn:hover img {
  filter: brightness(0) invert(1);
}
header .icons .item a img, header .icons .item .btn img {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}
header .icons .item .icon-quantity {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 10px;
  min-width: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}
header .header-mobile {
  display: none;
  height: 100px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-bottom: 3px solid #28a745;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}
header .header-mobile .mb-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #28a745;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
header .header-mobile .mb-icon:hover {
  background: rgba(40, 167, 69, 0.1);
  transform: translateY(-50%) scale(1.05);
}
header .header-mobile .mb-icon:active {
  transform: translateY(-50%) scale(0.95);
  transition: all 0.1s ease;
}
header .header-mobile .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
header .header-mobile .logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}
header .header-mobile .mobile-icons {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1002;
}
header .header-mobile .mobile-icons .mobile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border: 2px solid rgba(40, 167, 69, 0.3);
  border-radius: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}
header .header-mobile .mobile-icons .mobile-icon:hover {
  background: linear-gradient(135deg, #28a745, #20c997);
  border-color: rgba(40, 167, 69, 0.6);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}
header .header-mobile .mobile-icons .mobile-icon:hover img {
  filter: brightness(0) invert(1);
}
header .header-mobile .mobile-icons .mobile-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: transparent;
  text-decoration: none;
}
header .header-mobile .mobile-icons .mobile-icon a img {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
  display: block;
}
header .header-mobile .mobile-icons .mobile-icon img {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
  display: block;
}
header .header-mobile .header-cart-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 10px;
  transition: all 0.3s ease;
}
header .header-mobile .header-cart-icon:hover {
  background: linear-gradient(135deg, #28a745, #20c997);
  transform: translateY(-50%) scale(1.1);
}
header .header-mobile .header-cart-icon:hover img {
  filter: brightness(0) invert(1);
}
header .header-mobile .header-cart-icon img {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}
header .header-mobile .header-cart-icon .icon-quantity {
  position: absolute;
  top: -5px;
  right: -5px;
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.4rem;
  border-radius: 8px;
  min-width: 16px;
  text-align: center;
}
@media (max-width: 1200px) {
  header .header-desktop .container {
    padding: 0 1.5rem;
  }
  header .header-desktop .left {
    gap: 2rem;
  }
  header .header-desktop .logo img {
    width: 250px;
    height: 70px;
  }
  header .header-desktop .search-group {
    min-width: 250px;
  }
}
@media (max-width: 992px) {
  header .header-desktop {
    display: none;
  }
  header .header-mobile {
    display: block;
  }
}
@media (max-width: 768px) {
  header .header-mobile {
    height: 90px;
  }
  header .header-mobile .logo img {
    height: 42px;
  }
  header .header-mobile .mb-icon {
    font-size: 2rem;
    padding: 8px;
  }
  header .header-mobile .mobile-icons {
    right: 15px;
  }
  header .header-mobile .mobile-icons .mobile-icon {
    width: 44px;
    height: 44px;
    border-width: 2px;
  }
  header .header-mobile .mobile-icons .mobile-icon a img {
    width: 22px;
    height: 22px;
  }
  header .header-mobile .mobile-icons .mobile-icon img {
    width: 22px;
    height: 22px;
    display: block;
  }
  header .header-mobile .header-cart-icon {
    width: 35px;
    height: 35px;
  }
  header .header-mobile .header-cart-icon img {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 480px) {
  header .header-mobile {
    height: 80px;
  }
  header .header-mobile .logo img {
    height: 38px;
  }
  header .header-mobile .mb-icon {
    font-size: 1.8rem;
    padding: 6px;
  }
  header .header-mobile .mobile-icons {
    right: 12px;
  }
  header .header-mobile .mobile-icons .mobile-icon {
    width: 40px;
    height: 40px;
    border-width: 2px;
  }
  header .header-mobile .mobile-icons .mobile-icon a img {
    width: 20px;
    height: 20px;
  }
  header .header-mobile .mobile-icons .mobile-icon img {
    width: 20px;
    height: 20px;
    display: block;
  }
  header .header-mobile .header-cart-icon {
    width: 30px;
    height: 30px;
  }
  header .header-mobile .header-cart-icon img {
    width: 16px;
    height: 16px;
  }
}

#mobile-menu-offcanvas.offcanvas.offcanvas-start {
  width: 320px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fffe 100%);
  border: none;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
}
#mobile-menu-offcanvas.offcanvas.offcanvas-start .offcanvas-header {
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  color: white;
  padding: 25px 20px;
  border: none;
  position: relative;
  overflow: hidden;
}
#mobile-menu-offcanvas.offcanvas.offcanvas-start .offcanvas-header::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
#mobile-menu-offcanvas.offcanvas.offcanvas-start .offcanvas-header .mobile-user-section {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
  padding: 10px 0;
}
#mobile-menu-offcanvas.offcanvas.offcanvas-start .offcanvas-header .mobile-user-section .account-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}
#mobile-menu-offcanvas.offcanvas.offcanvas-start .offcanvas-header .mobile-user-section .account-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}
#mobile-menu-offcanvas.offcanvas.offcanvas-start .offcanvas-header .mobile-user-section .account-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}
#mobile-menu-offcanvas.offcanvas.offcanvas-start .offcanvas-header .mobile-user-section .user-info {
  flex: 1;
}
#mobile-menu-offcanvas.offcanvas.offcanvas-start .offcanvas-header .mobile-user-section .user-info .welcome-text {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.8);
}
#mobile-menu-offcanvas.offcanvas.offcanvas-start .offcanvas-header .mobile-user-section .user-info .user-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  line-height: 1.2;
}
#mobile-menu-offcanvas.offcanvas.offcanvas-start .close-offcanvas {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
#mobile-menu-offcanvas.offcanvas.offcanvas-start .close-offcanvas:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}
#mobile-menu-offcanvas.offcanvas.offcanvas-start .close-offcanvas i {
  color: white;
  font-size: 1.2rem;
}
#mobile-menu-offcanvas.offcanvas.offcanvas-start .offcanvas-body {
  padding: 0;
}
#mobile-menu-offcanvas.offcanvas.offcanvas-start .offcanvas-body .mobile-menu-wrap .accordion .accordion-item {
  border: none;
  background: transparent;
  margin-bottom: 2px;
}
#mobile-menu-offcanvas.offcanvas.offcanvas-start .offcanvas-body .mobile-menu-wrap .accordion .accordion-item .nav-item-text {
  position: relative;
}
#mobile-menu-offcanvas.offcanvas.offcanvas-start .offcanvas-body .mobile-menu-wrap .accordion .accordion-item .nav-item-text .nav-link {
  padding: 20px 25px !important;
  color: #2E7D32 !important;
  font-weight: 700 !important;
  font-size: 1.2rem !important;
  text-decoration: none !important;
  display: block !important;
  border-radius: 12px !important;
  border: none !important;
  background: transparent !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  line-height: 1.5 !important;
  margin: 4px 15px !important;
  overflow: hidden;
}
#mobile-menu-offcanvas.offcanvas.offcanvas-start .offcanvas-body .mobile-menu-wrap .accordion .accordion-item .nav-item-text .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #4CAF50, #2E7D32);
  border-radius: 0 3px 3px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#mobile-menu-offcanvas.offcanvas.offcanvas-start .offcanvas-body .mobile-menu-wrap .accordion .accordion-item .nav-item-text .nav-link::after {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
  transition: all 0.6s ease;
}
#mobile-menu-offcanvas.offcanvas.offcanvas-start .offcanvas-body .mobile-menu-wrap .accordion .accordion-item .nav-item-text .nav-link:hover {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(46, 125, 50, 0.08)) !important;
  color: #1B5E20 !important;
  padding-left: 35px !important;
  font-weight: 800 !important;
  font-size: 1.25rem !important;
  transform: translateX(5px) scale(1.02);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
}
#mobile-menu-offcanvas.offcanvas.offcanvas-start .offcanvas-body .mobile-menu-wrap .accordion .accordion-item .nav-item-text .nav-link:hover::before {
  height: 60%;
  width: 6px;
}
#mobile-menu-offcanvas.offcanvas.offcanvas-start .offcanvas-body .mobile-menu-wrap .accordion .accordion-item .nav-item-text .nav-link:hover::after {
  left: 100%;
}
#mobile-menu-offcanvas.offcanvas.offcanvas-start .offcanvas-body .mobile-menu-wrap .accordion .accordion-item .nav-item-text .nav-link.active {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.25), rgba(46, 125, 50, 0.15)) !important;
  color: #1B5E20 !important;
  font-weight: 800 !important;
  font-size: 1.25rem !important;
  padding-left: 35px !important;
  transform: translateX(5px) scale(1.02);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}
#mobile-menu-offcanvas.offcanvas.offcanvas-start .offcanvas-body .mobile-menu-wrap .accordion .accordion-item .nav-item-text .nav-link.active::before {
  height: 80%;
  width: 6px;
  background: linear-gradient(180deg, #2E7D32, #1B5E20);
}
#mobile-menu-offcanvas.offcanvas.offcanvas-start .offcanvas-body .mobile-menu-wrap .accordion .accordion-item .nav-item-text .nav-link:active {
  transform: translateX(3px) scale(0.98);
  transition: all 0.1s ease;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.offcanvas.show {
  animation: slideInLeft 0.3s ease-out;
}

.header-top {
  display: none !important;
}

body {
  padding-top: 0;
}

.page-categories-simple .container {
  padding-top: 2rem;
}

@media (max-width: 992px) {
  .floating-cart-mobile {
    position: fixed;
    bottom: 25px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .floating-cart-mobile:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.5), 0 4px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #20c997, #28a745);
  }
  .floating-cart-mobile:active {
    transform: scale(0.95);
  }
  .floating-cart-mobile img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
    display: block;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .floating-cart-mobile .cart-quantity {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    min-width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
    border: 2px solid #ffffff;
  }
}
@media (max-width: 480px) {
  .floating-cart-mobile {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 15px;
    border-width: 2px;
  }
  .floating-cart-mobile img {
    width: 28px;
    height: 28px;
    display: block;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .floating-cart-mobile .cart-quantity {
    font-size: 0.65rem;
    padding: 0.2rem 0.4rem;
    min-width: 18px;
    height: 18px;
    top: -6px;
    right: -6px;
  }
}
#mobile-menu-offcanvas .mobile-menu-wrap .accordion-item .nav-item-text .nav-link {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  padding: 20px 25px !important;
  color: #2E7D32 !important;
  line-height: 1.5 !important;
}

footer {
  position: relative;
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 30%, #388E3C 100%);
  overflow: hidden;
  margin-top: -20px !important;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}
footer::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(to bottom, rgba(27, 94, 32, 0.9) 0%, rgba(46, 125, 50, 0.95) 50%, rgb(46, 125, 50) 100%);
  pointer-events: none;
  z-index: 0;
  border-radius: 20px 20px 0 0;
}
@media (min-width: 768px) {
  footer {
    margin-top: -20px !important;
  }
}
@media (max-width: 768px) {
  footer {
    margin-top: -15px !important;
    padding-top: 20px;
  }
  footer::before {
    height: 20px;
    top: -20px;
  }
}
footer::after, footer::before {
  content: "";
  position: absolute;
  width: 20%;
  height: 300px;
  background-image: url("/images/icons/footer-1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
}
footer::before {
  top: 0;
  left: 0;
  width: 50%;
  background-image: url("/images/icons/footer-1.svg");
}
@media (min-width: 768px) {
  footer::before {
    top: -5%;
    width: 30%;
  }
}
footer::after {
  bottom: 0;
  right: 0;
  width: 36%;
  background-position: bottom;
  background-image: url("/images/icons/footer-2.svg");
}
@media (min-width: 768px) {
  footer::after {
    bottom: -5%;
    width: 15%;
  }
}
footer .footer-box {
  color: #ffffff;
  position: relative;
  z-index: 1;
}
footer .footer-box a {
  color: #ffffff;
  position: relative;
  opacity: 0.9;
}
footer .footer-box a:hover {
  color: #ffffff;
  opacity: 1;
  text-decoration: none;
}
footer .footer-box a:hover::after {
  width: 100%;
  left: 0;
}
footer .footer-box a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  border-bottom: 1px solid #ffffff;
  transition: width 0.3s ease;
}
footer .footer-box .footer-top-links {
  padding: 10px 0;
}
@media (min-width: 768px) {
  footer .footer-box .footer-top-links {
    padding: 40px 0;
  }
}
@media (min-width: 992px) {
  footer .footer-box .footer-top-links .about {
    padding-right: 60px;
  }
}
footer .footer-box .footer-top-links .about .about-text {
  padding-top: 6px;
}
footer .footer-box .footer-top-links .footer-link-title {
  font-weight: bold;
  color: #ffffff;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  footer .footer-box .footer-top-links .footer-link-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
footer .footer-box .footer-top-links .footer-link-title .footer-link-icon.active i:before {
  content: "\f63b";
}
@media (min-width: 768px) {
  footer .footer-box .footer-top-links .footer-link-title .footer-link-icon {
    display: none;
  }
}
footer .footer-box .footer-top-links .footer-item {
  padding-top: 10px;
  padding-bottom: 10px;
}
footer .footer-box .footer-top-links .footer-item .footer-item-content {
  display: none;
  padding-right: 26px;
}
@media (min-width: 768px) {
  footer .footer-box .footer-top-links .footer-item .footer-item-content {
    display: block;
  }
}
footer .footer-box .footer-top-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-box .footer-top-links ul li {
  margin-right: 20px;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 0;
}
footer .footer-box .footer-top-links ul li a {
  color: #ffffff;
  opacity: 0.85;
  transition: all 0.3s ease;
}
footer .footer-box .footer-top-links ul li a:hover {
  color: #ffffff;
  opacity: 1;
  text-decoration: none;
  transform: translateX(3px);
}
footer .footer-box .bottom-box {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 26px 0;
}
@media (max-width: 768px) {
  footer .footer-box .bottom-box {
    padding: 10px 0;
  }
}
@media (max-width: 768px) {
  footer .footer-box .bottom-box .left-links {
    text-align: center;
  }
}
footer .footer-box .bottom-box .left-links a {
  color: rgba(255, 255, 255, 0.7);
  opacity: 0.8;
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
}
footer .footer-box .bottom-box .left-links a:hover {
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
  text-decoration: none;
}
footer .footer-box .bottom-box .copyright-text {
  text-align: right;
  color: rgba(255, 255, 255, 0.6);
  opacity: 0.7;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 768px) {
  footer .footer-box .bottom-box .copyright-text {
    text-align: center;
    margin-top: 10px;
    font-size: 0.8rem;
  }
}
footer .footer-box .bottom-box .copyright-text a {
  color: rgba(255, 255, 255, 0.7);
  opacity: 0.8;
  text-decoration: none;
  transition: all 0.3s ease;
}
footer .footer-box .bottom-box .copyright-text a:hover {
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
  text-decoration: none;
}
footer .footer-box .bottom-box .copyright-text::before {
  content: "©";
  margin-right: 4px;
  opacity: 0.6;
}
footer .footer-box .bottom-box .payment-icon {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 768px) {
  footer .footer-box .bottom-box .payment-icon {
    justify-content: center;
    margin-top: 10px;
  }
}
footer .footer-box .bottom-box .payment-icon img {
  margin-left: 10px;
  max-width: 50px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
footer .footer-box .bottom-box .payment-icon img:hover {
  opacity: 1;
}

.newsletter-modern {
  padding: 100px 0;
  background: linear-gradient(135deg, #0F4C3A 0%, #1B5E20 25%, #2E7D32 50%, #388E3C 75%, #4CAF50 100%);
  position: relative;
  overflow: hidden;
}
.newsletter-modern .newsletter-wrapper {
  position: relative;
  z-index: 2;
}
.newsletter-modern .newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.newsletter-modern .newsletter-content .newsletter-info {
  color: white;
}
.newsletter-modern .newsletter-content .newsletter-info .newsletter-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 8px 16px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  font-weight: 500;
}
.newsletter-modern .newsletter-content .newsletter-info .newsletter-badge .badge-icon {
  font-size: 1rem;
}
.newsletter-modern .newsletter-content .newsletter-info .newsletter-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}
.newsletter-modern .newsletter-content .newsletter-info .newsletter-title .title-highlight {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.newsletter-modern .newsletter-content .newsletter-info .newsletter-title .title-main {
  color: white;
  display: block;
}
.newsletter-modern .newsletter-content .newsletter-info .newsletter-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}
.newsletter-modern .newsletter-content .newsletter-info .newsletter-features {
  margin-bottom: 40px;
}
.newsletter-modern .newsletter-content .newsletter-info .newsletter-features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.newsletter-modern .newsletter-content .newsletter-info .newsletter-features .feature-item .feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.newsletter-modern .newsletter-content .newsletter-info .newsletter-features .feature-item .feature-icon svg {
  width: 24px;
  height: 24px;
  color: #4CAF50;
}
.newsletter-modern .newsletter-content .newsletter-info .newsletter-features .feature-item .feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #2E7D32;
}
.newsletter-modern .newsletter-content .newsletter-info .newsletter-features .feature-item .feature-content p {
  font-size: 0.9rem;
  color: #4CAF50;
  margin: 0;
}
.newsletter-modern .newsletter-content .newsletter-info .newsletter-stats {
  display: flex;
  gap: 40px;
}
.newsletter-modern .newsletter-content .newsletter-info .newsletter-stats .stat-item {
  text-align: center;
}
.newsletter-modern .newsletter-content .newsletter-info .newsletter-stats .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #FFD700;
  line-height: 1;
}
.newsletter-modern .newsletter-content .newsletter-info .newsletter-stats .stat-item .stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}
.newsletter-modern .newsletter-content .newsletter-form-container .newsletter-form-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.newsletter-modern .newsletter-content .newsletter-form-container .newsletter-form-card .form-header {
  text-align: center;
  margin-bottom: 32px;
}
.newsletter-modern .newsletter-content .newsletter-form-container .newsletter-form-card .form-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1B5E20;
  margin-bottom: 8px;
}
.newsletter-modern .newsletter-content .newsletter-form-container .newsletter-form-card .form-header p {
  color: #666;
  font-size: 1rem;
  margin: 0;
}
.newsletter-modern .newsletter-content .newsletter-form-container .newsletter-form-card .newsletter-form .form-group {
  margin-bottom: 24px;
}
.newsletter-modern .newsletter-content .newsletter-form-container .newsletter-form-card .newsletter-form .form-group .input-container {
  position: relative;
}
.newsletter-modern .newsletter-content .newsletter-form-container .newsletter-form-card .newsletter-form .form-group .input-container .input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.newsletter-modern .newsletter-content .newsletter-form-container .newsletter-form-card .newsletter-form .form-group .input-container .input-icon svg {
  width: 20px;
  height: 20px;
  color: #999;
}
.newsletter-modern .newsletter-content .newsletter-form-container .newsletter-form-card .newsletter-form .form-group .input-container .form-input {
  width: 100%;
  padding: 16px 20px 16px 48px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  background: white;
  transition: all 0.3s ease;
}
.newsletter-modern .newsletter-content .newsletter-form-container .newsletter-form-card .newsletter-form .form-group .input-container .form-input:focus {
  outline: none;
  border-color: #4CAF50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}
.newsletter-modern .newsletter-content .newsletter-form-container .newsletter-form-card .newsletter-form .form-group .input-container .form-input::-moz-placeholder {
  color: #999;
}
.newsletter-modern .newsletter-content .newsletter-form-container .newsletter-form-card .newsletter-form .form-group .input-container .form-input::placeholder {
  color: #999;
}
.newsletter-modern .newsletter-content .newsletter-form-container .newsletter-form-card .newsletter-form .form-group .input-container .input-focus-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #4CAF50, #2E7D32);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.newsletter-modern .newsletter-content .newsletter-form-container .newsletter-form-card .newsletter-form .form-group .input-container:focus-within .input-focus-line {
  transform: scaleX(1);
}
.newsletter-modern .newsletter-content .newsletter-form-container .newsletter-form-card .newsletter-form .subscribe-btn {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.newsletter-modern .newsletter-content .newsletter-form-container .newsletter-form-card .newsletter-form .subscribe-btn .btn-text {
  z-index: 2;
}
.newsletter-modern .newsletter-content .newsletter-form-container .newsletter-form-card .newsletter-form .subscribe-btn .btn-icon {
  z-index: 2;
}
.newsletter-modern .newsletter-content .newsletter-form-container .newsletter-form-card .newsletter-form .subscribe-btn .btn-icon svg {
  width: 20px;
  height: 20px;
}
.newsletter-modern .newsletter-content .newsletter-form-container .newsletter-form-card .newsletter-form .subscribe-btn .btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}
.newsletter-modern .newsletter-content .newsletter-form-container .newsletter-form-card .newsletter-form .subscribe-btn:hover {
  background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}
.newsletter-modern .newsletter-content .newsletter-form-container .newsletter-form-card .newsletter-form .subscribe-btn:hover .btn-ripple {
  width: 300px;
  height: 300px;
}
.newsletter-modern .newsletter-content .newsletter-form-container .newsletter-form-card .newsletter-form .subscribe-btn:active {
  transform: translateY(0);
}
.newsletter-modern .newsletter-content .newsletter-form-container .newsletter-form-card .form-footer {
  margin-top: 24px;
}
.newsletter-modern .newsletter-content .newsletter-form-container .newsletter-form-card .form-footer .privacy-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 0.9rem;
}
.newsletter-modern .newsletter-content .newsletter-form-container .newsletter-form-card .form-footer .privacy-info svg {
  width: 16px;
  height: 16px;
  color: #4CAF50;
}

@media (max-width: 768px) {
  .newsletter-modern {
    padding: 60px 0;
  }
  .newsletter-modern .newsletter-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .newsletter-modern .newsletter-content .newsletter-info {
    text-align: center;
  }
  .newsletter-modern .newsletter-content .newsletter-info .newsletter-title {
    font-size: 2.5rem;
  }
  .newsletter-modern .newsletter-content .newsletter-info .newsletter-features .feature-item {
    justify-content: center;
  }
  .newsletter-modern .newsletter-content .newsletter-info .newsletter-stats {
    justify-content: center;
  }
  .newsletter-modern .newsletter-content .newsletter-form-container .newsletter-form-card {
    padding: 30px 20px;
  }
}
.hero-modern {
  padding: 0;
  position: relative;
  overflow: hidden;
  height: 800px;
  width: 100vw;
  max-width: none;
  margin: 0;
}
.hero-modern .hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-modern .hero-carousel .carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-modern .hero-carousel .carousel-slide.active {
  opacity: 1;
}
.hero-modern .hero-carousel .carousel-slide.slide-1 {
  background-image: url(/images/zr1.jpg?4662120e37a9f6a4c2c732f4c6138eb9);
}
.hero-modern .hero-carousel .carousel-slide.slide-2 {
  background-image: url(/images/zr2.jpg?1b2d72064bf3a563066b91ae6e688ba8);
}
.hero-modern .hero-carousel .carousel-slide.slide-3 {
  background-image: url(/images/zr3.jpg?6ce25f00dab45102af5ffc9515d317fd);
}
.hero-modern .hero-carousel .carousel-slide.slide-4 {
  background-image: url(/images/zr4.jpg?d29a3af9233d13000aa64bc47c42b0b9);
}
.hero-modern .hero-carousel .carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.hero-modern .hero-carousel .carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
}
.hero-modern .hero-carousel .carousel-dots .dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}
.hero-modern .hero-carousel .carousel-dots .dot.active {
  background: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}
.hero-modern .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 2;
}
.hero-modern .hero-wrapper {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 60px 0;
}
.hero-modern .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  height: 100%;
}
.hero-modern .hero-dynamic {
  position: relative;
}
.hero-modern .hero-set {
  display: none;
}
.hero-modern .hero-set.active {
  display: block;
}
.hero-modern .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(8px);
  margin-bottom: 22px;
}
.hero-modern .hero-badge .badge-icon {
  font-size: 20px;
}
.hero-modern .hero-badge .badge-text {
  font-weight: 800;
  letter-spacing: 0.6px;
  font-size: clamp(14px, 1.6vw, 18px);
}
.hero-modern .bullet-bars {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.hero-modern .bullet-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 900px; /* 增大条目可用宽度，减少换行 */
  padding: 14px 18px;
  border-radius: 16px;
  color: #fff;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  font-size: clamp(14px, 1.6vw, 18px);
  white-space: nowrap; /* 禁止换行 */
  word-break: keep-all; /* 保持词语整体 */
  overflow: hidden; /* 超出隐藏 */
  text-overflow: ellipsis; /* 超出省略号 */
}
.hero-modern .bullet-bar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #98e07a;
  flex: 0 0 10px;
}
.hero-modern .bullet-bar strong {
  font-weight: 900;
}
.hero-modern .bullet-bar .desc {
  opacity: 0.95;
  margin-left: 8px;
  white-space: nowrap;
}
.hero-modern .theme-1 .hero-title .title-highlight {
  color: #A3E635;
}
.hero-modern .theme-1 .bullet-bar {
  background: rgba(46, 125, 50, 0.28);
  border-color: rgba(163, 230, 53, 0.35);
}
.hero-modern .theme-2 .hero-title .title-highlight {
  color: #60A5FA;
}
.hero-modern .theme-2 .bullet-bar {
  background: rgba(30, 64, 175, 0.28);
  border-color: rgba(96, 165, 250, 0.35);
}
.hero-modern .theme-3 .hero-title .title-highlight {
  color: #FBBF24;
}
.hero-modern .theme-3 .bullet-bar {
  background: rgba(146, 64, 14, 0.28);
  border-color: rgba(251, 191, 36, 0.35);
}
.hero-modern .theme-4 .hero-title .title-highlight {
  color: #34D399;
}
.hero-modern .theme-4 .bullet-bar {
  background: rgba(6, 95, 70, 0.28);
  border-color: rgba(52, 211, 153, 0.35);
}
.hero-modern .hero-actions {
  margin-top: 36px;
}
@media (max-width: 768px) {
  .hero-modern .hero-actions {
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
  .hero-modern .hero-modern .bullet-bar {
    max-width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    white-space: nowrap;
    word-break: keep-all;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hero-modern .hero-modern .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }
  .hero-modern .hero-modern .hero-actions .btn-primary, .hero-modern .hero-modern .hero-actions .btn-secondary {
    width: 30% !important;
    margin: 0 auto;
    padding: 12px 20px !important;
    font-size: 0.9rem !important;
    max-width: none !important;
  }
  .hero-modern .hero-modern .hero-actions .btn-primary .btn-text, .hero-modern .hero-modern .hero-actions .btn-secondary .btn-text {
    font-size: 0.9rem !important;
  }
}
.hero-modern .hero-info .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.9), rgba(139, 195, 74, 0.8));
  border: 2px solid rgba(76, 175, 80, 0.8);
  border-radius: 30px;
  padding: 14px 28px;
  margin-bottom: 32px;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.hero-modern .hero-info .hero-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}
.hero-modern .hero-info .hero-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
}
.hero-modern .hero-info .hero-badge:hover::before {
  left: 100%;
}
.hero-modern .hero-info .hero-badge .badge-icon {
  font-size: 1.4rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.hero-modern .hero-info .hero-badge .badge-text {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.hero-modern .hero-info .hero-title {
  margin-bottom: 32px;
  position: relative;
}
@media (max-width: 768px) {
  .hero-modern .hero-info .hero-title {
    white-space: normal;
  }
}
@media (min-width: 769px) {
  .hero-modern .hero-info .hero-title {
    white-space: nowrap;
  }
}
.hero-modern .hero-info .hero-title .title-highlight {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-right: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}
.hero-modern .hero-info .hero-title .title-highlight::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #4CAF50, #66BB6A);
  border-radius: 2px;
}
.hero-modern .hero-info .hero-title .title-main {
  display: inline-block;
  font-size: 3.2rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  position: relative;
}
@media (max-width: 768px) {
  .hero-modern .hero-info .hero-title .title-main {
    white-space: normal;
  }
}
@media (min-width: 769px) {
  .hero-modern .hero-info .hero-title .title-main {
    white-space: nowrap;
  }
}
.hero-modern .hero-info .hero-title .title-main::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, #4CAF50, #66BB6A, #8BC34A);
  border-radius: 3px;
  opacity: 0.8;
}
.hero-modern .hero-info .hero-description {
  font-size: 1.3rem;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 520px;
  font-weight: 500;
  position: relative;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.hero-modern .hero-info .hero-description::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #ffffff, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
  border-radius: 0 3px 3px 0;
}
.hero-modern .hero-info .hero-description:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.hero-modern .hero-info .hero-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}
.hero-modern .hero-info .hero-features .feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.8));
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(76, 175, 80, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.hero-modern .hero-info .hero-features .feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}
.hero-modern .hero-info .hero-features .feature-item:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 248, 240, 0.9));
  transform: translateY(-4px) translateX(8px);
  box-shadow: 0 15px 40px rgba(76, 175, 80, 0.2);
  border-color: rgba(76, 175, 80, 0.25);
}
.hero-modern .hero-info .hero-features .feature-item:hover::before {
  left: 100%;
}
.hero-modern .hero-info .hero-features .feature-item .feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(139, 195, 74, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2E7D32;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.1);
  transition: all 0.3s ease;
}
.hero-modern .hero-info .hero-features .feature-item .feature-icon:hover {
  transform: scale(1.1) rotate(5deg);
}
.hero-modern .hero-info .hero-features .feature-item .feature-icon svg {
  width: 24px;
  height: 24px;
}
.hero-modern .hero-info .hero-features .feature-item .feature-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1B5E20;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.hero-modern .hero-info .hero-features .feature-item .feature-content p {
  font-size: 0.95rem;
  color: #2E7D32;
  margin: 0;
  font-weight: 500;
}
.hero-modern .hero-info .hero-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
  padding: 28px 0;
}
.hero-modern .hero-info .hero-stats .stat-item {
  text-align: center;
  position: relative;
  padding: 24px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.hero-modern .hero-info .hero-stats .stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}
.hero-modern .hero-info .hero-stats .stat-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #4CAF50, #66BB6A, #8BC34A);
  border-radius: 2px;
  opacity: 0.8;
}
.hero-modern .hero-info .hero-stats .stat-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 248, 240, 0.95));
}
.hero-modern .hero-info .hero-stats .stat-item:hover::before {
  left: 100%;
}
.hero-modern .hero-info .hero-stats .stat-item .stat-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #1B5E20, #2E7D32, #4CAF50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}
.hero-modern .hero-info .hero-stats .stat-item .stat-label {
  font-size: 1.05rem;
  color: #2E7D32;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}
.hero-modern .hero-info .hero-actions {
  display: flex;
  gap: 24px;
}
.hero-modern .hero-info .hero-actions .btn-primary, .hero-modern .hero-info .hero-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.hero-modern .hero-info .hero-actions .btn-primary::before, .hero-modern .hero-info .hero-actions .btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}
.hero-modern .hero-info .hero-actions .btn-primary .btn-text, .hero-modern .hero-info .hero-actions .btn-secondary .btn-text {
  font-size: 1.1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}
.hero-modern .hero-info .hero-actions .btn-primary .btn-icon, .hero-modern .hero-info .hero-actions .btn-secondary .btn-icon {
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 2;
}
.hero-modern .hero-info .hero-actions .btn-primary .btn-icon svg, .hero-modern .hero-info .hero-actions .btn-secondary .btn-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.hero-modern .hero-info .hero-actions .btn-primary .btn-ripple, .hero-modern .hero-info .hero-actions .btn-secondary .btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.8s, height 0.8s;
  z-index: 1;
}
.hero-modern .hero-info .hero-actions .btn-primary:hover::before, .hero-modern .hero-info .hero-actions .btn-secondary:hover::before {
  left: 100%;
}
.hero-modern .hero-info .hero-actions .btn-primary:hover .btn-ripple, .hero-modern .hero-info .hero-actions .btn-secondary:hover .btn-ripple {
  width: 400px;
  height: 400px;
}
.hero-modern .hero-info .hero-actions .btn-primary:active, .hero-modern .hero-info .hero-actions .btn-secondary:active {
  transform: translateY(-2px) scale(0.98);
}
.hero-modern .hero-info .hero-actions .btn-primary {
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #CD853F 100%) !important;
  color: #ffffff !important;
  border: 2px solid rgba(139, 69, 19, 0.4) !important;
  box-shadow: 0 12px 35px rgba(139, 69, 19, 0.3) !important;
}
.hero-modern .hero-info .hero-actions .btn-primary .btn-text {
  color: #ffffff !important;
}
.hero-modern .hero-info .hero-actions .btn-primary:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 18px 50px rgba(139, 69, 19, 0.4) !important;
  background: linear-gradient(135deg, #A0522D 0%, #CD853F 50%, #DEB887 100%) !important;
  border-color: rgba(139, 69, 19, 0.6) !important;
}
.hero-modern .hero-info .hero-actions .btn-primary:hover .btn-text {
  color: #ffffff !important;
}
.hero-modern .hero-info .hero-actions .btn-secondary {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.95), rgba(255, 152, 0, 0.9)) !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 193, 7, 0.4) !important;
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3) !important;
}
.hero-modern .hero-info .hero-actions .btn-secondary .btn-text {
  color: #ffffff !important;
}
.hero-modern .hero-info .hero-actions .btn-secondary:hover {
  background: linear-gradient(135deg, rgb(255, 193, 7), rgba(255, 152, 0, 0.95)) !important;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4) !important;
  border-color: rgba(255, 193, 7, 0.6) !important;
}
.hero-modern .hero-info .hero-actions .btn-secondary:hover .btn-text {
  color: #ffffff !important;
}
.hero-modern .hero-visual {
  position: relative;
}
.hero-modern .hero-visual .hero-image-container {
  position: relative;
  text-align: center;
}
.hero-modern .hero-visual .hero-image-container .hero-main-image {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 25px 80px rgba(46, 125, 50, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid rgba(255, 255, 255, 0.8);
}
.hero-modern .hero-visual .hero-image-container .hero-main-image:hover {
  transform: scale(1.03) rotate(1deg);
  box-shadow: 0 35px 100px rgba(46, 125, 50, 0.3);
}
.hero-modern .hero-visual .hero-image-container .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.hero-modern .hero-visual .hero-image-container .floating-elements .floating-card {
  position: absolute;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: 0 12px 35px rgba(46, 125, 50, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 8s ease-in-out infinite;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.hero-modern .hero-visual .hero-image-container .floating-elements .floating-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 45px rgba(46, 125, 50, 0.25);
}
.hero-modern .hero-visual .hero-image-container .floating-elements .floating-card .card-icon {
  font-size: 1.4rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.hero-modern .hero-visual .hero-image-container .floating-elements .floating-card .card-text {
  font-size: 1rem;
  font-weight: 700;
  color: #1B5E20;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.hero-modern .hero-visual .hero-image-container .floating-elements .floating-card.card-1 {
  top: 15%;
  left: -12%;
  animation-delay: 0s;
}
.hero-modern .hero-visual .hero-image-container .floating-elements .floating-card.card-2 {
  top: 55%;
  right: -18%;
  animation-delay: 2.5s;
}
.hero-modern .hero-visual .hero-image-container .floating-elements .floating-card.card-3 {
  bottom: 15%;
  left: 8%;
  animation-delay: 5s;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(1deg);
  }
  50% {
    transform: translateY(-5px) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) rotate(-1deg);
  }
}
@media (max-width: 768px) {
  .hero-modern {
    height: 600px;
    width: 100vw;
    overflow-x: hidden;
    margin: 0;
  }
  .hero-modern .hero-carousel .carousel-slide {
    background-attachment: scroll;
  }
  .hero-modern .hero-carousel .carousel-dots {
    bottom: 20px;
  }
  .hero-modern .hero-carousel .carousel-dots .dot {
    width: 10px;
    height: 10px;
  }
  .hero-modern .hero-carousel .carousel-arrows {
    padding: 0 20px;
  }
  .hero-modern .hero-carousel .carousel-arrows .arrow-prev,
  .hero-modern .hero-carousel .carousel-arrows .arrow-next {
    width: 40px;
    height: 40px;
  }
  .hero-modern .hero-carousel .carousel-arrows .arrow-prev svg,
  .hero-modern .hero-carousel .carousel-arrows .arrow-next svg {
    width: 20px;
    height: 20px;
  }
  .hero-modern .container {
    overflow-x: hidden;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .hero-modern .hero-wrapper {
    padding: 40px 0;
  }
  .hero-modern .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .hero-modern .hero-info .hero-badge {
    padding: 10px 20px;
    margin-bottom: 24px;
  }
  .hero-modern .hero-info .hero-badge .badge-text {
    font-size: 0.95rem;
  }
  .hero-modern .hero-info .hero-title {
    margin-bottom: 24px;
    white-space: normal;
  }
  .hero-modern .hero-info .hero-title .title-highlight {
    font-size: 1.2rem;
    margin-right: 15px;
    white-space: normal;
  }
  .hero-modern .hero-info .hero-title .title-main {
    font-size: 2.2rem;
    white-space: normal;
  }
  .hero-modern .hero-info .hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    padding: 24px 28px;
  }
  .hero-modern .hero-info .hero-description::before {
    left: 0;
    width: 5px;
  }
  .hero-modern .hero-info .hero-features {
    gap: 20px;
    margin-bottom: 40px;
  }
  .hero-modern .hero-info .hero-features .feature-item {
    padding: 16px 20px;
  }
  .hero-modern .hero-info .hero-features .feature-item .feature-icon {
    width: 40px;
    height: 40px;
  }
  .hero-modern .hero-info .hero-features .feature-item .feature-icon svg {
    width: 20px;
    height: 20px;
  }
  .hero-modern .hero-info .hero-features .feature-item .feature-content h4 {
    font-size: 1.1rem;
  }
  .hero-modern .hero-info .hero-features .feature-item .feature-content p {
    font-size: 0.9rem;
  }
  .hero-modern .hero-info .hero-stats {
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .hero-modern .hero-info .hero-stats .stat-item {
    padding: 20px 16px;
    min-width: 120px;
  }
  .hero-modern .hero-info .hero-stats .stat-item .stat-number {
    font-size: 2.2rem;
  }
  .hero-modern .hero-info .hero-stats .stat-item .stat-label {
    font-size: 0.95rem;
  }
  .hero-modern .hero-info .hero-actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
  .hero-modern .hero-info .hero-actions .btn-primary, .hero-modern .hero-info .hero-actions .btn-secondary {
    width: 45% !important;
    max-width: none !important;
    justify-content: center;
    padding: 12px 16px !important;
    margin: 0;
    white-space: nowrap;
  }
  .hero-modern .hero-info .hero-actions .btn-primary .btn-text, .hero-modern .hero-info .hero-actions .btn-secondary .btn-text {
    font-size: 0.9rem !important;
  }
  .hero-modern .hero-visual .hero-image-container .hero-main-image {
    border-radius: 20px;
  }
  .hero-modern .hero-visual .hero-image-container .floating-elements .floating-card {
    padding: 12px 16px;
  }
  .hero-modern .hero-visual .hero-image-container .floating-elements .floating-card .card-icon {
    font-size: 1.2rem;
  }
  .hero-modern .hero-visual .hero-image-container .floating-elements .floating-card .card-text {
    font-size: 0.9rem;
  }
  .hero-modern .hero-visual .hero-image-container .floating-elements .floating-card.card-1 {
    top: 8%;
    left: -8%;
  }
  .hero-modern .hero-visual .hero-image-container .floating-elements .floating-card.card-2 {
    top: 45%;
    right: -12%;
  }
  .hero-modern .hero-visual .hero-image-container .floating-elements .floating-card.card-3 {
    bottom: 8%;
    left: 5%;
  }
}
@media (min-width: 1920px) {
  .hero-modern .hero-carousel .carousel-slide {
    background-position: center center;
  }
}
@media (min-width: 769px) and (max-width: 1199px) {
  .hero-modern {
    height: 700px;
  }
}
.products-modern {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 25%, #f0f8f0 50%, #e8f5e8 75%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}
.products-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(46, 125, 50, 0.03) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(139, 195, 74, 0.02) 0%, transparent 50%);
  z-index: 1;
}
.products-modern::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 30 L80 30 L65 45 L70 65 L50 55 L30 65 L35 45 L20 30 L40 30 Z' fill='rgba(255,193,7,0.06)'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 20 C30 20, 20 40, 20 60 C20 80, 40 80, 50 70 C60 80, 80 80, 80 60 C80 40, 70 20, 50 20 Z' fill='rgba(76,175,80,0.05)'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 C40 10, 30 20, 30 30 C30 40, 40 50, 50 50 C60 50, 70 40, 70 30 C70 20, 60 10, 50 10 Z' fill='rgba(255,152,0,0.06)'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 5 L55 25 L75 25 L60 40 L65 60 L50 50 L35 60 L40 40 L25 25 L45 25 Z' fill='rgba(244,67,54,0.05)'/%3E%3C/svg%3E");
  background-size: 50px 50px, 40px 40px, 45px 45px, 55px 55px;
  background-position: 10% 20%, 90% 10%, 20% 90%, 80% 80%;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 1;
  animation: productFloat 30s ease-in-out infinite;
}
.products-modern .products-wrapper {
  position: relative;
  z-index: 2;
}
.products-modern .products-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.products-modern .products-info .products-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(139, 195, 74, 0.1));
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 25px;
  padding: 10px 20px;
  margin-bottom: 24px;
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.1);
  transition: all 0.3s ease;
}
.products-modern .products-info .products-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
}
.products-modern .products-info .products-badge .badge-icon {
  font-size: 1.3rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.products-modern .products-info .products-badge .badge-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1B5E20;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.products-modern .products-info .products-title {
  margin-bottom: 32px;
  position: relative;
}
.products-modern .products-info .products-title .title-highlight {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}
.products-modern .products-info .products-title .title-highlight::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #4CAF50, #66BB6A);
  border-radius: 2px;
}
.products-modern .products-info .products-title .title-main {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #1B5E20, #2E7D32, #388E3C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}
.products-modern .products-info .products-title .title-main::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #4CAF50, #66BB6A, #8BC34A);
  border-radius: 2px;
  opacity: 0.7;
}
.products-modern .products-info .products-description {
  font-size: 1.15rem;
  color: #424242;
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 480px;
  font-weight: 400;
  position: relative;
  padding: 20px 0;
}
.products-modern .products-info .products-description::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #4CAF50, #66BB6A, #8BC34A);
  border-radius: 2px;
}
.products-modern .products-info .products-tags {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}
.products-modern .products-info .products-tags .tag-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(139, 195, 74, 0.03));
  border: 1px solid rgba(76, 175, 80, 0.15);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.products-modern .products-info .products-tags .tag-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}
.products-modern .products-info .products-tags .tag-item:hover {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(139, 195, 74, 0.08));
  transform: translateX(8px) translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.15);
  border-color: rgba(76, 175, 80, 0.25);
}
.products-modern .products-info .products-tags .tag-item:hover::before {
  left: 100%;
}
.products-modern .products-info .products-tags .tag-item .tag-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(139, 195, 74, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.1);
  transition: all 0.3s ease;
}
.products-modern .products-info .products-tags .tag-item .tag-icon:hover {
  transform: scale(1.1) rotate(5deg);
}
.products-modern .products-info .products-tags .tag-item .tag-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1B5E20;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.products-modern .products-info .products-tags .tag-item .tag-content p {
  font-size: 0.95rem;
  color: #2E7D32;
  margin: 0;
  font-weight: 500;
}
.products-modern .products-info .products-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
  padding: 24px 0;
}
.products-modern .products-info .products-stats .stat-item {
  text-align: center;
  position: relative;
  padding: 16px 0;
}
.products-modern .products-info .products-stats .stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #4CAF50, #66BB6A);
  border-radius: 2px;
  opacity: 0.6;
}
.products-modern .products-info .products-stats .stat-item .stat-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #1B5E20, #2E7D32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.products-modern .products-info .products-stats .stat-item .stat-label {
  font-size: 0.95rem;
  color: #424242;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.products-modern .products-info .products-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #4CAF50 100%);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(27, 94, 32, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.products-modern .products-info .products-actions .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}
.products-modern .products-info .products-actions .btn-primary .btn-text {
  font-size: 1.05rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}
.products-modern .products-info .products-actions .btn-primary .btn-icon {
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 2;
}
.products-modern .products-info .products-actions .btn-primary .btn-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.products-modern .products-info .products-actions .btn-primary .btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.8s, height 0.8s;
  z-index: 1;
}
.products-modern .products-info .products-actions .btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(27, 94, 32, 0.4);
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 50%, #66BB6A 100%);
}
.products-modern .products-info .products-actions .btn-primary:hover::before {
  left: 100%;
}
.products-modern .products-info .products-actions .btn-primary:hover .btn-ripple {
  width: 400px;
  height: 400px;
}
.products-modern .products-info .products-actions .btn-primary:active {
  transform: translateY(-2px) scale(0.98);
}
.products-modern .products-showcase .products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}
.products-modern .products-showcase .products-grid .product-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 12px 40px rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  height: -moz-fit-content;
  height: fit-content;
  display: flex !important;
  flex-direction: column !important;
}
.products-modern .products-showcase .products-grid .product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 28px;
  padding: 3px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.3), rgba(139, 195, 74, 0.2), rgba(76, 175, 80, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.products-modern .products-showcase .products-grid .product-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.products-modern .products-showcase .products-grid .product-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 30px 70px rgba(76, 175, 80, 0.25);
  background: linear-gradient(135deg, #ffffff 0%, #f0f8f0 100%);
}
.products-modern .products-showcase .products-grid .product-card:hover::before {
  opacity: 1;
}
.products-modern .products-showcase .products-grid .product-card:hover::after {
  opacity: 1;
}
.products-modern .products-showcase .products-grid .product-card .product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
}
.products-modern .products-showcase .products-grid .product-card .product-badge .badge-text {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.95), rgba(139, 195, 74, 0.9));
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.products-modern .products-showcase .products-grid .product-card .product-image-container {
  position: relative;
  margin-bottom: 16px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.15);
  aspect-ratio: 1;
}
.products-modern .products-showcase .products-grid .product-card .product-image-container .product-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: all 0.4s ease;
  filter: brightness(1.05) contrast(1.1);
}
.products-modern .products-showcase .products-grid .product-card .product-image-container .product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}
.products-modern .products-showcase .products-grid .product-card .product-image-container .product-overlay .overlay-actions {
  display: flex;
  gap: 12px;
}
.products-modern .products-showcase .products-grid .product-card .product-image-container .product-overlay .overlay-actions .action-btn {
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2E7D32;
  text-decoration: none;
  transition: all 0.3s ease;
}
.products-modern .products-showcase .products-grid .product-card .product-image-container .product-overlay .overlay-actions .action-btn:hover {
  background: #2E7D32;
  color: white;
  transform: scale(1.1);
}
.products-modern .products-showcase .products-grid .product-card .product-image-container .product-overlay .overlay-actions .action-btn svg {
  width: 20px;
  height: 20px;
}
.products-modern .products-showcase .products-grid .product-card .product-image-container:hover .product-image {
  transform: scale(1.05);
}
.products-modern .products-showcase .products-grid .product-card .product-image-container:hover .product-overlay {
  opacity: 1;
}
.products-modern .products-showcase .products-grid .product-card .product-content {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}
.products-modern .products-showcase .products-grid .product-card .product-content .product-title {
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1B5E20, #2E7D32, #4CAF50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.02em;
}
.products-modern .products-showcase .products-grid .product-card .product-content .product-description {
  font-size: 0.9rem;
  color: #424242;
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.products-modern .products-showcase .products-grid .product-card .product-content .product-properties {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.products-modern .products-showcase .products-grid .product-card .product-content .product-properties .property-tag {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.products-modern .products-showcase .products-grid .product-card .product-content .product-properties .property-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}
.products-modern .products-showcase .products-grid .product-card .product-content .product-properties .property-tag.organic {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(139, 195, 74, 0.15));
  color: #1B5E20;
  border: 1px solid rgba(76, 175, 80, 0.3);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.15);
}
.products-modern .products-showcase .products-grid .product-card .product-content .product-properties .property-tag.organic::after {
  content: "🌿";
  margin-left: 6px;
  font-size: 0.8rem;
}
.products-modern .products-showcase .products-grid .product-card .product-content .product-properties .property-tag:not(.organic) {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.15));
  color: #E65100;
  border: 1px solid rgba(255, 193, 7, 0.3);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.15);
}
.products-modern .products-showcase .products-grid .product-card .product-content .product-properties .property-tag:not(.organic)::after {
  content: "🔥";
  margin-left: 6px;
  font-size: 0.8rem;
}
.products-modern .products-showcase .products-grid .product-card .product-content .product-properties .property-tag:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.products-modern .products-showcase .products-grid .product-card .product-content .product-properties .property-tag:hover::before {
  left: 100%;
}
.products-modern .products-showcase .products-grid .product-card .product-content .product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.products-modern .products-showcase .products-grid .product-card .product-content .product-footer .product-price {
  font-size: 1.3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #1B5E20, #2E7D32, #4CAF50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.02em;
  position: relative;
}
.products-modern .products-showcase .products-grid .product-card .product-content .product-footer .product-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 8px 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, #2E7D32, #4CAF50) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
  position: relative;
  overflow: hidden;
}
.products-modern .products-showcase .products-grid .product-card .product-content .product-footer .product-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}
.products-modern .products-showcase .products-grid .product-card .product-content .product-footer .product-link:hover {
  color: #ffffff !important;
  gap: 12px;
  background: linear-gradient(135deg, #1B5E20, #2E7D32) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}
.products-modern .products-showcase .products-grid .product-card .product-content .product-footer .product-link:hover::before {
  left: 100%;
}
.products-modern .products-showcase .products-grid .product-card .product-content .product-footer .product-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}
.products-modern .products-showcase .products-grid .product-card .product-content .product-footer .product-link:hover svg {
  transform: translateX(3px);
}
.products-modern .products-showcase .no-products {
  text-align: center;
  padding: 60px 20px;
}
.products-modern .products-showcase .no-products .no-products-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}
.products-modern .products-showcase .no-products h3 {
  font-size: 1.5rem;
  color: #2E7D32;
  margin-bottom: 8px;
}
.products-modern .products-showcase .no-products p {
  color: #666;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .products-modern {
    padding: 80px 0;
  }
  .products-modern .products-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .products-modern .products-info .products-title .title-main {
    font-size: 2.2rem;
  }
  .products-modern .products-info .products-description {
    font-size: 1rem;
  }
  .products-modern .products-info .products-tags {
    gap: 12px;
  }
  .products-modern .products-info .products-tags .tag-item {
    padding: 12px 16px;
  }
  .products-modern .products-info .products-tags .tag-item .tag-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .products-modern .products-info .products-stats {
    justify-content: center;
    gap: 30px;
  }
  .products-modern .products-info .products-stats .stat-item .stat-number {
    font-size: 1.5rem;
  }
  .products-modern .products-showcase .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .products-modern .products-showcase .products-grid .product-card {
    padding: 16px;
  }
  .products-modern .products-showcase .products-grid .product-card .product-content .product-title {
    font-size: 1rem;
  }
  .products-modern .products-showcase .products-grid .product-card .product-content .product-footer .product-price {
    font-size: 1.1rem;
  }
}
@keyframes productFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-6px) rotate(0.3deg);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-3px) rotate(0deg);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-9px) rotate(-0.3deg);
    opacity: 0.6;
  }
}
.company-modern {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.03) 0%, rgba(46, 125, 50, 0.05) 50%, rgba(129, 199, 132, 0.02) 100%);
  position: relative;
  overflow: hidden;
}
.company-modern .company-wrapper {
  position: relative;
  z-index: 2;
}
.company-modern .company-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.company-modern .company-info .company-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.2);
  border-radius: 25px;
  padding: 8px 16px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.company-modern .company-info .company-badge .badge-icon {
  font-size: 1.2rem;
}
.company-modern .company-info .company-badge .badge-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2E7D32;
}
.company-modern .company-info .company-title {
  margin-bottom: 24px;
}
.company-modern .company-info .company-title .title-highlight {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #4CAF50;
  margin-bottom: 8px;
}
.company-modern .company-info .company-title .title-main {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: #2E7D32;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.company-modern .company-info .company-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 450px;
}
.company-modern .company-info .company-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
.company-modern .company-info .company-stats .stat-item {
  text-align: center;
}
.company-modern .company-info .company-stats .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #2E7D32;
  line-height: 1;
}
.company-modern .company-info .company-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}
.company-modern .company-info .company-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}
.company-modern .company-info .company-actions .btn-primary .btn-text {
  font-size: 1rem;
}
.company-modern .company-info .company-actions .btn-primary .btn-icon {
  width: 20px;
  height: 20px;
}
.company-modern .company-info .company-actions .btn-primary .btn-icon svg {
  width: 100%;
  height: 100%;
}
.company-modern .company-info .company-actions .btn-primary .btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.company-modern .company-info .company-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(46, 125, 50, 0.4);
}
.company-modern .company-info .company-actions .btn-primary:hover .btn-ripple {
  width: 300px;
  height: 300px;
}
.company-modern .company-showcase .strength-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.company-modern .company-showcase .strength-grid .strength-card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(76, 175, 80, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.company-modern .company-showcase .strength-grid .strength-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(76, 175, 80, 0.15);
}
.company-modern .company-showcase .strength-grid .strength-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4CAF50, #2E7D32, #4CAF50);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.company-modern .company-showcase .strength-grid .strength-card:hover::before {
  opacity: 1;
}
.company-modern .company-showcase .strength-grid .strength-card .card-icon {
  width: 48px;
  height: 48px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4CAF50;
  margin-bottom: 16px;
}
.company-modern .company-showcase .strength-grid .strength-card .card-icon svg {
  width: 24px;
  height: 24px;
}
.company-modern .company-showcase .strength-grid .strength-card .card-content {
  margin-bottom: 16px;
}
.company-modern .company-showcase .strength-grid .strength-card .card-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2E7D32;
  margin-bottom: 8px;
  line-height: 1.3;
}
.company-modern .company-showcase .strength-grid .strength-card .card-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}
.company-modern .company-showcase .strength-grid .strength-card .card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #4CAF50;
}

@media (max-width: 768px) {
  .company-modern {
    padding: 80px 0;
  }
  .company-modern .company-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .company-modern .company-info .company-title .title-main {
    font-size: 2.2rem;
  }
  .company-modern .company-info .company-description {
    font-size: 1rem;
  }
  .company-modern .company-info .company-stats {
    justify-content: center;
    gap: 30px;
  }
  .company-modern .company-info .company-stats .stat-item .stat-number {
    font-size: 1.5rem;
  }
  .company-modern .company-showcase .strength-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .company-modern .company-showcase .strength-grid .strength-card {
    padding: 20px;
  }
  .company-modern .company-showcase .strength-grid .strength-card .card-icon {
    width: 40px;
    height: 40px;
  }
  .company-modern .company-showcase .strength-grid .strength-card .card-icon svg {
    width: 20px;
    height: 20px;
  }
  .company-modern .company-showcase .strength-grid .strength-card .card-content h3 {
    font-size: 1rem;
  }
  .company-modern .company-showcase .strength-grid .strength-card .card-content p {
    font-size: 0.85rem;
  }
  .company-modern .company-showcase .strength-grid .strength-card .card-number {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }
}
body.page-home .module-title-wrap {
  margin-bottom: 30px;
}
body.page-home .module-title-wrap .module-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.7rem;
  position: relative;
  color: #222;
}
@media (max-width: 768px) {
  body.page-home .module-title-wrap .module-title {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
  }
}
body.page-home .module-title-wrap .module-sub-title {
  text-align: center;
  font-size: 1rem;
  color: #768088;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
  max-width: 840px;
}
@media (max-width: 768px) {
  body.page-home .module-title-wrap .module-sub-title {
    font-size: 0.87rem;
  }
}
body.page-home .module-line {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  body.page-home .module-line {
    margin-bottom: 40px;
  }
}

.collapsible-section {
  margin-bottom: 16px;
}
.collapsible-section .section-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.15);
}
.collapsible-section .section-header:hover {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.25);
}
.collapsible-section .section-header .section-title {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.collapsible-section .section-header .section-title i, .collapsible-section .section-header .section-title .icon {
  color: white !important;
  font-size: 1.1rem;
}
.collapsible-section .section-header .section-title[data-section=faq] i, .collapsible-section .section-header .section-title[data-section=faq] .icon {
  color: white !important;
}
.collapsible-section .section-header .section-title::before {
  filter: brightness(0) invert(1);
}
.collapsible-section .section-header .toggle-icon {
  font-size: 1.1rem;
  color: white;
  transition: transform 0.3s ease;
}
.collapsible-section .section-header .toggle-icon.expanded {
  transform: rotate(180deg);
}
.collapsible-section .section-content {
  max-height: none;
  overflow: visible;
  transition: max-height 0.3s ease;
}
.collapsible-section .section-content.expanded {
  max-height: none;
}
.collapsible-section .section-body {
  padding: 0;
  background: transparent;
  border: none;
  border-top: none;
  border-radius: 0;
}

@media (max-width: 768px) {
  .collapsible-section {
    margin-bottom: 12px;
  }
  .collapsible-section .section-header {
    display: flex;
    padding: 16px 20px;
    min-height: 56px;
    max-height: 56px;
  }
  .collapsible-section .section-header .section-title {
    font-size: 0.95rem;
    gap: 10px;
  }
  .collapsible-section .section-header .toggle-icon {
    font-size: 1rem;
  }
  .collapsible-section .section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .collapsible-section .section-content.expanded {
    max-height: 2000px;
  }
  .collapsible-section .section-body {
    padding: 0;
  }
  .mobile-collapsed .section-content {
    max-height: 0;
  }
  .mobile-collapsed .toggle-icon {
    transform: rotate(0deg);
  }
}
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)), url(/images/001.png?d383aab4586e569764ef9d44ac5df2b5);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  z-index: 1;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(46, 125, 50, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(129, 199, 132, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero-section {
    background-attachment: scroll;
    background-position: center top;
    min-height: 500px;
    padding: 80px 0 60px;
  }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-section {
    background-attachment: scroll;
    min-height: 550px;
  }
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: titleFadeIn 1.2s ease-out;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .hero-title {
    white-space: normal;
  }
}
.hero-title .hero-subtitle {
  color: #ffffff;
  font-size: 0.7em;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 8px;
  display: block;
}
.hero-title .hero-main {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

@keyframes titleFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-subtitle {
  color: #2E7D32;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 600;
  margin-right: 20px;
  display: inline-block;
  animation: subtitleSlideIn 1s ease-out 0.3s both;
}

@keyframes subtitleSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-main {
  color: #ffffff;
  font-weight: 700;
  display: inline-block;
  animation: mainTextSlideIn 1s ease-out 0.6s both;
}

@keyframes mainTextSlideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  animation: descriptionFadeIn 1s ease-out 0.9s both;
  position: relative;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes descriptionFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-features {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  animation: featuresSlideIn 1s ease-out 1.2s both;
}

@keyframes featuresSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1B5E20;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.2);
  background: rgba(255, 255, 255, 0.95);
}
.feature-item i {
  font-size: 1.1rem;
  color: #2E7D32;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: actionsSlideIn 1s ease-out 1.5s both;
}

@keyframes actionsSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-actions .btn {
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-actions .btn.btn-primary {
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.hero-actions .btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(46, 125, 50, 0.5);
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
}
.hero-actions .btn.btn-secondary {
  background: rgba(255, 255, 255, 0.95);
  color: #2E7D32;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.hero-actions .btn.btn-secondary:hover {
  background: rgb(255, 255, 255);
  color: #1B5E20;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-image {
  position: relative;
  animation: imageSlideIn 1s ease-out 1.8s both;
}
.hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(46, 125, 50, 0.2);
  transition: all 0.3s ease;
}
.hero-image:hover img {
  transform: scale(1.02);
  box-shadow: 0 25px 80px rgba(46, 125, 50, 0.3);
}

@keyframes imageSlideIn {
  from {
    opacity: 0;
    transform: translateX(50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
.hero-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  color: white;
  padding: 14px 24px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
  backdrop-filter: blur(10px);
  border: none;
  animation: badgePulse 2s ease-in-out infinite;
}
.hero-badge .badge-icon {
  font-size: 1.2rem;
  animation: iconRotate 3s linear infinite;
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes iconRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2E7D32;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
}

.featured-products-section {
  padding: 80px 0;
  background: white;
}

.testimonials-section {
  padding: 80px 0;
  background: transparent;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.testimonial-content {
  margin-bottom: 20px;
}

.stars {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.testimonial-text {
  color: #666;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: #333;
}

.author-location {
  color: #666;
  font-size: 0.9rem;
}

.newsletter-section {
  padding: 80px 0 40px 0;
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 30%, #388E3C 100%);
  color: white;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 300px;
  background-image: url(/images/footer-1.svg?c5a2eac23dbb01a24de46e5a55e55fe2);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  opacity: 0.15;
  z-index: 0;
}
@media (min-width: 768px) {
  .newsletter-section::before {
    top: -5%;
    width: 30%;
  }
}
.newsletter-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36%;
  height: 300px;
  background-image: url(/images/footer-2.svg?dc02f86d78c9f949dff754b27e15a8ca);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  opacity: 0.15;
  z-index: 0;
}
@media (min-width: 768px) {
  .newsletter-section::after {
    bottom: -5%;
    width: 15%;
  }
}
.newsletter-section .newsletter-content {
  position: relative;
  z-index: 3;
}
.newsletter-section .newsletter-content .newsletter-text .newsletter-icon {
  display: inline-block;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.newsletter-section .newsletter-content .newsletter-text .newsletter-icon i {
  font-size: 2rem;
  color: white;
}
.newsletter-section .newsletter-content .newsletter-text .newsletter-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  background: linear-gradient(135deg, #ffffff 0%, #e8f5e8 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.newsletter-section .newsletter-content .newsletter-text .newsletter-description {
  font-size: 1.2rem;
  color: #ffffff;
  opacity: 1;
  margin-bottom: 35px;
  line-height: 1.6;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  font-weight: 600;
}
.newsletter-section .newsletter-content .newsletter-text .newsletter-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.newsletter-section .newsletter-content .newsletter-text .newsletter-benefits .benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}
.newsletter-section .newsletter-content .newsletter-text .newsletter-benefits .benefit-item i {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.newsletter-section .newsletter-content .newsletter-text .newsletter-benefits .benefit-item span {
  font-size: 1rem;
  color: white;
  opacity: 1;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}
.newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .form-header {
  text-align: center;
  margin-bottom: 30px;
}
.newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .form-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1B5E20;
  margin-bottom: 8px;
}
.newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .form-header p {
  color: #444;
  font-size: 1rem;
  margin: 0;
}
.newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group {
  margin-bottom: 25px;
}
.newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper {
  position: relative;
  margin-bottom: 15px;
}
.newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper .input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 1.1rem;
  z-index: 2;
}
.newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper .form-control, .newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper .form-group .form-select, .form-group .newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper .form-select, .newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper .form-group .form-textarea, .form-group .newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper .form-textarea, .newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper .search-form .search-input, .search-form .newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper .search-input {
  width: 100%;
  padding: 18px 20px 18px 55px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 1rem;
  background: white;
  color: #333;
  transition: all 0.3s ease;
}
.newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper .form-control::-moz-placeholder, .newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper .form-group .form-select::-moz-placeholder, .form-group .newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper .form-select::-moz-placeholder, .newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper .form-group .form-textarea::-moz-placeholder, .form-group .newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper .form-textarea::-moz-placeholder, .newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper .search-form .search-input::-moz-placeholder, .search-form .newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper .search-input::-moz-placeholder {
  color: #999;
}
.newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper .form-control::placeholder, .newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper .form-group .form-select::placeholder, .form-group .newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper .form-select::placeholder, .newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper .form-group .form-textarea::placeholder, .form-group .newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper .form-textarea::placeholder, .newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper .search-form .search-input::placeholder, .search-form .newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper .search-input::placeholder {
  color: #999;
}
.newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper .form-control:focus, .newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper .form-group .form-select:focus, .form-group .newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper .form-select:focus, .newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper .form-group .form-textarea:focus, .form-group .newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper .form-textarea:focus, .newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper .search-form .search-input:focus, .search-form .newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .input-wrapper .search-input:focus {
  outline: none;
  border-color: #4CAF50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}
.newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .btn-subscribe {
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}
.newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .btn-subscribe i {
  font-size: 1rem;
}
.newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .btn-subscribe:hover {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}
.newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .input-group .btn-subscribe:active {
  transform: translateY(0);
}
.newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .form-footer .privacy-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #444;
  font-size: 0.9rem;
}
.newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .form-footer .privacy-note i {
  color: #2E7D32;
}
.newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .form-footer .subscription-stats {
  text-align: right;
}
.newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .form-footer .subscription-stats .stats-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2E7D32;
  line-height: 1;
}
.newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .form-footer .subscription-stats .stats-text {
  font-size: 0.8rem;
  color: #666;
}
.newsletter-section .newsletter-transition {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, rgba(46, 125, 50, 0.8) 0%, rgba(27, 94, 32, 0.9) 50%, rgb(27, 94, 32) 100%);
  pointer-events: none;
  z-index: 1;
  border-radius: 0 0 20px 20px;
}
.newsletter-section .newsletter-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 20px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%231B5E20" opacity="0.25"/></svg>') repeat-x;
  background-size: 1200px 120px;
  z-index: 2;
}

.newsletter-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.newsletter-description {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
}

.newsletter-form-inner .input-group {
  margin-bottom: 12px;
}

.newsletter-form-inner .form-control, .newsletter-form-inner .form-group .form-select, .form-group .newsletter-form-inner .form-select, .newsletter-form-inner .form-group .form-textarea, .form-group .newsletter-form-inner .form-textarea, .newsletter-form-inner .search-form .search-input, .search-form .newsletter-form-inner .search-input {
  border-radius: 25px 0 0 25px;
  border: none;
  padding: 12px 20px;
}

.newsletter-form-inner .btn {
  border-radius: 0 25px 25px 0;
  padding: 12px 24px;
}

.newsletter-note {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 8px;
}
.newsletter-note i {
  margin-right: 6px;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 60px 0 30px 0;
  }
  .newsletter-section .newsletter-content .newsletter-text {
    text-align: center;
    margin-bottom: 40px;
  }
  .newsletter-section .newsletter-content .newsletter-text .newsletter-title {
    font-size: 2.2rem;
  }
  .newsletter-section .newsletter-content .newsletter-text .newsletter-description {
    font-size: 1.1rem;
  }
  .newsletter-section .newsletter-content .newsletter-text .newsletter-benefits {
    align-items: center;
  }
  .newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner {
    padding: 30px 20px;
  }
  .newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .form-header h3 {
    font-size: 1.5rem;
  }
  .newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .form-footer {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-section .newsletter-content .newsletter-form .newsletter-form-inner .form-footer .subscription-stats {
    text-align: center;
  }
  .newsletter-section::after {
    height: 25px;
    bottom: -15px;
  }
  .newsletter-section .newsletter-wave {
    height: 15px;
  }
}
.newsletter-section .newsletter-content {
  position: relative;
  z-index: 3;
  animation: fadeInUp 0.8s ease-out;
}
.newsletter-section .newsletter-transition {
  z-index: 1;
}
.newsletter-section .newsletter-wave {
  z-index: 2;
  animation: waveMove 3s ease-in-out infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes waveMove {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-10px);
  }
}
.company-strength-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(46, 125, 50, 0.08) 100%);
}
.company-strength-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.company-strength-section .section-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2E7D32;
  margin-bottom: 16px;
}
.company-strength-section .section-header .section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.company-strength-section .strength-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fffe 100%);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(76, 175, 80, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.company-strength-section .strength-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4CAF50, #2E7D32, #4CAF50);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.company-strength-section .strength-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 80px rgba(76, 175, 80, 0.15), 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  background: linear-gradient(145deg, #ffffff 0%, #f0fdf4 100%);
}
.company-strength-section .strength-card:hover::before {
  opacity: 1;
}
.company-strength-section .strength-card .strength-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
  color: #2E7D32;
  text-shadow: 0 2px 4px rgba(46, 125, 50, 0.2);
}
.company-strength-section .strength-card .strength-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2E7D32;
  margin-bottom: 16px;
  line-height: 1.3;
}
.company-strength-section .strength-card .strength-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-features {
    flex-direction: column;
    gap: 12px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .section-title {
    font-size: 2rem;
  }
  .company-strength-section {
    padding: 60px 0;
  }
  .company-strength-section .section-header {
    margin-bottom: 40px;
  }
  .company-strength-section .section-header .section-title {
    font-size: 0.8rem;
  }
  .company-strength-section .section-header .section-subtitle {
    font-size: 0.9rem;
  }
  .company-strength-section .strength-card {
    padding: 24px 16px;
    margin-bottom: 20px;
  }
  .company-strength-section .strength-card .strength-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #2E7D32;
    text-shadow: 0 2px 4px rgba(46, 125, 50, 0.2);
  }
  .company-strength-section .strength-card .strength-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  .company-strength-section .strength-card .strength-description {
    font-size: 0.9rem;
  }
}
.products-carousel-container {
  position: relative;
  overflow: hidden;
  margin: 0 -15px;
}
.products-carousel-container .products-carousel {
  overflow: hidden;
}
.products-carousel-container .products-carousel .products-track {
  display: flex;
  gap: 20px;
  animation: autoScroll 30s linear infinite;
}
.products-carousel-container .products-carousel .products-track:hover {
  animation-play-state: paused;
}
.products-carousel-container .products-carousel .products-track .product-slide {
  flex: 0 0 calc(25% - 15px);
  min-width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.products-carousel-container .products-carousel .products-track .product-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.15);
}
.products-carousel-container .products-carousel .products-track .product-slide .spice-product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.products-carousel-container .products-carousel .products-track .product-slide .spice-product-card .product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.products-carousel-container .products-carousel .products-track .product-slide .spice-product-card .product-content .spice-description {
  flex: 1;
  min-height: 60px;
}
.products-carousel-container .products-carousel .products-track .product-slide .spice-product-card .product-content .product-actions {
  margin-top: auto;
}
@media (max-width: 1200px) {
  .products-carousel-container .products-carousel .products-track .product-slide {
    flex: 0 0 calc(33.333% - 15px);
  }
}
@media (max-width: 768px) {
  .products-carousel-container .products-carousel .products-track .product-slide {
    flex: 0 0 calc(50% - 10px);
    min-width: 250px;
  }
}
@media (max-width: 480px) {
  .products-carousel-container .products-carousel .products-track .product-slide {
    flex: 0 0 calc(100% - 10px);
    min-width: 100%;
  }
}

@keyframes autoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.testimonials-section {
  padding: 80px 0;
  background: transparent;
}
.testimonials-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.testimonials-section .section-header .section-title {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: white !important;
  margin: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  background-clip: initial !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}
.testimonials-section .section-header .section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}
.testimonials-section .testimonials-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  height: 280px;
}
.testimonials-section .testimonials-slider .testimonials-container {
  transition: transform 0.8s ease;
  height: 100%;
}
.testimonials-section .testimonials-slider .testimonials-container .testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  height: 100%;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .testimonials-section .testimonials-slider .testimonials-container .testimonial-row {
    grid-template-columns: 1fr;
  }
}
.testimonials-section .testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.1);
  transition: all 0.3s ease;
}
.testimonials-section .testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(46, 125, 50, 0.2);
}
.testimonials-section .testimonial-card .testimonial-content {
  margin-bottom: 20px;
}
.testimonials-section .testimonial-card .testimonial-content .stars {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.testimonials-section .testimonial-card .testimonial-content .testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonials-section .testimonial-card .testimonial-content .testimonial-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.testimonials-section .testimonial-card .testimonial-content .testimonial-tags .tag {
  background: rgba(76, 175, 80, 0.1);
  color: #2E7D32;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}
.testimonials-section .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonials-section .testimonial-card .testimonial-author .author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(76, 175, 80, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials-section .testimonial-card .testimonial-author .author-avatar svg {
  width: 100%;
  height: 100%;
}
.testimonials-section .testimonial-card .testimonial-author .author-info {
  flex: 1;
}
.testimonials-section .testimonial-card .testimonial-author .author-info .author-name {
  font-weight: 600;
  color: #2E7D32;
  margin-bottom: 2px;
}
.testimonials-section .testimonial-card .testimonial-author .author-info .author-location {
  font-size: 0.9rem;
  color: #666;
}
.testimonials-section .testimonials-more {
  text-align: center;
}
.testimonials-section .testimonials-more .btn {
  background: transparent;
  border: 2px solid #2E7D32;
  color: #2E7D32;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.testimonials-section .testimonials-more .btn:hover {
  background: #2E7D32;
  color: white;
  transform: translateY(-2px);
}
.testimonials-section .testimonials-more .btn i {
  margin-right: 8px;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  .testimonials-section .section-header {
    margin-bottom: 40px;
  }
  .testimonials-section .section-header .section-title {
    font-size: 2rem;
  }
  .testimonials-section .section-header .section-subtitle {
    font-size: 1.1rem;
  }
  .testimonials-section .testimonials-slider {
    height: 250px;
  }
  .testimonials-section .testimonial-card {
    padding: 20px;
  }
  .testimonials-section .testimonial-card .testimonial-content {
    margin-bottom: 16px;
  }
  .testimonials-section .testimonial-card .testimonial-content .testimonial-text {
    font-size: 0.95rem;
  }
  .testimonials-section .testimonial-card .testimonial-author {
    gap: 10px;
  }
  .testimonials-section .testimonial-card .testimonial-author .author-avatar {
    width: 40px;
    height: 40px;
  }
  .testimonials-section .testimonial-card .testimonial-author .author-info .author-name {
    font-size: 0.95rem;
  }
  .testimonials-section .testimonial-card .testimonial-author .author-info .author-location {
    font-size: 0.85rem;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@font-face {
  font-family: "Jost";
  src: url("/vendor/font/jost/Jost-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("/vendor/font/jost/Jost-Medium.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
  font-weight: 700;
}
@media (min-width: 992px) {
  body.page-news .newest-box {
    padding-right: 50px;
  }
}
body.page-news .newest-box .newest-item {
  background-color: #fff;
  margin-bottom: 20px;
  display: flex;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
body.page-news .newest-box .newest-item .item-img {
  width: 150px;
  flex: 0 0 150px;
  margin-right: 20px;
}
@media (max-width: 768px) {
  body.page-news .newest-box .newest-item .item-img {
    width: 90px;
    flex: 0 0 90px;
    margin-right: 10px;
  }
}
body.page-news .newest-box .newest-item .item-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
body.page-news .newest-box .newest-item .item-title a {
  color: #222;
}
body.page-news .newest-box .newest-item .item-title a:hover {
  color: #2E7D32;
}
@media (max-width: 768px) {
  body.page-news .newest-box .newest-item .item-title {
    font-size: 16px;
    margin-bottom: 6px;
  }
}
body.page-news .newest-box .newest-item .item-summary {
  color: #666;
  line-height: 1.7;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  body.page-news .newest-box .newest-item .item-summary {
    font-size: 15px;
  }
}

.newes-tags {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.newes-tags i {
  color: #666;
}
.newes-tags a {
  color: #444;
  margin-right: 10px;
  display: inline-block;
  padding: 1px 4px;
  border: 1px solid #cad8ff;
  border-radius: 4px;
  font-size: 12px;
  transition: all 0.3s;
  background-color: #e5f0fe;
}
.newes-tags a:hover {
  color: #fff;
  background-color: #2E7D32;
  border-color: #2E7D32;
}

.newes-sidebar .search-box {
  margin-bottom: 40px;
}
.newes-sidebar .sidebar-item {
  margin-bottom: 30px;
}
.newes-sidebar .sidebar-item:last-child {
  margin-bottom: 0;
}
.newes-sidebar .sidebar-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.newes-sidebar .sidebar-list ul {
  padding-left: 0;
  list-style: none;
}
.newes-sidebar .sidebar-list ul a {
  color: #333;
  font-size: 16px;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  transition: all 0.3s;
}
.newes-sidebar .sidebar-list ul a:hover {
  color: #f00;
}

body.page-news-details .newest-box {
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 6px;
}
@media (min-width: 992px) {
  body.page-news-details .newest-box {
    min-height: 500px;
  }
}
@media (max-width: 768px) {
  body.page-news-details .newest-box {
    padding: 10px;
    margin-bottom: 20px;
  }
}
body.page-news-details .newest-box .newes-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  body.page-news-details .newest-box .newes-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
body.page-news-details .newest-box .newes-top {
  display: flex;
  color: #666;
  margin-bottom: 30px;
}
body.page-news-details .newest-box .newes-top > div {
  margin-right: 10px;
}
@media (min-width: 992px) {
  body.page-news-details .newest-box .newes-top > div {
    margin-right: 40px;
  }
}
body.page-news-details .newest-box .newes-top > div i {
  margin-right: 4px;
  color: #2E7D32;
}

.module-swiper .swiper-slide img {
  width: 100%;
}
.module-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 30px;
}
.module-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #2E7D32 !important;
}

.product-grid-item {
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .product-grid-item {
    margin-bottom: 30px;
  }
  .product-grid-item:hover .product-bottom-btns {
    transform: translateY(0) !important;
  }
  .product-grid-item:hover .product-price {
    transform: translateY(100%);
  }
}
.product-grid-item .image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.product-grid-item .image .cancel-favorite {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  color: #b00101;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.product-grid-item .image .cancel-favorite:hover {
  color: #fff;
  background-color: #b00101;
}
.product-grid-item .product-item-info {
  text-align: center;
}
.product-grid-item .product-item-info .product-name {
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-grid-item .product-item-info .product-name a {
  color: inherit;
}
.product-grid-item .product-item-info .product-name a:hover {
  text-decoration: underline;
  color: #2E7D32;
}
.product-grid-item .product-item-info .product-bottom {
  position: relative;
  overflow: hidden;
}
.product-grid-item .product-item-info .product-bottom-btns {
  transform: translateY(-100%);
  transition: transform 0.3s;
}
.product-grid-item .product-item-info .product-bottom-btns .btn-add-cart {
  font-weight: bold;
  font-size: 16px;
  text-decoration: underline;
  color: #2E7D32;
}
.product-grid-item .product-item-info .product-price {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  width: 100%;
  transition: transform 0.3s;
}
.product-grid-item .product-item-info .product-price .price-new {
  font-size: 1rem;
  font-weight: bold;
  color: #E53E3E;
}
.product-grid-item .product-item-info .product-price .price-old {
  font-size: 0.9rem;
  color: #768088;
  text-decoration: line-through;
  margin-left: 10px;
  margin-right: 10px;
}

.list {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
}
.list .image {
  flex: 0 0 200px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.list .product-item-info {
  flex: 0.2;
  padding-left: 20px;
  padding-top: 10px;
  text-align: left;
}
.list .product-item-info .sub-product-title {
  margin-top: 10px;
  margin-bottom: 20px;
}
.list .product-item-info .product-bottom {
  margin-top: 10px;
  margin-bottom: 20px;
}
.list .product-item-info .product-price {
  text-align: left;
  justify-content: flex-start;
}
.list .product-item-info .product-price .price-old {
  margin-left: 0;
}
.list .product-item-info .add-wishlist {
  margin-top: 10px;
  margin-bottom: 20px;
  max-width: 100px;
}

.module-product-tab .nav-tabs {
  display: flex;
  justify-content: center;
  border: none;
  margin-bottom: 20px;
  margin-top: -6px;
}
@media (min-width: 992px) {
  .module-product-tab .nav-tabs {
    margin-bottom: 40px;
  }
}
.module-product-tab .nav-tabs .nav-link {
  border: none !important;
  color: #7E7E7E;
  border-radius: 50px;
  margin: 0;
  font-size: 12px;
  font-weight: bold;
}
@media (min-width: 992px) {
  .module-product-tab .nav-tabs .nav-link {
    margin: 0 10px;
    font-size: 14px;
  }
}
.module-product-tab .nav-tabs .nav-link:hover {
  background-color: #FFEBF2;
}
.module-product-tab .nav-tabs .nav-link.active {
  background-color: #FFEBF2;
  color: #2E7D32;
}

.blog-item {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .blog-item {
    margin-bottom: 30px;
  }
}
.blog-item .image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 12px;
}
.blog-item .blog-item-info .blog-catalog {
  font-weight: bold;
  color: #2E7D32;
  margin-bottom: 4px;
}
.blog-item .blog-item-info .blog-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}
@media (min-width: 768px) {
  .blog-item .blog-item-info .blog-title {
    font-size: 18px;
  }
}
.blog-item .blog-item-info .author-wrap {
  display: flex;
  align-items: center;
  color: #777;
}
.blog-item .blog-item-info .author-wrap .blog-author {
  margin-right: 20px;
}

body.page-login {
  margin-bottom: 0 !important;
}

.login-register-box {
  max-width: 540px;
  background-color: #F3F3F3;
  margin: 30px auto;
  padding: 16px;
}
@media (min-width: 992px) {
  .login-register-box {
    padding: 36px;
    margin: 70px auto;
  }
}
.login-register-box.iframe {
  margin: 10px 0 0;
}
.login-register-box .login-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.login-register-box .login-sub-title {
  text-align: center;
  font-size: 16px;
  color: #666666;
  margin-bottom: 30px;
}
.login-register-box .form-group input {
  border: none;
  height: 44px;
  font-size: 15px;
  border-radius: 0;
}
.login-register-box .btn-submit {
  margin-top: 30px;
}
@media (min-width: 400px) {
  .login-register-box .btn-submit {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.login-register-box .btn-submit .form-submit {
  width: 50%;
  display: block;
}
.login-register-box .btn-submit a {
  color: #222;
  display: block;
  font-weight: bold;
}

.breadcrumb-wrap {
  background-image: url("/images/icons/breadcrumb-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px 0;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .breadcrumb-wrap {
    padding: 15px 0;
    margin-bottom: 30px;
  }
}
.breadcrumb-wrap .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}
.breadcrumb-wrap .breadcrumb li {
  font-size: 14px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  line-height: 1;
}
.breadcrumb-wrap .breadcrumb li a {
  text-decoration: none;
  color: #333;
}
.breadcrumb-wrap .breadcrumb li .home-icon {
  margin-right: 4px;
}
.breadcrumb-wrap .breadcrumb li:not(:last-child) {
  margin-right: 10px;
}
.breadcrumb-wrap .breadcrumb li:not(:last-child)::after {
  content: ">";
  margin: 0 10px;
}

.account-card-box {
  border: 1px solid #ECF0F4;
  padding: 16px;
}
@media (min-width: 992px) {
  .account-card-box {
    min-height: 621px;
  }
}
@media (min-width: 768px) {
  .account-card-box {
    padding: 30px;
  }
}
.account-card-box .account-card-title {
  margin-bottom: 30px;
}
.account-card-box .account-card-title span {
  font-size: 16px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .account-card-box .account-card-title span {
    font-size: 20px;
  }
}
.account-card-box .account-card-sub-title {
  margin-bottom: 16px;
}
.account-card-box .account-card-sub-title span {
  font-size: 16px;
  font-weight: bold;
}

body.page-account .account-info .account-data {
  border-bottom: 1px solid #ECF0F4;
  margin-bottom: 50px;
  padding-bottom: 50px;
  margin-top: 50px;
}
body.page-account .account-info .account-data .account-item-data {
  text-align: center;
}
body.page-account .account-info .account-data .account-item-data .value {
  font-size: 2rem;
  font-weight: bold;
}
body.page-account .account-info .no-order {
  background-color: #f6f6f6;
  font-size: 1rem;
}
body.page-account .account-info .no-order a {
  color: #457C46;
}

.account-sidebar {
  border: 1px solid #e8eef3;
  margin-bottom: 20px;
}
.account-sidebar .account-user {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e8eef3;
  margin: 16px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .account-sidebar .account-user {
    margin: 30px;
    padding-bottom: 30px;
  }
}
.account-sidebar .account-user .profile {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e8eef3;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 14px;
}
.account-sidebar .account-user .account-name .name {
  font-size: 0.9rem;
}
.account-sidebar .account-links {
  list-style: none;
  padding-left: 0;
}
.account-sidebar .account-links li.active a {
  color: #222;
  border-left: 2px solid #2E7D32;
}
.account-sidebar .account-links li a {
  color: #7C818B;
  padding: 6px 10px 6px 18px;
  margin: 20px 0;
  border-left: 2px solid transparent;
  display: flex;
  font-weight: bold;
  align-items: center;
  font-size: 1rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .account-sidebar .account-links li a {
    padding: 6px 10px 6px 30px;
    margin: 26px 0;
  }
}
.account-sidebar .account-links li a:hover {
  color: #222;
}
.account-sidebar .account-links li a i {
  color: #222;
  font-size: 20px;
  margin-right: 20px;
}

.account-table-box th, .account-table-box td {
  padding: 10px 0;
}
.account-table-box th {
  border-bottom: none;
  font-size: 14px;
}
.account-table-box tr:last-child td {
  border-bottom: none;
}

body.page-categories .header-top {
  height: 40px !important;
  min-height: 40px !important;
  max-height: 40px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}
body.page-categories .header-top .top-info {
  height: 40px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
}
body.page-categories .header-top .top-info a {
  height: 40px !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 12px !important;
  margin: 0 !important;
  font-size: 13px !important;
  vertical-align: middle !important;
  transform: translateY(0) !important;
}
body.page-categories .header-top .language-switch {
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
}
body.page-categories .header-top .language-switch .dropdown {
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
}
body.page-categories .header-top .language-switch .dropdown > a,
body.page-categories .header-top .language-switch .dropdown .btn,
body.page-categories .header-top .language-switch .dropdown .dropdown-toggle {
  height: 40px !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 12px !important;
  margin: 0 !important;
  font-size: 13px !important;
  vertical-align: middle !important;
  transform: translateY(0) !important;
}
body.page-categories .header-desktop {
  height: 100px;
  min-height: 100px;
  max-height: 100px;
  background: white;
}
body.page-categories .header-desktop .logo {
  max-width: 270px !important;
  max-height: 80px !important;
}
body.page-categories .header-desktop .logo img {
  width: 270px !important;
  height: 80px !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

.page-categories-simple {
  background: #ffffff;
  min-height: 100vh;
}
.page-categories-simple .container {
  padding-top: 1rem;
  padding-bottom: 2rem;
  max-width: 1200px;
}

.category-breadcrumb-simple {
  margin-bottom: 1.5rem;
}
.category-breadcrumb-simple .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}
.category-breadcrumb-simple .breadcrumb .breadcrumb-item {
  font-size: 0.9rem;
  color: #6c757d;
}
.category-breadcrumb-simple .breadcrumb .breadcrumb-item.active {
  color: #28a745;
  font-weight: 600;
}
.category-breadcrumb-simple .breadcrumb .breadcrumb-item a {
  color: #6c757d;
  text-decoration: none;
}
.category-breadcrumb-simple .breadcrumb .breadcrumb-item a:hover {
  color: #28a745;
}

.category-title-section {
  margin-bottom: 2rem;
  text-align: center;
}
.category-title-section .category-title-simple {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #28a745, #20c997);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.category-title-section .category-description-simple {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.subcategories-nav-simple {
  margin-bottom: 2rem;
  text-align: center;
}
.subcategories-nav-simple .subcategories-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}
.subcategories-nav-simple .subcategories-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.subcategories-nav-simple .subcategories-links .subcategory-link-simple {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  text-decoration: none;
  color: #495057;
  font-weight: 500;
  transition: all 0.3s ease;
}
.subcategories-nav-simple .subcategories-links .subcategory-link-simple:hover {
  background: #28a745;
  border-color: #28a745;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}
.subcategories-nav-simple .subcategories-links .subcategory-link-simple .product-count {
  margin-left: 0.5rem;
  font-size: 0.85rem;
  opacity: 0.8;
}

.products-section-simple .products-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.products-section-simple .products-grid-modern .product-card-new {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}
.products-section-simple .products-grid-modern .product-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.products-section-simple .products-grid-modern .product-card-new .product-image-container {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.products-section-simple .products-grid-modern .product-card-new .product-image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.3s ease;
}
.products-section-simple .products-grid-modern .product-card-new .product-image-container:hover img {
  transform: scale(1.05);
}
.products-section-simple .products-grid-modern .product-card-new .product-image-container .organic-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.products-section-simple .products-grid-modern .product-card-new .product-image-container .organic-badge i {
  font-size: 0.9rem;
}
.products-section-simple .products-grid-modern .product-card-new .product-image-container .product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.products-section-simple .products-grid-modern .product-card-new .product-image-container .product-overlay .product-actions {
  display: flex;
  gap: 0.5rem;
}
.products-section-simple .products-grid-modern .product-card-new .product-image-container .product-overlay .product-actions .btn {
  padding: 0.5rem;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #495057;
  transition: all 0.3s ease;
}
.products-section-simple .products-grid-modern .product-card-new .product-image-container .product-overlay .product-actions .btn:hover {
  background: #28a745;
  color: white;
  transform: scale(1.1);
}
.products-section-simple .products-grid-modern .product-card-new .product-image-container:hover .product-overlay {
  opacity: 1;
}
.products-section-simple .products-grid-modern .product-card-new .product-info {
  padding: 1.25rem;
}
.products-section-simple .products-grid-modern .product-card-new .product-info .product-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.products-section-simple .products-grid-modern .product-card-new .product-info .product-origin {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.products-section-simple .products-grid-modern .product-card-new .product-info .product-origin i {
  color: #28a745;
}
.products-section-simple .products-grid-modern .product-card-new .product-info .product-description {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.products-section-simple .products-grid-modern .product-card-new .product-info .product-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.products-section-simple .products-grid-modern .product-card-new .product-info .product-pricing .product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #28a745;
}
.products-section-simple .products-grid-modern .product-card-new .product-info .product-pricing .product-original-price {
  font-size: 0.9rem;
  color: #6c757d;
  text-decoration: line-through;
  margin-left: 0.5rem;
}
.products-section-simple .products-grid-modern .product-card-new .product-info .add-to-cart-btn-new {
  width: 100%;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #28a745, #20c997);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.products-section-simple .products-grid-modern .product-card-new .product-info .add-to-cart-btn-new:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}
.products-section-simple .products-grid-modern .product-card-new .product-info .add-to-cart-btn-new:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .page-categories-simple .container {
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
  }
  .category-title-section {
    margin-bottom: 1.5rem;
  }
  .category-title-section .category-title-simple {
    font-size: 2rem;
  }
  .category-title-section .category-description-simple {
    font-size: 1rem;
  }
  .subcategories-nav-simple {
    margin-bottom: 1.5rem;
  }
  .subcategories-nav-simple .subcategories-links {
    gap: 0.75rem;
  }
  .subcategories-nav-simple .subcategories-links .subcategory-link-simple {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  .products-section-simple .products-grid-modern {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .products-section-simple .products-grid-modern {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.products-grid-redesigned {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
@media (max-width: 768px) {
  .products-grid-redesigned {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
  }
}
@media (max-width: 480px) {
  .products-grid-redesigned {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
  }
}

.product-card-new {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(40, 167, 69, 0.1);
  position: relative;
}
.product-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(40, 167, 69, 0.15);
  border-color: rgba(40, 167, 69, 0.3);
}

.product-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: transparent;
}
.product-image-container .product-image-link {
  display: block;
  width: 100%;
  height: 100%;
}
.product-image-container .product-image-link .product-main-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.4s ease;
}
.product-image-container:hover .product-main-image {
  transform: scale(1.05);
}

.product-card-new .organic-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}
.product-card-new:hover .product-overlay {
  opacity: 1;
}
.product-overlay .overlay-actions {
  display: flex;
  gap: 1rem;
}
.product-overlay .overlay-actions .action-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #28a745;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.product-overlay .overlay-actions .action-btn:hover {
  background: #28a745;
  color: white;
  transform: scale(1.1);
}
.product-overlay .overlay-actions .action-btn.wishlist-btn.active {
  background: #dc3545;
  color: white;
}

.product-info {
  padding: 1rem 1.25rem 1.25rem;
}
.product-info .product-title {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}
.product-info .product-title .title-link {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}
.product-info .product-title .title-link:hover {
  color: #28a745;
}
.product-info .product-description {
  margin: 0 0 0.75rem 0;
  font-size: 0.85rem;
  color: #6c757d;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-info .product-pricing {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.product-info .product-pricing .original-price {
  font-size: 0.9rem;
  color: #6c757d;
  text-decoration: line-through;
}
.product-info .product-pricing .current-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #28a745;
}
.product-info .add-to-cart-btn-new {
  width: 100%;
  padding: 0.6rem 0.9rem;
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.product-info .add-to-cart-btn-new:hover {
  background: linear-gradient(135deg, #218838, #1ea085);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}
.product-info .add-to-cart-btn-new:active {
  transform: translateY(0);
}
.product-info .add-to-cart-btn-new i {
  font-size: 1rem;
}

.no-products-container {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}
.no-products-container .no-products-content {
  text-align: center;
  padding: 3rem;
}
.no-products-container .no-products-content .no-products-icon {
  font-size: 4rem;
  color: #dee2e6;
  margin-bottom: 1.5rem;
}
.no-products-container .no-products-content .no-products-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 1rem;
}
.no-products-container .no-products-content .no-products-description {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 2rem;
  max-width: 400px;
}
.no-products-container .no-products-content .no-products-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.no-products-container .no-products-content .no-products-actions .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.no-products-container .no-products-content .no-products-actions .btn.btn-primary {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  border: none;
}
.no-products-container .no-products-content .no-products-actions .btn.btn-primary:hover {
  background: linear-gradient(135deg, #218838, #1ea085);
  transform: translateY(-2px);
}
.no-products-container .no-products-content .no-products-actions .btn.btn-outline-secondary {
  background: transparent;
  color: #6c757d;
  border: 1px solid #dee2e6;
}
.no-products-container .no-products-content .no-products-actions .btn.btn-outline-secondary:hover {
  background: #f8f9fa;
  border-color: #28a745;
  color: #28a745;
}

.pagination-modern {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.pagination-modern .pagination {
  background: #ffffff;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.pagination-modern .pagination .page-item {
  margin: 0 0.25rem;
}
.pagination-modern .pagination .page-item .page-link {
  border: none;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  color: #6c757d;
  font-weight: 500;
  transition: all 0.3s ease;
}
.pagination-modern .pagination .page-item .page-link:hover {
  background: #f8f9fa;
  color: #28a745;
}
.pagination-modern .pagination .page-item .page-link.active {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
}

@media (max-width: 768px) {
  .product-card-new {
    border-radius: 16px;
  }
  .product-card-new:hover {
    transform: translateY(-4px);
  }
  .product-info {
    padding: 1.25rem;
  }
  .product-info .product-title {
    font-size: 1rem;
  }
  .product-info .product-pricing .current-price {
    font-size: 1.1rem;
  }
  .product-info .add-to-cart-btn-new {
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .product-info {
    padding: 1rem;
  }
  .product-info .product-title {
    font-size: 0.95rem;
  }
  .product-info .product-description {
    font-size: 0.85rem;
  }
  .product-info .product-pricing .current-price {
    font-size: 1rem;
  }
  .organic-badge {
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    font-size: 0.7rem;
  }
}
.category-hero-modern {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 30%, #388E3C 100%);
  padding: 8px 0 4px;
  position: relative;
  overflow: hidden;
}
.category-hero-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2eee7" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e2eee7" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23e2eee7" opacity="0.2"/><circle cx="10" cy="60" r="0.5" fill="%23e2eee7" opacity="0.2"/><circle cx="90" cy="40" r="0.5" fill="%23e2eee7" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.5;
}
.category-hero-modern .category-hero-wrapper {
  position: relative;
  z-index: 2;
}
.category-hero-modern .category-breadcrumb-modern {
  margin-bottom: 8px;
}
.category-hero-modern .category-breadcrumb-modern .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  display: flex;
  align-items: center;
}
.category-hero-modern .category-breadcrumb-modern .breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
}
.category-hero-modern .category-breadcrumb-modern .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #b8d4c1;
  font-weight: 700;
  font-size: 18px;
  margin: 0 8px;
}
.category-hero-modern .category-breadcrumb-modern .breadcrumb .breadcrumb-item a {
  color: #e8f5e8;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}
.category-hero-modern .category-breadcrumb-modern .breadcrumb .breadcrumb-item a:hover {
  color: #ffffff;
}
.category-hero-modern .category-breadcrumb-modern .breadcrumb .breadcrumb-item a i {
  margin-right: 4px;
}
.category-hero-modern .category-breadcrumb-modern .breadcrumb .breadcrumb-item.active {
  color: #ffffff;
  font-weight: 700;
}
.category-hero-modern .category-title-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.category-hero-modern .category-title-section .category-badge {
  display: none;
}
.category-hero-modern .category-title-section .category-title {
  display: none;
}
.category-hero-modern .category-title-section .category-description {
  display: none;
}
.category-hero-modern .category-title-section .category-stats {
  display: none;
}

.category-content-modern {
  padding: 24px 0;
  background: #fff;
}
.category-content-modern .category-sidebar-modern {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 20px;
}
.category-content-modern .category-sidebar-modern .sidebar-header {
  margin-bottom: 25px;
  text-align: center;
}
.category-content-modern .category-sidebar-modern .sidebar-header .sidebar-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f7a45;
  margin-bottom: 8px;
}
.category-content-modern .category-sidebar-modern .sidebar-header .sidebar-subtitle {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}
.category-content-modern .category-sidebar-modern .category-nav-modern .category-nav-list .category-nav-item {
  margin-bottom: 8px;
}
.category-content-modern .category-sidebar-modern .category-nav-modern .category-nav-list .category-nav-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.category-content-modern .category-sidebar-modern .category-nav-modern .category-nav-list .category-nav-item > a:hover {
  background: #1f7a45;
  color: #fff;
  border-color: #1f7a45;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 122, 69, 0.3);
}
.category-content-modern .category-sidebar-modern .category-nav-modern .category-nav-list .category-nav-item > a .category-nav-name {
  font-size: 15px;
}
.category-content-modern .category-sidebar-modern .category-nav-modern .category-nav-list .category-nav-item > a .toggle {
  font-size: 12px;
  transition: transform 0.3s ease;
}
.category-content-modern .category-sidebar-modern .category-nav-modern .category-nav-list .category-nav-item .category-subnav {
  margin-top: 8px;
  padding-left: 20px;
}
.category-content-modern .category-sidebar-modern .category-nav-modern .category-nav-list .category-nav-item .category-subnav .category-subnav-item {
  margin-bottom: 4px;
}
.category-content-modern .category-sidebar-modern .category-nav-modern .category-nav-list .category-nav-item .category-subnav .category-subnav-item a {
  display: block;
  padding: 8px 12px;
  color: #6c757d;
  text-decoration: none;
  font-size: 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.category-content-modern .category-sidebar-modern .category-nav-modern .category-nav-list .category-nav-item .category-subnav .category-subnav-item a:hover {
  background: rgba(31, 122, 69, 0.1);
  color: #1f7a45;
  padding-left: 16px;
}
.category-content-modern .category-main-content .section-header {
  margin-bottom: 16px;
  text-align: center;
}
.category-content-modern .category-main-content .section-header .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f7a45;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .category-content-modern .category-main-content .section-header .section-title {
    font-size: 1.6rem;
  }
}
.category-content-modern .category-main-content .section-header .section-subtitle {
  font-size: 1rem;
  color: #6c757d;
  margin: 0;
}
.category-content-modern .category-main-content .subcategories-section-modern {
  margin-bottom: 24px;
}
.category-content-modern .category-main-content .subcategories-section-modern .subcategories-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
@media (max-width: 768px) {
  .category-content-modern .category-main-content .subcategories-section-modern .subcategories-grid-modern {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }
}
.category-content-modern .category-main-content .subcategories-section-modern .subcategories-grid-modern .subcategory-card-modern {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.category-content-modern .category-main-content .subcategories-section-modern .subcategories-grid-modern .subcategory-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.category-content-modern .category-main-content .subcategories-section-modern .subcategories-grid-modern .subcategory-card-modern .subcategory-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.category-content-modern .category-main-content .subcategories-section-modern .subcategories-grid-modern .subcategory-card-modern .subcategory-link .subcategory-image {
  height: 120px;
  overflow: hidden;
  position: relative;
}
.category-content-modern .category-main-content .subcategories-section-modern .subcategories-grid-modern .subcategory-card-modern .subcategory-link .subcategory-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.category-content-modern .category-main-content .subcategories-section-modern .subcategories-grid-modern .subcategory-card-modern .subcategory-link .subcategory-image .placeholder-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
}
.category-content-modern .category-main-content .subcategories-section-modern .subcategories-grid-modern .subcategory-card-modern .subcategory-link .subcategory-image .placeholder-image i {
  font-size: 2rem;
}
.category-content-modern .category-main-content .subcategories-section-modern .subcategories-grid-modern .subcategory-card-modern .subcategory-link:hover .subcategory-image img {
  transform: scale(1.05);
}
.category-content-modern .category-main-content .subcategories-section-modern .subcategories-grid-modern .subcategory-card-modern .subcategory-link .subcategory-content {
  padding: 20px;
}
.category-content-modern .category-main-content .subcategories-section-modern .subcategories-grid-modern .subcategory-card-modern .subcategory-link .subcategory-content .subcategory-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f7a45;
  margin-bottom: 8px;
  line-height: 1.3;
}
.category-content-modern .category-main-content .subcategories-section-modern .subcategories-grid-modern .subcategory-card-modern .subcategory-link .subcategory-content .subcategory-count {
  font-size: 14px;
  color: #6c757d;
  font-weight: 500;
}
@media (max-width: 992px) {
  .category-content-modern .category-sidebar-modern {
    position: static;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .category-hero-modern {
    padding: 12px 0 8px;
  }
  .category-hero-modern .category-title-section .category-stats {
    flex-direction: column;
    gap: 15px;
  }
  .category-content-modern {
    padding: 40px 0;
  }
  .category-content-modern .category-sidebar-modern {
    padding: 20px;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.category-hero-modern,
.category-content-modern {
  animation: fadeInUp 0.6s ease-out;
}

.subcategory-card-modern,
.category-nav-item {
  animation: fadeInUp 0.4s ease-out;
}

.loading {
  opacity: 0.6;
  pointer-events: none;
}

.category-nav-item.active > a {
  background: #1f7a45 !important;
  color: #fff !important;
  border-color: #1f7a45 !important;
}

@media (max-width: 992px) {
  body.page-product .breadcrumb-wrap {
    display: none;
  }
}
body.page-product .page-product-top {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  body.page-product .page-product-top {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  body.page-product .page-product-top .product-left-col {
    padding: 0;
  }
}
body.page-product .page-product-top .product-images {
  display: flex;
}
@media (max-width: 991px) {
  body.page-product .page-product-top .product-images {
    margin-bottom: 10px;
    flex-direction: column;
  }
}
body.page-product .page-product-top .product-images .sub-product-img {
  width: 100%;
  position: relative;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-images .sub-product-img {
    width: 100px;
    height: 560px;
    flex: 0 0 100px;
    margin-right: 20px;
  }
  body.page-product .page-product-top .product-images .sub-product-img:hover .swiper .sub-product-btn {
    display: block;
  }
  body.page-product .page-product-top .product-images .sub-product-img::before, body.page-product .page-product-top .product-images .sub-product-img::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
  }
  body.page-product .page-product-top .product-images .sub-product-img::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent);
  }
  body.page-product .page-product-top .product-images .sub-product-img::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
  }
  body.page-product .page-product-top .product-images .sub-product-img:hover::before, body.page-product .page-product-top .product-images .sub-product-img:hover::after {
    opacity: 1;
  }
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-images .sub-product-img .swiper {
    height: 100%;
  }
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .swiper-slide {
  display: flex;
  justify-content: center;
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .swiper-slide .thumbnail-item {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .swiper-slide .thumbnail-item img {
  border: 1px solid #eee;
  border-radius: 2px;
  transition: border-color 0.3s ease;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-images .sub-product-img .swiper .swiper-slide {
    width: 100px;
    height: 100px;
  }
  body.page-product .page-product-top .product-images .sub-product-img .swiper .swiper-slide .thumbnail-item:hover {
    border-color: #2E7D32;
  }
  body.page-product .page-product-top .product-images .sub-product-img .swiper .swiper-slide .thumbnail-item.active {
    border-color: #2E7D32;
    background-color: rgba(46, 125, 50, 0.1);
  }
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .sub-product-btn {
  display: none;
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .sub-product-btn > div {
  position: absolute;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 9;
  font-size: 20px;
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .sub-product-btn > div:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .sub-product-btn > div.sub-product-prev {
  top: 0;
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .sub-product-btn > div.sub-product-next {
  bottom: 0;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-images .sub-product-img .swiper .sub-product-pagination {
    display: none;
  }
}
body.page-product .page-product-top .product-images .main-product-img {
  cursor: pointer;
}
@media (max-width: 991px) {
  body.page-product .page-product-top .product-images .main-product-img {
    margin-top: 15px;
  }
}
body.page-product .page-product-top .product-images .mobile-product-slideshow .swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-product .page-product-top .product-images .mobile-product-slideshow .swiper .swiper-slide .video-play-overlay {
  cursor: pointer;
  transition: transform 0.3s ease;
}
body.page-product .page-product-top .product-images .mobile-product-slideshow .swiper .swiper-slide .video-play-overlay:hover {
  transform: scale(1.1);
}
body.page-product .page-product-top .product-images .mobile-product-slideshow .mobile-product-pagination {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
}
body.page-product .page-product-top .product-images .mobile-product-slideshow .mobile-product-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  opacity: 1;
  margin: 0 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
body.page-product .page-product-top .product-images .mobile-product-slideshow .mobile-product-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #2E7D32;
  transform: scale(1.2);
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-info {
    padding-left: 20px;
  }
}
body.page-product .page-product-top .product-info .product-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-info .product-title {
    font-size: 24px;
  }
}
body.page-product .page-product-top .product-info .product-price {
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-info .product-price {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
body.page-product .page-product-top .product-info .product-price .price {
  font-size: 20px;
  font-weight: bold;
  color: #E53E3E;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-info .product-price .price {
    font-size: 26px;
  }
}
body.page-product .page-product-top .product-info .product-price .old-price {
  font-size: 16px;
  color: #777;
  text-decoration: line-through;
}
body.page-product .page-product-top .product-info .stock-wrap > div {
  font-weight: bold;
  font-size: 14px;
}
body.page-product .page-product-top .product-info .stock-wrap > div.in-stock {
  color: #3FC158;
  background-color: #EEF8EE;
}
body.page-product .page-product-top .product-info .stock-wrap > div.out-stock {
  color: #777;
  background-color: #e3e3e3;
}
body.page-product .page-product-top .product-info .sub-product-title {
  color: #666;
  line-height: 1.8;
  font-size: 14px;
  margin-top: 10px;
}
body.page-product .page-product-top .product-info .product-param {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  font-size: 14px;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-info .product-param {
    margin: 20px 0;
  }
}
body.page-product .page-product-top .product-info .product-param li {
  color: #333;
  line-height: 1.8;
  padding: 2px 0;
}
body.page-product .page-product-top .product-info .product-param li span.title {
  color: #888;
}
body.page-product .page-product-top .product-info .product-variant-box {
  margin-bottom: 20px;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant {
  margin-bottom: 6px;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant .variant-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 6px;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant .variant-values .variant-value-name {
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  border: 1px solid #ddd;
  padding: 5px 14px;
  border-radius: 2px;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant .variant-values .variant-value-name.disabled {
  color: #999;
  border-color: #ddd;
  border-style: dashed;
  text-decoration: line-through;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant .variant-values .variant-value-name.active {
  border-color: #2E7D32;
  color: #2E7D32;
  border-style: solid;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant .variant-values .variant-value-name:hover {
  border-color: #2E7D32;
}
body.page-product .page-product-top .product-info .product-info-bottom {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-info .product-info-bottom {
    height: 50px;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 992px) {
  body.page-product .page-product-top .product-info .product-info-bottom .quantity-wrap {
    height: 40px;
    margin-bottom: 10px;
  }
}
body.page-product .page-product-top .product-info .product-info-bottom .product-info-btns {
  height: inherit;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-info .product-info-bottom .product-info-btns {
    margin-left: 20px;
  }
}
@media (max-width: 992px) {
  body.page-product .page-product-top .product-info .product-info-bottom .product-info-btns {
    height: 40px;
    display: flex;
  }
}
body.page-product .page-product-top .product-info .product-info-bottom .product-info-btns .btn {
  height: inherit;
  padding: 0 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 0;
}
@media (max-width: 992px) {
  body.page-product .page-product-top .product-info .product-info-bottom .product-info-btns .btn {
    width: 50%;
  }
}
body.page-product .page-product-top .product-info .product-info-bottom .product-info-btns .btn.buy-now {
  background-color: #E6E8EB;
  color: #333;
}
body.page-product .page-product-top .product-info .product-info-bottom .product-info-btns .btn.buy-now:hover {
  background-color: #D9DCE1;
}
body.page-product .page-product-top .product-info .add-wishlist {
  font-weight: bold;
  cursor: pointer;
}
body.page-product .page-product-top .product-info .add-wishlist:hover {
  text-decoration: underline;
}
body.page-product .product-description {
  margin-bottom: 40px;
}
body.page-product .bundle-items-display {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 15px;
  margin: 15px 0;
}
body.page-product .bundle-title {
  color: #495057;
  font-weight: 600;
  margin-bottom: 10px;
}
body.page-product .bundle-products {
  gap: 10px;
}
body.page-product .bundle-product-item {
  background-color: white;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 8px;
  margin: 2px 0;
}
body.page-product .bundle-product-name {
  font-size: 14px;
  font-weight: 500;
  color: #212529;
  line-height: 1.2;
}
body.page-product .bundle-separator {
  font-weight: bold;
  color: #6c757d;
  font-size: 18px;
}
body.page-product .bundle-total-price {
  color: #dc3545;
  font-size: 16px;
  border-top: 1px solid #dee2e6;
  padding-top: 10px;
}

body.page-cart .products-table .product-item {
  display: flex;
  align-items: center;
}
body.page-cart .products-table .product-name {
  color: #222;
}
body.page-cart .products-table .product-name a {
  color: inherit;
}
body.page-cart .products-table .product-name a:hover {
  text-decoration: underline;
  color: #2E7D32;
}
body.page-cart .products-table .td-image {
  width: 100px;
  padding: 0;
}
@media (min-width: 768px) {
  body.page-cart .products-table .td-image {
    width: 70px;
  }
}
body.page-cart .products-table .product-image {
  width: 90px;
  height: 90px;
}
@media (min-width: 768px) {
  body.page-cart .products-table .product-image {
    margin-right: 10px;
    width: 50px;
    height: 50px;
  }
}
body.page-cart .products-table .product-image img {
  max-height: 100%;
}
body.page-cart .products-table .quantity-wrap {
  height: 27px;
  width: 90px;
}
body.page-cart .products-table .quantity-wrap > div {
  font-size: 14px;
}
@media (min-width: 768px) {
  body.page-cart .products-table .quantity-wrap {
    height: 40px;
    width: 120px;
  }
  body.page-cart .products-table .quantity-wrap > div {
    font-size: 18px;
  }
}
body.page-cart .products-table .quantity-wrap input {
  font-size: 14px;
}
@media (max-width: 768px) {
  body.page-cart .products-table tr {
    position: relative;
  }
  body.page-cart .products-table thead, body.page-cart .products-table .td-price, body.page-cart .products-table .td-subtotal {
    display: none;
  }
  body.page-cart .products-table .td-product-check {
    padding-left: 0;
  }
  body.page-cart .products-table .td-product-info {
    width: 100%;
    padding: 20px 0 20px 10px;
  }
  body.page-cart .products-table .td-delete {
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  body.page-cart .products-table .mb-price {
    display: none;
  }
}
body.page-cart .cart-data {
  background-color: #F8F9FA;
  padding: 26px;
}
body.page-cart .cart-data .title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
body.page-cart .cart-data .cart-data-list {
  list-style: none;
  padding: 0;
}
body.page-cart .cart-data .cart-data-list > li {
  border-bottom: 1px solid #eee;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}
body.page-cart .cart-data .cart-data-list > li:last-child {
  border-bottom: none;
}
body.page-cart .cart-data .cart-data-list > li:last-child > span:last-child {
  font-weight: bold;
  color: #E53E3E;
  font-size: 24px;
}

body.page-checkout .layer-login {
  color: red;
}
body.page-checkout .breadcrumb-wrap {
  margin-bottom: 0;
}
body.page-checkout footer {
  margin-top: 0;
}
@media (min-width: 768px) {
  body.page-checkout .checkout-container {
    padding: 0;
    max-width: 100%;
  }
  body.page-checkout .checkout-container > .row {
    margin: 0;
  }
  body.page-checkout .checkout-container > .row > .col-md-5, body.page-checkout .checkout-container > .row .col-md-7 {
    padding: 0;
  }
}
body.page-checkout .title-wrap {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.page-checkout .title-wrap > .title {
  font-size: 15px;
  font-weight: bold;
}
@media (min-width: 768px) {
  body.page-checkout .title-wrap > .title {
    font-size: 18px;
  }
}
body.page-checkout .checkout-info {
  padding-top: 20px;
}
@media (min-width: 768px) {
  body.page-checkout .checkout-info {
    max-width: 720px;
    margin-left: auto;
    padding: 40px;
  }
}
body.page-checkout .checkout-info .checkout-item {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  body.page-checkout .checkout-info .checkout-item {
    margin-bottom: 40px;
  }
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item {
  border: 1px solid #e3e3e3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  margin-top: -1px;
  cursor: pointer;
  position: relative;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item:first-child {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item:first-child::before {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item:last-child {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item:last-child::before {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item::before {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border: 1px solid #2E7D32;
  inset-block-start: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  top: -1px;
  inset: -1px;
  display: none;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item.active {
  background-color: #fbefff;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item.active:before {
  display: block;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item.active .left i {
  color: #2E7D32;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item.active .left i::before {
  content: "\f517";
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item .left {
  display: flex;
  align-items: center;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item .left i {
  font-size: 18px;
  color: #888;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item .left .select-title {
  font-size: 14px;
  margin-left: 14px;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item .icon {
  max-width: 200px;
  height: 34px;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item .icon img {
  max-height: 100%;
}
@media (min-width: 768px) {
  body.page-checkout .checkout-data {
    background-color: #F8F9FA;
    padding: 0 40px;
    border-left: 1px solid #e9edf1;
    height: 100%;
  }
}
@media (max-width: 768px) {
  body.page-checkout .checkout-data {
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) {
  body.page-checkout .checkout-data .checkout-data-content {
    padding: 40px 0;
    max-width: 430px;
  }
}
body.page-checkout .checkout-data .checkout-data-content .products-table-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e3e3e3;
  font-weight: bold;
  font-size: 14px;
  padding-bottom: 10px;
}
body.page-checkout .checkout-data .checkout-data-content .products-table-wrap {
  margin-top: 20px;
  margin-bottom: 20px;
}
body.page-checkout .checkout-data .checkout-data-content .products-table-wrap .products-table-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
body.page-checkout .checkout-data .checkout-data-content .products-table td {
  padding-left: 0;
  padding-right: 0;
}
body.page-checkout .checkout-data .checkout-data-content .products-table .product-item {
  display: flex;
  align-items: center;
}
body.page-checkout .checkout-data .checkout-data-content .products-table .product-item .product-image {
  width: 50px;
  height: 50px;
  margin-right: 14px;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  position: relative;
}
body.page-checkout .checkout-data .checkout-data-content .products-table .product-item .product-image .icon-quantity {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: #2E7D32;
  color: #fff;
  font-size: 9px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-checkout .checkout-data .checkout-data-content .products-table .product-item .product-image img {
  max-height: 100%;
}
body.page-checkout .checkout-data .cart-data-list {
  list-style: none;
  padding: 0;
  border-top: 1px solid #eee;
}
body.page-checkout .checkout-data .cart-data-list > li {
  border-bottom: 1px solid #eee;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}
body.page-checkout .checkout-data .cart-data-list > li:last-child {
  border-bottom: none;
}
body.page-checkout .checkout-data .cart-data-list > li:last-child > span:last-child {
  font-weight: bold;
  color: #E53E3E;
  font-size: 24px;
}

body.page-order .account-card-title {
  margin-bottom: 16px;
}
body.page-order .tabs-plus {
  margin-bottom: 16px;
}
body.page-order .order_return {
  padding-left: 20px !important;
}
body.page-order .table-responsive {
  margin-top: 50px;
}

body.page-order-info .products-table td, body.page-order-info .products-table th {
  padding-left: 0;
  padding-right: 0;
}
body.page-order-info .products-table .product-item {
  display: flex;
  align-items: center;
}
body.page-order-info .products-table .product-item .product-image {
  width: 50px;
  height: 50px;
  margin-right: 14px;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  position: relative;
}
body.page-order-info .products-table .product-item .product-image .icon-quantity {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: #2E7D32;
  color: #fff;
  font-size: 9px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-order-info .products-table .product-item .product-image img {
  max-height: 100%;
}

body.page-addresses .address-card {
  border: 1px solid #e9ecef;
  border-radius: 4px;
  margin-bottom: 20px;
}
body.page-addresses .address-card .address-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid #e9ecef;
}
body.page-addresses .address-card .address-card-header .address-card-title {
  margin: 0;
}
body.page-addresses .address-card .address-card-header .address-card-actions {
  display: flex;
  align-items: center;
}
body.page-addresses .address-card .address-card-header .address-card-actions a {
  margin-left: 10px;
}
body.page-addresses .address-card .address-card-body {
  padding: 15px;
  word-break: break-all;
}
body.page-addresses .address-card .address-card-body p {
  margin: 0;
}

body.page-brands .brand-group {
  width: 100%;
}
body.page-brands .brand-group .btn {
  border: 1px solid #e8e8e8;
}
body.page-brands .brand-group .btn:hover {
  background-color: #f4f4f4;
}
body.page-brands .brands-wrap {
  margin-top: 30px;
}
body.page-brands .brands-wrap .item ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
body.page-brands .brands-wrap .item ul li {
  padding: 0 10px;
  margin-bottom: 20px;
}
body.page-brands .brands-wrap .item ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body.page-brands .brands-wrap .item ul li a .img {
  width: 99px;
  border: 1px solid #e8e8e8;
  margin-bottom: 10px;
}

body.page-checkout-success .checkout-success-box {
  border: 1px solid #ECF0F4;
  padding: 20px 10px;
  max-width: 730px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  body.page-checkout-success .checkout-success-box {
    padding: 30px;
  }
}
body.page-checkout-success .checkout-success-box .order-success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
body.page-checkout-success .checkout-success-box .order-success-icon img {
  max-width: 170px;
}
@media (min-width: 768px) {
  body.page-checkout-success .checkout-success-box .order-success-icon img {
    max-width: 200px;
  }
}
body.page-checkout-success .checkout-success-box .checkout-success-table th, body.page-checkout-success .checkout-success-box .checkout-success-table td {
  padding: 10px 0;
}
body.page-checkout-success .checkout-success-box .checkout-success-title {
  margin-bottom: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  body.page-checkout-success .checkout-success-box .checkout-success-title {
    margin-bottom: 30px;
  }
}
body.page-checkout-success .checkout-success-box .checkout-success-title span {
  font-size: 18px;
  font-weight: bold;
}
@media (min-width: 768px) {
  body.page-checkout-success .checkout-success-box .checkout-success-title span {
    font-size: 30px;
  }
}

.rate {
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.rating {
  display: flex;
  flex-direction: row-reverse;
}

.rating > input {
  display: none;
}

.rating > label {
  position: relative;
  width: 1em;
  font-size: 30px;
  font-weight: 300;
  color: #e31052;
  cursor: pointer;
}

.rating > label::before {
  content: "★";
  position: absolute;
  opacity: 0;
}

.rating > label:hover:before,
.rating > label:hover ~ label:before {
  opacity: 1 !important;
}

.rating > input:checked ~ label:before {
  opacity: 1;
}

.rating:hover > input:checked ~ label:before {
  opacity: 0.4;
}

.buttons {
  top: 36px;
  position: relative;
}

.rating-submit {
  border-radius: 8px;
  color: #fff;
  height: auto;
}

.rating-submit:hover {
  color: #fff;
}

.page-wallet .transaction-card-box,
.page-wallet .withdrawal-card-box,
.page-wallet .wallet-card-box {
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}
.page-wallet .transaction-card-title,
.page-wallet .withdrawal-card-title,
.page-wallet .wallet-card-title {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e8eef3;
  padding-top: 5px;
  padding-bottom: 15px;
  min-height: 52px;
}
.page-wallet .transaction-card-title .fw-bold,
.page-wallet .withdrawal-card-title .fw-bold,
.page-wallet .wallet-card-title .fw-bold {
  font-size: 1.1rem;
  font-weight: 600;
}
.page-wallet .transaction-table-box,
.page-wallet .withdrawal-table-box,
.page-wallet .wallet-table-box {
  margin-top: 15px;
}
.page-wallet .transaction-table-box th,
.page-wallet .transaction-table-box td,
.page-wallet .withdrawal-table-box th,
.page-wallet .withdrawal-table-box td,
.page-wallet .wallet-table-box th,
.page-wallet .wallet-table-box td {
  padding: 12px 8px;
  font-size: 0.9rem;
}
.page-wallet .transaction-table-box th,
.page-wallet .withdrawal-table-box th,
.page-wallet .wallet-table-box th {
  background-color: #f8f9fa;
  font-weight: 600;
}
.page-wallet .wallet-balance-item,
.page-wallet .wallet-stats-item {
  text-align: center;
  padding: 15px;
}
.page-wallet .wallet-balance-item .value,
.page-wallet .wallet-stats-item .value {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.page-wallet .wallet-balance-item .title,
.page-wallet .wallet-stats-item .title {
  font-size: 0.9rem;
}
.page-wallet .wallet-actions .btn.disabled {
  pointer-events: none;
}
.page-wallet .withdrawal-create-box {
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}
.page-wallet .wallet-balance-overview {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  padding: 0;
  margin-bottom: 30px;
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
  overflow: hidden;
}
.page-wallet .wallet-balance-overview .balance-header {
  background: rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.page-wallet .wallet-balance-overview .balance-header i {
  font-size: 1.2rem;
  margin-right: 10px;
  opacity: 0.9;
}
.page-wallet .wallet-balance-overview .balance-header span {
  font-weight: 600;
  font-size: 1rem;
}
.page-wallet .wallet-balance-overview .balance-content {
  padding: 24px 20px 20px;
}
.page-wallet .wallet-balance-overview .balance-content .balance-main {
  text-align: center;
  margin-bottom: 16px;
}
.page-wallet .wallet-balance-overview .balance-content .balance-main .available-balance .amount {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.page-wallet .wallet-balance-overview .balance-content .balance-main .available-balance .label {
  font-size: 0.95rem;
  opacity: 0.9;
  font-weight: 500;
}
.page-wallet .wallet-balance-overview .balance-content .balance-note {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.85rem;
  opacity: 0.9;
}
.page-wallet .wallet-balance-overview .balance-content .balance-note i {
  margin-right: 8px;
  font-size: 0.9rem;
}
.page-wallet .balance-info-box {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 15px;
}
.page-wallet .balance-item {
  text-align: center;
}
.page-wallet .balance-item .value {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.page-wallet .balance-item .label {
  font-size: 0.9rem;
  color: #6c757d;
}
.page-wallet .withdrawal-form .required::after {
  content: " *";
  color: #dc3545;
}
.page-wallet .form-actions {
  padding-top: 20px;
  border-top: 1px solid #e8eef3;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .page-wallet .transaction-card-box,
  .page-wallet .withdrawal-card-box,
  .page-wallet .wallet-card-box {
    padding: 15px;
  }
  .page-wallet .transaction-table-box th,
  .page-wallet .transaction-table-box td,
  .page-wallet .withdrawal-table-box th,
  .page-wallet .withdrawal-table-box td,
  .page-wallet .wallet-table-box th,
  .page-wallet .wallet-table-box td {
    padding: 8px 5px;
    font-size: 0.8rem;
  }
  .page-wallet .wallet-balance-item,
  .page-wallet .wallet-stats-item {
    padding: 10px 5px;
  }
  .page-wallet .wallet-balance-item .value,
  .page-wallet .wallet-stats-item .value {
    font-size: 1.2rem;
  }
  .page-wallet .withdrawal-create-box {
    padding: 15px;
  }
  .page-wallet .balance-item .value {
    font-size: 1.2rem;
  }
  .page-wallet .wallet-balance-overview {
    margin-bottom: 20px;
  }
  .page-wallet .wallet-balance-overview .balance-header {
    padding: 12px 16px;
  }
  .page-wallet .wallet-balance-overview .balance-header i {
    font-size: 1.1rem;
  }
  .page-wallet .wallet-balance-overview .balance-header span {
    font-size: 0.9rem;
  }
  .page-wallet .wallet-balance-overview .balance-content {
    padding: 20px 16px 16px;
  }
  .page-wallet .wallet-balance-overview .balance-content .balance-main {
    margin-bottom: 12px;
  }
  .page-wallet .wallet-balance-overview .balance-content .balance-main .available-balance .amount {
    font-size: 2rem;
  }
  .page-wallet .wallet-balance-overview .balance-content .balance-main .available-balance .label {
    font-size: 0.9rem;
  }
  .page-wallet .wallet-balance-overview .balance-content .balance-note {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
  .page-wallet .wallet-balance-overview .balance-content .balance-note i {
    font-size: 0.85rem;
  }
}

.line {
  width: 50%;
  height: 1px;
  background: #c3c1c1;
}

.word {
  color: #c3c1c1;
}

.social-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #2E7D32;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
  border: none;
}

.floating-icons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.floating-icons .floating-cart-icon,
.floating-icons .floating-top-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.floating-icons .floating-cart-icon:hover,
.floating-icons .floating-top-icon:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(46, 125, 50, 0.6);
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
}
.floating-icons .floating-cart-icon:active,
.floating-icons .floating-top-icon:active {
  transform: translateY(-1px) scale(1.02);
}
.floating-icons .floating-cart-icon i,
.floating-icons .floating-top-icon i {
  font-size: 1.5rem;
  color: white;
}
.floating-icons .floating-cart-icon {
  margin-bottom: 16px;
}
.floating-icons .floating-cart-icon .cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4444;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  border: 2px solid white;
  animation: badgePulse 2s ease-in-out infinite;
}
.floating-icons .floating-top-icon {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.floating-icons .floating-top-icon.show {
  opacity: 1;
  visibility: visible;
}

@keyframes flyToCart {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 1;
  }
  50% {
    transform: scale(0.8) translate(var(--fly-x), var(--fly-y));
    opacity: 0.8;
  }
  100% {
    transform: scale(0.3) translate(var(--fly-end-x), var(--fly-end-y));
    opacity: 0;
  }
}
.product-fly-animation {
  position: fixed;
  width: 40px;
  height: 40px;
  background: #4CAF50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  pointer-events: none;
  animation: flyToCart 0.8s ease-in-out forwards;
}
.product-fly-animation i {
  color: white;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .floating-icons {
    right: 15px;
    bottom: 15px;
    gap: 12px;
  }
  .floating-icons .floating-cart-icon,
  .floating-icons .floating-top-icon {
    width: 50px;
    height: 50px;
  }
  .floating-icons .floating-cart-icon i,
  .floating-icons .floating-top-icon i {
    font-size: 1.2rem;
  }
  .floating-icons .floating-cart-icon .cart-badge {
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }
}
