* {
    font-family: 'Cairo', sans-serif;
  }


  /* Main Slider */
  /*-------------*/
  .slider-container {
      position: relative;
      width: 100vw;
      height: 60vh;
      margin: 0;
      border-radius: 0;
      overflow: hidden;
      box-shadow: none;
  }

  .slider-wrapper {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
  }

  .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
      transform: translateX(50px);
  }

  .slide.active {
      opacity: 1;
      transform: translateX(0);
  }

  .slide.prev {
      transform: translateX(-50px);
  }

  .slide-content {
      display: flex;
      align-items: center;
      height: 100%;
      padding: 0 80px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
  }

  .slide-content::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.4);
      z-index: 1;
  }

  .slide-text {
      flex: 1;
      color: white;
      z-index: 2;
      position: relative;
  }

  .slide-title {
      font-size: 3.5rem;
      font-weight: bold;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      animation: slideInRight 0.8s ease-out;
  }

  .slide-subtitle {
      font-size: 1.4rem;
      margin-bottom: 30px;
      opacity: 0.95;
      line-height: 1.6;
      animation: slideInRight 0.8s ease-out 0.2s both;
  }

  .slide-button {
      background: rgba(255, 255, 255, 0.2);
      border: 2px solid rgba(255, 255, 255, 0.3);
      color: white;
      padding: 15px 35px;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
      animation: slideInRight 0.8s ease-out 0.4s both;
  }

  .slide-button:hover {
      background: rgba(255, 255, 255, 0.3);
      border-color: rgba(255, 255, 255, 0.5);
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  .slide-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 2;
  }

  .product-image {
      max-width: 350px;
      max-height: 350px;
      object-fit: contain;
      filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
      animation: floatAnimation 3s ease-in-out infinite;
  }

  .navigation {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      z-index: 10;
  }

  .nav-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      cursor: pointer;
      transition: all 0.3s ease;
      border: 2px solid transparent;
  }

  .nav-dot:hover {
      background: rgba(255, 255, 255, 0.7);
      transform: scale(1.2);
  }

  .nav-dot.active {
      background: white;
      border-color: rgba(255, 255, 255, 0.5);
      transform: scale(1.3);
  }

  .nav-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.15);
      border: none;
      color: white;
      font-size: 24px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
  }

  .nav-arrow:hover {
      background: rgba(255, 255, 255, 0.25);
      transform: translateY(-50%) scale(1.1);
  }

  .nav-arrow.prev {
      right: 20px;
  }

  .nav-arrow.next {
      left: 20px;
  }

  .slide-indicator {
      position: absolute;
      top: 20px;
      right: 20px;
      background: rgba(0, 0, 0, 0.3);
      color: white;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 14px;
      backdrop-filter: blur(10px);
  }

  @keyframes slideInRight {
      from {
          opacity: 0;
          transform: translateX(30px);
      }
      to {
          opacity: 1;
          transform: translateX(0);
      }
  }

  @keyframes floatAnimation {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
  }

  @media (max-width: 768px) {
      .slider-container {
          height: 50vh;
      }

      .slide-content {
          flex-direction: column;
          text-align: center;
          padding: 20px;
      }

      .slide-content::before {
          background: rgba(0, 0, 0, 0.5);
      }

      .slide-title {
          font-size: 2.5rem;
          margin-bottom: 15px;
      }

      .slide-subtitle {
          font-size: 1.1rem;
          margin-bottom: 20px;
      }

      .product-image {
          max-width: 200px;
          max-height: 200px;
          margin-bottom: 20px;
      }

      .nav-arrow {
          width: 40px;
          height: 40px;
          font-size: 18px;
      }
    }

    /* Search Section */
    /* ==============*/
    .hero-section {
        text-align: center;
        width: 100%;
        /*max-width: 900px;*/
    }

    .search-container {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50px;
        padding: 8px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.3);
        display: flex;
        align-items: center;
        gap: 8px;
        max-width: 650px;
        margin: 0 auto;
        transition: all 0.3s ease;
    }

    .search-container:focus-within {
        box-shadow: 0 15px 50px rgba(0,0,0,0.4);
        transform: translateY(-2px);
    }

    .search-input {
        flex: 1;
        border: none;
        outline: none;
        padding: 16px 25px;
        font-size: 16px;
        color: #333;
        background: transparent;
        font-family: inherit;
    }

    .search-input::placeholder {
        color: #999;
    }

    .search-button {
        /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
        color: white;
        border: none;
        padding: 16px 35px;
        border-radius: 40px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
        font-family: inherit;
    }

    .search-button:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 20px rgba(118, 75, 162, 0.4);
    }

    .search-button:active {
        transform: scale(0.98);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .search-container {
            border-radius: 45px;
            padding: 6px;
        }

        .search-input {
            padding: 14px 20px;
            font-size: 15px;
        }

        .search-button {
            padding: 14px 28px;
            font-size: 15px;
        }
    }

    @media (max-width: 480px) {
        .search-container {
            flex-direction: column;
            border-radius: 25px;
            padding: 10px;
        }

        .search-input {
            width: 100%;
            padding: 14px 20px;
            text-align: center;
        }

        .search-button {
            width: 100%;
            padding: 14px;
            border-radius: 20px;
        }
    }

    /* Animation on load */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-section > * {
        animation: fadeInUp 0.6s ease forwards;
    }

    .search-container {
        animation-delay: 0.3s;
    }

  

/* قسم فئات المنتجات */
/*---------------------*/
  .categories-section {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 100%);
      position: relative;
  }

  .categories-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
  }

  .categories-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }

  .categories-title {
      text-align: center;
      font-size: 2.5rem;
      font-weight: bold;
      color: #2d3748;
      margin-bottom: 50px;
      position: relative;
  }

  .categories-title::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #4299e1, #38b2ac);
      border-radius: 2px;
  }

  .categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 60px;
  }

  .category-card {
      background: white;
      border-radius: 20px;
      padding: 40px 30px;
      text-align: center;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, 0.05);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .category-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transition: left 0.6s;
  }

  .category-card:hover::before {
      left: 100%;
  }

  .category-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  }

  .category-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(66, 153, 225, 0.1) 0%, rgba(56, 178, 172, 0.1) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
      border-radius: 20px;
  }

  .category-card:hover .category-overlay {
      opacity: 1;
  }

  .category-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 25px;
      background: linear-gradient(135deg, #4299e1 0%, #38b2ac 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
  }

  .category-icon::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      transition: all 0.4s ease;
      transform: translate(-50%, -50%);
  }

  .category-card:hover .category-icon::before {
      width: 100px;
      height: 100px;
  }

  .category-card:hover .category-icon {
      transform: scale(1.1) rotate(10deg);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  .category-icon svg {
      width: 40px;
      height: 40px;
      z-index: 2;
      position: relative;
      transition: transform 0.3s ease;
  }

  .category-card:hover .category-icon svg {
      transform: scale(1.1);
  }

  .category-name {
      font-size: 1.4rem;
      font-weight: bold;
      color: #2d3748;
      margin-bottom: 10px;
      transition: color 0.3s ease;
  }

  .category-card:hover .category-name {
      color: #4299e1;
  }

  .category-desc {
      color: #718096;
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0;
      transition: color 0.3s ease;
  }

  .category-card:hover .category-desc {
      color: #4a5568;
  }

  /* تأثيرات خاصة لكل فئة */
  .category-card:nth-child(1) .category-icon {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  }

  .category-card:nth-child(2) .category-icon {
      background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  }

  .category-card:nth-child(3) .category-icon {
      background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  }

  .category-card:nth-child(4) .category-icon {
      background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  }

  .category-card:nth-child(5) .category-icon {
      background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  }

  .category-card:nth-child(6) .category-icon {
      background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  }

  @media (max-width: 768px) {
      .categories-section {
          padding: 60px 0;
      }

      .categories-title {
          font-size: 2rem;
          margin-bottom: 40px;
      }

      .categories-grid {
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 20px;
          margin-top: 40px;
      }

      .category-card {
          padding: 30px 20px;
      }

      .category-icon {
          width: 70px;
          height: 70px;
          margin-bottom: 20px;
      }

      .category-icon svg {
          width: 35px;
          height: 35px;
      }

      .category-name {
          font-size: 1.2rem;
      }

      .category-desc {
          font-size: 0.9rem;
      }
  }

  @media (max-width: 480px) {
      .categories-grid {
          grid-template-columns: 1fr;
          gap: 15px;
      }

      #img-logo{
        width: 100%;
      }
  }

/*--- FAQ --- */
/*============*/
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-header p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-question {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.faq-question::after {
    content: '+';
    font-size: 1.8em;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-right: 15px;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #fafafa;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 25px;
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05em;
}

.faq-answer ul {
    margin-top: 15px;
    padding-right: 20px;
}

.faq-answer li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .faq-container {
        padding: 40px 25px;
    }

    .faq-header h2 {
        font-size: 2em;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 1em;
    }

    .faq-answer {
        font-size: 0.95em;
    }
}



