.features-section {
  padding: 2rem 15px;
  background-color: #ee2025;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-section .row {
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap;
}

.features-section .col-lg-3,
.features-section .col-md-6,
.features-section .col-sm-12 {
  padding: 0 15px;
}

.feature-card {
  text-align: center;
  padding: 1.5rem;
  margin: 1rem auto;
  max-width: 300px;
  height: 100%;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 1.5555rem;
  margin-bottom: 0.75rem;
  color: #333;
  width: 100%;
}

.feature-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0;
  line-height: 1.5;
  width: 100%;
}

@media (min-width: 992px) {
  .features-section .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .features-section .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .feature-card {
    margin: 1rem auto;
  }
}

@media (max-width: 767px) {
  .features-section {
    padding: 1.5rem 10px;
    position: fixed;
  }

  .features-section .col-sm-12 {
    flex: 0 0 100%;
    max-width: 70%;
    position: fixed;
  }

  .feature-card {
    max-width: 280px;
    padding: 1.25rem;
  }

  .feature-card h3 {
    font-size: 1.1rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .features-section {
    padding: 1rem 5px;
    position: fixed;
  }

  .feature-card {
    max-width: 100%;
    margin: 0.75rem auto;
  }
}

.title-text {
  color: #ff0000;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.products-wrapper {
  padding: 10px;
}

.product-card1 {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.products-image1 {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-title {
  padding: 12px;
  margin: 0;
  text-align: center;
}

.product-title a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s ease;
  position: relative;
  bottom: 13px;
}

.product-title a:hover {
  color: #ff0000;
}

.owl-nav button {
  background: #ff0000 !important;
  color: white !important;
  width: 35px;
  height: 35px;
  border-radius: 50% !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
}

.owl-nav button:hover {
  opacity: 1;
}

.owl-prev {
  left: -18px;
}

.owl-next {
  right: -18px;
}

@media (max-width: 768px) {
  .title-text {
    font-size: 1.5rem;
  }

  .products-image1 {
    height: 160px;
  }

  .owl-nav button {
    width: 30px;
    height: 30px;
  }
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-circle {
  border: 6px solid #f3f3f3;
  border-radius: 50%;
  border-top: 6px solid #f32d2e;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loader-message {
  display: none;
  color: #555;
  font-size: 14px;
}

.loader.fade-out {
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 500px) {
  .height_set,
  .height_set_zir {
    width: 100%;
    height: auto;
    padding: 0;
  }

  .single-blog-item img {
    width: 100%;
    height: auto;
    padding: 10px;
  }
}
