@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

body, .wh-text, .wh-btn, .wh-filters button {
  font-family: 'Cairo', sans-serif !important;
}

.wh-filters {
  display: flex !important;
  justify-content: center !important;
  gap: 28px !important;
  /*margin: 40px auto 30px !important;*/
  border-bottom: 1px solid #ddd !important;
  padding-bottom: 10px !important;
  max-width: 1000px !important;
}
.wh-filters button {
  background: none !important;
  border: none !important;
  color: #666 !important;
  font-size: 16px !important;
  font-weight: bold !important;
  padding: 8px 10px !important;
  cursor: pointer !important;
  position: relative !important;
  transition: all 0.2s ease-in-out !important;
}
.wh-filters button.active {
  color: #E21111 !important;
}
.wh-filters button.active::after {
  content: "" !important;
  position: absolute !important;
  bottom: -10px !important;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #E21111 !important;
  border-radius: 2px;
}
.wh-sections-container {
  padding: 20px 0;
}
.wh-item {
  display: none;
  margin-bottom: 40px;
}
.wh-item.active {
  display: flex;
  justify-content: center;
}
.wh-section {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
}
.wh-section.reverse {
  flex-direction: row-reverse;
}
.wh-image {
  flex: 1 1 40%;
}
.wh-image img {
  width: 100%;
  object-fit: contain;
  border-radius: 12px;
  background: #f5f5f5;
}
.wh-text {
  flex: 1 1 55%;
  max-width: 600px;
}
.wh-text h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 12px;
  line-height: normal;
}
.wh-highlight {
  color: #E21111;
  font-weight: bold;
}
.wh-text p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
}
.wh-text a {
  font-size: 16px;
}
.wh-btn {
  display: inline-block;
  padding: 24px 20px;
  background: #E21111;
  color: #fff !important;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: none !important;
  margin-top: 24px;
}

.wh-btn:hover {
  background: #E21111 !important;
  color: #fff !important;
}
@media (max-width: 768px) {
  .wh-section, .wh-section.reverse {
    flex-direction: column;
    text-align: center;
  }
  .wh-image, .wh-text {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .wh-text { order: 2; }
  .wh-section.reverse .wh-text { order: 2; }
  .wh-filters {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px !important;
  }

  .wh-filters button {
    border: 2px solid #E21111 !important;
    border-radius: 50px !important;
    padding: 8px 16px !important;
    font-size: 14px !important;
    color: #E21111 !important;
    background: white !important;
    flex-shrink: 0;
  }

  .wh-filters button.active {
    background: #E21111 !important;
    color: white !important;
  }

  .wh-filters button.active::after {
    display: none !important;
  }
}