body {
      margin: 0;
      padding: 0;
      direction: rtl;
      background-color: #f2f2f2;
    }

    header {
      position: sticky;
      top: 0;
      background-color: #fffff;
      color: white;
      text-align: center;
      font-size: 24px;
      z-index: 600;

      border-radius: 5px;
      border: 2px solid #f4f7f7;
      transform: translateY(-80%);
      animation: slideDown 0.8s ease-out forwards;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      margin: 5px;
    }

    @keyframes slideDown {
      to {
        transform: translateY(0);
      }
    }

   

   

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

    .product-card {
      background: #fffff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 300px;
      transition: transform 0.3s ease;
    }

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

    .product-image {
      position: relative;
    }

    .product-image img {
      width: 100%;
      height: 350px;
      object-fit: cover;
    }

    .product-image::after {
      content: 'جديد 🔥';
      position: absolute;
      top: 15px;
      left: 15px;
      background-color: crimson;
      color: #78a8a9;
      padding: 4px 10px;
      border-radius: 15px;
      font-size: 12px;
      font-weight: bold;
    }

    .product-info {
      padding: 15px 20px;
    }

    .product-info h2 {
      font-size: 18px;
      margin-bottom: 8px;
      color: #222;
      height: 48px;
      overflow: hidden;
    }

    .product-info p {
      font-size: 14px;
      color: #666;
      margin-bottom: 10px;
    }

    .price {
      font-size: 20px;
      color: #0a7c5d;
      font-weight: bold;
      margin-bottom: 12px;
    }

    .product-actions {
      display: flex;
      justify-content: space-between;
      padding: 10px 20px 20px;
      border-top: 1px solid #eee;
    }

    .product-actions button {
      flex: 1;
      background-color: #f9f9f9;
      border: none;
      border-radius: 8px;
      margin: 0 5px;
      padding: 10px 0;
      font-size: 18px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .product-actions button:hover {
      background-color: #e0e0e0;
    }

    /* استجابة كاملة للجوال */
    @media (max-width: 480px) {
      .product-card {
        max-width: 130%;
      }

      .product-image img {
        height: 280px;
      }

      .product-info h2 {
        font-size: 16px;
      }

      .price {
        font-size: 18px;
      }

      .product-actions button {
        font-size: 16px;
        padding: 8px 0;
      }
    }
 .review-card {
      background-color: white;
      border-radius: 16px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      padding: 15px;
      width: 130%;
      max-width: 400px;
      transition: transform 0.3s ease;
    }

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

    .review-header {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }

    .review-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: #ccc;
      background-image: url('https://i.pravatar.cc/100');
      background-size: cover;
      background-position: center;
      margin-left: 15px;
    }

    .review-name {
      font-size: 16px;
      font-weight: bold;
      color: #333;
    }

    .review-stars {
      color: #f5b301;
      font-size: 18px;
      margin-top: 4px;
    }

    .review-text {
      font-size: 15px;
      color: #555;
      line-height: 1.6;
    }

    /* استجابة للجوال */
    @media (max-width: 500px) {
      .review-card {
        padding: 15px;
      }

      .review-name {
        font-size: 15px;
      }

      .review-text {
        font-size: 14px;
      }

      .review-avatar {
        width: 45px;
        height: 45px;
      }
    }
     
    }

    .category-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .category-card {
      background: white;
      border-radius: 16px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.08);
      text-align: center;
      padding: 20px;
      width: 140px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.12);
    }

    .category-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 10px;
    }

    .category-title {
      font-size: 16px;
      color: #333;
      font-weight: 600;
    }

    /* استجابة للجوال */
    @media (max-width: 500px) {
      .category-card {
        width: 100px;
        padding: 15px;
      }

      .category-icon {
        width: 50px;
        height: 50px;
      }

      .category-title {
        font-size: 14px;
      }
    }
    footer {
  background-color: #173b45;
  color: white;
  padding: 30px 20px;
  font-size: 18px;
  border-radius: 20px;
  border: 2px solid #f4f7f7;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  margin: 10px;
}

.store-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: right;
  gap: 30px;
}

.footer-column {
  min-width: 200px;
}

.footer-column h4 {
  margin-bottom: 15px;
  font-size: 20px;
  border-bottom: 1px solid #ffffff80;
  padding-bottom: 5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #bbdefb;
}

    .navbar-brand img{
max-height: : 7rem;
width: auto;
max-width: 100px;
background: width !important;
border-radius:7px;
background: transparent;
}
#logo{
    position: fixed;
    top: 50%;
    width: 100%;
    height: 100%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 9999;
    --tw-bg-opacity:0.9;
    background-color:rgb(30 27 28/ var (--tw-bg-opacity));
    padding: 20px;
    background-repeat: repeat;
    background-size: 10% auto;
    background-position: top;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 2s ease;
}/* Add custom CSS styles below */