.where-to-buy-section {
  padding: 60px 20px;
  background: #f8f9fa;
}

.buy-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  color: #2d3748;
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.section-description {
  text-align: center;
  color: #718096;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.selector-container {
  background: #fff;
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: flex;
  gap: 20px;
  align-items: center;
}

.select-group {
  flex: 2;
  position: relative;
}

.form-select {
  width: 100%;
  padding: 14px 25px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1.1rem;
  color: #4a5568;
  appearance: none;
  transition: all 0.3s ease;
  background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") no-repeat right 1.5rem center/18px 18px;
}

.form-select:hover {
  border-color: #c53030;
  box-shadow: 0 2px 8px rgba(197, 48, 48, 0.1);
}

.form-select:focus {
  outline: none;
  border-color: #c53030;
  box-shadow: 0 0 0 3px rgba(197, 48, 48, 0.2);
}

.go-btn {
  background: #c53030;
  color: white;
  padding: 14px 40px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.go-btn:hover {
  background: #9b2c2c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(197, 48, 48, 0.3);
}

.arrow {
  transition: transform 0.3s ease;
}

.go-btn:hover .arrow {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .selector-container {
    flex-direction: column;
    padding: 25px 30px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .select-group {
    width: 100%;
  }
  
  .go-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .where-to-buy-section {
    padding: 40px 15px;
  }
  
  .selector-container {
    padding: 20px 25px;
  }
  
  .form-select {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .go-btn {
    padding: 12px 30px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}


@keyframes select-pulse {
  0% { box-shadow: 0 0 0 0 rgba(197, 48, 48, 0.2); }
  100% { box-shadow: 0 0 0 10px rgba(197, 48, 48, 0); }
}

.form-select:focus {
  animation: select-pulse 0.5s ease-out;
}