.offer-form-container {
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
  font-family: inherit;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 30px;
  position: relative;
}

.offer-form-title {
  font-weight: 700;
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #000;
}

.offer-form-subtitle {
  font-weight: 500;
  font-size: 1.2em;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #000;
}

.offer-form-options,
.offer-form-products {
  display: grid;
  gap: 15px;
  margin-bottom: 20px;
}

.offer-form-options {
  grid-template-columns: repeat(3, 1fr);
}

.offer-form-products {
  grid-template-columns: repeat(4, 1fr);
}

@media(max-width:768px){
  .offer-form-options {grid-template-columns:repeat(2,1fr);}
  .offer-form-products {grid-template-columns:repeat(2,1fr);}
}

@media(max-width:480px){
  .offer-form-options,
  .offer-form-products {grid-template-columns:1fr;}
}

.offer-form-note {
  font-size: 12px;
  color: #777;
  margin: 10px 0 20px 0;
  text-align: center;
}

.offer-option{
  padding: 15px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  color: #555;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  appearance: none;
  position: relative;
}
.offer-product{
  display: flex;
  justify-content: space-around;
  flex-direction: row-reverse;
  align-items: center;
  line-height: 1.6;
}
.offer-option:hover,
.offer-product:hover {
  background: #e0e0e0;
  border: 1px solid #ddd;
  color: #000;
}

.offer-option.active,
.offer-product.active {
  border: 2px solid #28a745;
  font-weight: 700;
  outline: none;
  background: #fff !important;
  color: #000;
}

.offer-product.active::after {
  color: #28a745;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: bold;
}

.offer-form-next {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  background: #FF6600;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  width: 40%;
  max-width: 300px;
  margin: 0 auto;
  position: relative;
}

.offer-form-next:hover {
  background: #e65c00;
}

.offer-form-next .label {
  flex: 1;
  text-align: center;
  font-weight: 600;
}

.offer-form-next .arrow {
  position: absolute;
  right: 15px;
}

.offer-form-back {
  display: none;
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 24px;
  color: #777;
  cursor: pointer;
}

.offer-contact-link {
  color: #28a745;
  text-decoration: underline;
}

.offer-farmy-section {
  text-align: left;
  max-width: 600px;
  margin: 20px auto;
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.farmy-container {
  margin-bottom: 20px;
}

.farmy-select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.offer-form-next-farmy {
  display: block;
  margin: 0 auto;
  padding: 15px 20px;
  background: #FF6600;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}
.offer-form-next-farmy:hover {
  background: #e65c00;
}
.offer-form-farmy select {
  width: 500px;            
  margin: 10px 15px;       
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  background: #fff;
  appearance: none;
  cursor: pointer;
  font-weight: 600;
  color: black;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: border-color 0.2s ease;
}

.offer-form-farmy select:hover {
  border-color: #28a745;
}

.offer-form-farmy .farmy-row {
  display: flex;
  flex-direction: column;       
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
  gap: 15px;
  align-items: center;
}
