html,
body {
  overflow-x: hidden;
  direction: ltr !important;
  font-family: "RB" !important;
  scroll-behavior: smooth;
}

header {

  direction: rtl !important;
}

.elementor-29 .elementor-element.elementor-element-fd0c689>.elementor-widget-container {
  padding: 0px 0px 0px 0px;
  text-align: start;
}

.elementor-29 .elementor-element.elementor-element-7d82cb2>.elementor-element-populated {
  padding: 0px 12px 0px 0px;
  text-align: start;
}

.elementor-29 .elementor-element.elementor-element-31f9705 {
  text-align: left;
}

.elementor-29 .elementor-element.elementor-element-59f74cd {
  text-align: left;
}

.elementor-align-right {
  text-align: left;
}

.elementor-column-gap-default>.elementor-column>.elementor-element-populated {
  text-align: start;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.products-container {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  padding: 30px 30px 50px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.1);
  overflow: hidden;
}

.products-header {
  text-align: center;
  margin-bottom: 30px;
}

.products-header h1 {
  font-size: 2.8rem;
  color: #6b1d23;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.products-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

/* تبويب الفئات */
.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  padding: 0;
}

.tabs-nav li {
  list-style: none;
  padding: 6px 15px;
  background: #e5f0ea;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  color: #444;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.tabs-nav li.active {
  background: #6b1d23;
  color: white;
}

/* شبكة المنتجات */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.product-card {
  background: #fefefe;
  border-radius: 3px;
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.1);
  overflow: hidden;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgb(0 0 0 / 0.2);
}

.product-card img {
  width: 100%;
  
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.product-card:hover img {
  transform: scale(1.1) rotate(2deg);
}

.product-info {
  padding: 15px 20px 25px 20px;
}

.product-info h3 {
  color: #6b1d23;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.product-info p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 15px;
}

.product-info a {
  color: #6b1d23;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #6b1d23;
  padding: 8px 18px;
  border-radius: 30px;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.product-info a:hover {
  background-color: #6b1d23;
  color: #fff;
}

@media (max-width: 768px) {
  .products-header h1 {
    font-size: 2.2rem;
  }

  .product-card img {
    /*height: 200px;*/
  }
}

.header-category {
  font-weight: 600;
  color: #3c050b;
  margin: 30px 0;
  text-align: start;
}