
    :root{
      --black:#0b0b0b;
      --gold:#c9a43a;
      --white:#fff;
      --muted:#9a9a9a;
      --card-bg:linear-gradient(180deg,#ffffff 0%,#f8f7f6 100%);
      --radius:14px;
      --transition-fast:220ms;
    }
    body{
      margin:0;
      font-family:"Segoe UI","Noto Sans Arabic",Arial;
      background:linear-gradient(180deg,#fbfbfb,#f0f0f0);
      color:var(--black);
      
    }
    .wrap{max-width:1200px;margin:0 auto;}
    h1{text-align:center;margin-bottom:20px;}

    /* شبكة المنتجات */
    .products-grid{
      display:grid;
      padding: 32px 18px;
      margin-top: -10px;
      gap:18px;
      grid-template-columns:repeat(2,1fr);
    }
    @media(min-width:992px){
      .products-grid{grid-template-columns:repeat(3,1fr);}
    }

    /* بطاقة المنتج */
    .product-card{
      background:var(--card-bg);
      border-radius:var(--radius);
      padding:18px;
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:10px;
      min-height:180px;
      box-shadow:0 6px 14px rgba(13,13,13,0.08);
      transition:all var(--transition-fast);
      opacity:0;
      transform:translateY(14px) scale(0.98);
    }
    .product-card.pop{
      transform:translateY(-8px) scale(1.03);
      box-shadow:0 20px 34px rgba(11,11,11,0.18);
    }
    .product-card.is-visible{animation:fadeUp 400ms forwards;}
    @keyframes fadeUp{
      from{opacity:0;transform:translateY(20px) scale(0.95);}
      to{opacity:1;transform:translateY(0) scale(1);}
    }

    .product-img{
      width:120px;height:120px;border-radius:50%;overflow:hidden;
      border:4px solid rgba(201,164,58,0.15);
    }
    .product-img img{width:100%;height:100%;object-fit:cover;}

    /* الاسم */
    .product-name{text-align:center;line-height:1.4;}
    .product-name a{
      text-decoration:none;
      color:var(--black);
      font-weight:700;
      transition:color var(--transition-fast);
    }
    .product-name a:hover{color:var(--gold);}
    .product-name small{display:block;color:var(--muted);font-size:0.85rem;}

    /* شريط التنقل */
    .pagination{
      display:flex;
      justify-content:center;
      align-items:center;
      gap:10px;
      margin-top:28px;
      flex-wrap:wrap;
    }
    .btn{
      background:var(--black);
      color:var(--gold);
      border:none;
      padding:8px 12px;
      border-radius:8px;
      cursor:pointer;
      font-weight:600;
    }
    .btn:disabled{opacity:.4;cursor:not-allowed;}
    .page-number{
      background:#fff;
      border:1px solid #ddd;
      padding:6px 10px;
      border-radius:6px;
      cursor:pointer;
    }
    .page-number.active{
      background:var(--black);
      color:var(--gold);
      font-weight:bold;
      transform:scale(1.1);
    }


     
    .perfume-divider {
    height: 1px;
    background: rgba(0,0,0,0.1);
    margin: 8px 0;
    }
   
    /* ===== الهيدر ===== */
    header {
      background: #000;
      color: #d4af37;
      display: flex;
      justify-content: space-between;
      align-items: center;
     
      position: sticky;
      top: 0;
      z-index: 2000;
      border-bottom: 1px solid #d4af37;
      transition: top 0.3s;
    }

    .logo img {
      margin-top: 5px;
      width: 180px;
      margin-left: 30px;
      font-size: 22px;
      font-weight: bold;
    }

    .menu-toggle,
    .search-toggle {
      font-size: 24px;
      cursor: pointer;
      background: none;
      border: none;
      color: #d4af37;
    }

    /* ===== القائمة الجانبية ===== */
    .sidebar {
      height: 100%;
      width: 0;
      position: fixed;
      top: 0;
      right: 0;
      background: #fff;
      overflow-x: hidden;
      transition: 0.3s;
      z-index: 2500;
      padding-top: 60px;
    }

    .sidebar a {
      padding: 12px 20px;
      text-decoration: none;
      font-size: 18px;
      color: #000;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: background 0.3s;
    }

    .sidebar a:hover {
      background: #d4af37;
      color: #000;
    }

    .closebtn {
      position: absolute;
      top: 10px;
      left: 20px;
      font-size: 30px;
      cursor: pointer;
      color: #000;
    }

    /* ===== القائمة الفرعية للمنتجات ===== */
    .submenu {
      display: none;
      flex-direction: column;
      padding-left: 20px;
    }
    .submenu a {
      font-size: 16px;
    }

    /* ===== شريط البحث ===== */
    .search-bar {
      display: none;
      background: #fff;
      padding: 15px 20px;
      border-bottom: 2px solid #d4af37;
      animation: slideDown 0.3s ease;
      position: relative;
      z-index: 2500;
    }
    .search-bar.active { display: block; }

    .search-bar form {
      display: flex;
      gap: 10px;
    }

    .search-bar input {
      flex: 1;
      padding: 10px;
      border: 2px solid #d4af37;
      border-radius: 5px;
      font-size: 16px;
    }

    .search-bar button {
      padding: 10px 15px;
      background: #d4af37;
      border: none;
      cursor: pointer;
      border-radius: 5px;
      font-weight: bold;
      color: #000;
    }

    #searchResults {
      background: #fff;
      border: 1px solid #ccc;
      margin-top: 10px;
      border-radius: 5px;
      max-height: 250px;
      overflow-y: auto;
    }

    .search-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px;
      border-bottom: 1px solid #eee;
      cursor: pointer;
    }

   .search-item img {
     width: 50px;
     height: 50px;
     border-radius: 50%; /* ✅ الصور دائرية */
     object-fit: cover;
    }


    .search-item span {
      font-weight: bold;
      color: #000;
    }

    .search-item a {
      text-decoration: none;
      color: inherit;
    }

    .search-item:hover {
      background: #f0f0f0;
    }

    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ===== قسم البطل ===== */
    .hero {
      text-align: center;
      padding: 100px 20px;
      background: #000;
    }

    .hero h1 {
      font-size: 32px;
      margin-bottom: 10px;
    }

    .hero p {
      font-size: 18px;
      color: #d4af37;
    }

    /* ===== قسم من نحن ===== */
  /* ===== قسم من نحن ===== */
.about {
  position: relative;
  background: url('https://via.placeholder.com/1200x600.png/000000/ffffff?text=Background') center/cover no-repeat;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.about-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.about-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: auto;
}

.about-image {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.about-image img {
  width: 100%;
  border: 2px solid #d4af37;
  border-radius: 10px;
  background: transparent;
}

.about-image .corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid #d4af37;
}

.about-image .top-left { top: -3px; left: -3px; border-right: none; border-bottom: none; }
.about-image .top-right { top: -3px; right: -3px; border-left: none; border-bottom: none; }
.about-image .bottom-left { bottom: -3px; left: -3px; border-right: none; border-top: none; }
.about-image .bottom-right { bottom: -3px; right: -3px; border-left: none; border-top: none; }

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #d4af37;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #f1f1f1;
}

.about-text ul {
  list-style: none;
  padding: 0;
}

.about-text ul li {
  font-size: 18px;
  margin: 12px 0;
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}


