.women-section {
  padding: 20px;
  background-color: #f8f8f8;
  display: flex;
  justify-content: center;
}

.women-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.clothing-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.clothing-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.clothing-item p {
  margin: 10px 0;
  font-size: 1rem;
  color: #333;
}

.clothing-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.buy-now-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #ff6347;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
  transition: background-color 0.3s ease;
  margin-bottom: 10px;
}

.buy-now-btn:hover {
  background-color: #e55347;
}

@media (max-width: 768px) {
  .women-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .women-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}
