.sks-flour-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f6f1 100%);
  overflow: hidden;
}

.sks-flour-content {
  background: #0b6b3a;
  color: #ffffff;
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(11, 107, 58, 0.25);
  position: relative;
  overflow: hidden;
}
.sks-flour-content::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(201, 154, 46, 0.22);
  border-radius: 50%;
  top: -70px;
  right: -70px;
}

.sks-flour-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: #094f2c;
  color: #c9a227;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.sks-flour-title {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 22px;
}

.sks-flour-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 1rem;
}

.sks-flour-market {
  margin-top: 30px;
}

.sks-flour-market span:first-child {
  display: block;
  
  font-weight: 700;
  margin-bottom: 14px;
}

.sks-flour-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sks-flour-badges span {
  background: #1f4d3a;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.sks-flour-card,
.sks-flour-product-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  border: 1px solid rgba(31, 77, 58, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: 0.3s ease;
  border-left: 6px solid #0b6b3a;
}

.sks-flour-card:hover,
.sks-flour-product-card:hover {
  transform: translateY(-6px);
}

.sks-flour-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: rgba(31, 77, 58, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.sks-flour-icon i {
  font-size: 2rem;
  color: #c99a2e;
}

.sks-flour-card h3 {
  color: #1f4d3a;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.sks-flour-card p {
  color: #6b7280;
  margin: 0;
  font-weight: 500;
}

.sks-flour-product-card h4 {
  color: #1f4d3a;
  font-weight: 800;
  margin-bottom: 24px;
}

.sks-flour-products {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sks-flour-products span {
  padding: 12px 18px;
  border-radius: 14px;
  background: #f7f6f1;
  color: #1f4d3a;
  font-weight: 700;
  border: 1px solid rgba(31, 77, 58, 0.08);
}

@media (max-width: 768px) {

  .sks-flour-card,
  .sks-flour-product-card {
    padding: 24px;
  }

  .sks-flour-title {
    font-size: 2rem;
  }

  .sks-flour-products span {
    width: 100%;
    text-align: center;
  }
}

.sks-flour-market {
  margin-top: 30px;
}

.sks-flour-market-title {
  display: block;
  color: #c99a2e;
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 1rem;
}

.sks-flour-market-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sks-flour-market-btn {
  border: 1px solid #0b6b3a;
  outline: none;
  background: #c99a2e;
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  
}

.sks-flour-market-btn:hover {
  background: #094f2c;
  transform: translateY(-3px);
  border: 1px solid #c99a2e;
}