.elementor-231 .elementor-element.elementor-element-3793484{--display:flex;}.elementor-231 .elementor-element.elementor-element-90085bd.elementor-element{--align-self:flex-end;--order:99999 /* order end hack */;}.elementor-231 .elementor-element.elementor-element-90085bd{text-align:start;}.elementor-231 .elementor-element.elementor-element-90085bd .elementor-heading-title{font-size:65px;color:#FFFFFF;}@media(max-width:767px){.elementor-231 .elementor-element.elementor-element-90085bd.elementor-element{--align-self:center;}.elementor-231 .elementor-element.elementor-element-90085bd{text-align:start;}.elementor-231 .elementor-element.elementor-element-90085bd .elementor-heading-title{font-size:28px;}}/* Start custom CSS for html, class: .elementor-element-57324f8 */:root {
  --theme-color: #9CAF56;
  --bg-soft: #f9fbf4;
  --text-dark: #1f1f1f;
}

.shop-section {
  background: var(--bg-soft);
  padding: 90px 20px;
  font-family: "Poppins", "Segoe UI", sans-serif;
}

.shop-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.shop-container h2 {
  font-size: 42px;
  color: var(--theme-color);
  margin-bottom: 12px;
}

.shop-container p {
  font-size: 18px;
  color: #444;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

/* Product card */
.shop-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.shop-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* Product image */
.shop-item img {
  max-width: 100%;
  border-radius: 12px;
  margin-bottom: 18px;
}

/* Product title */
.shop-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

/* Product description */
.shop-item p {
  font-size: 15px;
  color: #555;
  margin-bottom: 14px;
  line-height: 1.6;
}

/* Price */
.shop-item .price {
  font-size: 18px;
  font-weight: 600;
  color: var(--theme-color);
  margin-bottom: 18px;
  display: block;
}

/* Button */
.shop-item button {
  background: var(--theme-color);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.shop-item button:hover {
  background: #8bb84a;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 600px) {
  .shop-container h2 {
    font-size: 32px;
  }

  .shop-container p {
    font-size: 16px;
  }

  .shop-item h3 {
    font-size: 20px;
  }

  .shop-item p {
    font-size: 14px;
  }

  .shop-item .price {
    font-size: 16px;
  }
}/* End custom CSS */