
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body.home .ct-header {
      display: none !important;
    }
    .slider-custom-container {
      position: relative;
      width: 100%;
      height: 620px;
      background: #000;
      box-shadow: 0 30px 50px rgba(0,0,0,0.6);
      overflow: hidden;
      border-radius: 20px;
      font-family: 'Tajawal', sans-serif;
      direction: rtl;
    }
    .slider-header {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 5px 35px;
      z-index: 100;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 80%, transparent 100%);
      transition: all 0.3s ease;
    }
    .slider-header .logo-container {
      position: relative;
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      z-index: 101;
      overflow: hidden;
      padding: 4px;
      border-radius: 8px;
    }
    .slider-header .logo-container::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -150%;
      width: 80%;
      height: 200%;
      background: linear-gradient(
        60deg,
        transparent 30%,
        rgba(255, 255, 255, 0.6) 50%,
        transparent 70%
      );
      transform: rotate(25deg);
      animation: logoShine 4.5s infinite ease-in-out;
      pointer-events: none;
    }
    @keyframes logoShine {
      0% { left: -150%; }
      20% { left: 150%; }
      100% { left: 150%; }
    }
    .slider-header .logo-img {
      max-height: 135px;
      height: auto;
      width: auto;
      object-fit: contain;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: crisp-edges;
      filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.85));
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s ease;
    }
    .slider-header .logo-container:hover .logo-img {
      transform: scale(1.08) rotate(-3deg);
      filter: drop-shadow(0 8px 25px rgba(223, 178, 96, 0.6)) brightness(1.15);
    }
    .slider-header .nav-menu {
      display: flex;
      align-items: center;
      gap: 25px;
      list-style: none;
      margin: 0;
      padding: 0;
      transition: all 0.3s ease-in-out;
    }
    .slider-header .nav-menu a {
      color: #ffffff;
      text-decoration: none;
      font-size: 16px;
      font-weight: 700;
      transition: color 0.3s ease;
      text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    }
    .slider-header .nav-menu a:hover,
    .slider-header .nav-menu a.active {
      color: #20c997;
    }
    .slider-header .header-actions {
      display: flex;
      align-items: center;
      gap: 15px;
      color: #ffffff;
      z-index: 101;
    }
    .slider-header .action-item {
      color: #ffffff;
      text-decoration: none;
      font-size: 15px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      transition: 0.3s;
    }
    .slider-header .action-item:hover {
      color: #20c997;
    }
    .slider-header .cart-wrapper {
      position: relative;
      display: flex;
      align-items: center;
    }
    .slider-header .cart-badge {
      position: absolute;
      top: -8px;
      right: -10px;
      background: #20c997;
      color: #fff;
      font-size: 11px;
      font-weight: 800;
      min-width: 18px;
      height: 18px;
      padding: 0 4px;
      border-radius: 50%;
      display: none;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
    }
    .search-form-container {
      position: relative;
      display: flex;
      align-items: center;
    }
    .search-form {
      display: flex;
      align-items: center;
      background: rgba(255, 255, 255, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 20px;
      padding: 5px 12px;
      backdrop-filter: blur(8px);
      transition: all 0.3s ease;
    }
    .search-form:focus-within {
      background: rgba(255, 255, 255, 0.25);
      border-color: #20c997;
    }
    .search-form input[type="text"] {
      background: transparent;
      border: none;
      outline: none;
      color: #fff;
      font-family: 'Tajawal', sans-serif;
      font-size: 13px;
      width: 110px;
      transition: width 0.3s ease;
    }
    .search-form input[type="text"]:focus {
      width: 150px;
    }
    .search-form input[type="text"]::placeholder {
      color: rgba(255, 255, 255, 0.8);
    }
    .search-form button {
      background: transparent;
      border: none;
      color: #fff;
      cursor: pointer;
      font-size: 14px;
      padding-right: 5px;
    }
    .mobile-menu-toggle {
      display: none;
      font-size: 24px;
      color: #ffffff;
      cursor: pointer;
      z-index: 101;
    }
    @media (max-width: 992px) {
      .mobile-menu-toggle { display: block; }
      .slider-header .logo-img { max-height: 95px; }
      .slider-header .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.96);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;
      }
      .slider-header .nav-menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
      }
      .search-form input[type="text"] { width: 80px; }
      .search-form input[type="text"]:focus { width: 110px; }
    }
    @media (max-width: 576px) {
      .slider-header { padding: 6px 15px; }
      .slider-header .logo-img { max-height: 80px; }
      .slider-header .action-text { display: none; }
      .slider-header .header-actions { gap: 10px; }
    }
    .slider-bg-layer {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-position: center;
      background-size: cover;
      filter: blur(5px) brightness(0.7);
      transform: scale(1.05);
      transition: background-image 0.5s ease-in-out;
      z-index: 1;
    }
    .slider-overlay-layer {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.2) 80%, transparent 100%);
      z-index: 2;
    }

    /* ============ Swiper (Coverflow) — السلايدر الجديد ============ */
    .heroSwiper {
      position: relative;
      width: 100%;
      height: 100%;
      z-index: 3;
    }
    .heroSwiper .swiper-wrapper {
      align-items: center;
    }
    .heroSwiper .swiper-slide {
      width: 220px;
      height: 320px;
      border-radius: 20px;
      box-shadow: 0 15px 30px rgba(0,0,0,0.6);
      background-position: center;
      background-size: cover;
      opacity: 0.55;
      transition: opacity 0.4s ease;
    }
    .heroSwiper .swiper-slide-active {
      opacity: 1;
      z-index: 5;
      box-shadow: 0 20px 40px rgba(0,0,0,0.75);
      border: 2px solid rgba(255,255,255,0.3);
    }
    .heroSwiper .swiper-slide-prev,
    .heroSwiper .swiper-slide-next {
      opacity: 0.8;
    }
    .item .content {
      position: absolute;
      top: 50%;
      right: calc(100% + 40px);
      width: 340px;
      text-align: right;
      color: #ffffff;
      transform: translateY(-50%);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s ease 0.15s, visibility 0.4s ease 0.15s;
      z-index: 10;
      pointer-events: none;
    }
    .heroSwiper .swiper-slide-active .content {
      opacity: 1 !important;
      visibility: visible !important;
      pointer-events: auto;
    }
    .item .content .name { font-size: 32px; font-weight: 800; line-height: 1.2; white-space: nowrap; text-shadow: 0 4px 15px rgba(0,0,0,0.9); }
    .item .content .des { margin-top: 14px; margin-bottom: 22px; font-size: 15px; font-weight: 500; line-height: 1.7; color: #e2e8f0; text-shadow: 0 2px 10px rgba(0,0,0,0.9); }
    .item .content a.slide-btn {
      display: inline-block;
      text-decoration: none;
      padding: 12px 28px;
      border-radius: 10px;
      background: #ffffff;
      color: #000000;
      font-weight: 700;
      font-size: 15px;
      transition: 0.3s;
      box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    }
    .item .content a.slide-btn:hover { background: #dfb260; color: #000000; transform: translateY(-2px); }
    .slider-buttons-wrapper {
      width: 100%;
      text-align: center;
      position: absolute;
      bottom: 25px;
      z-index: 20;
      pointer-events: none;
    }
    .slider-buttons-wrapper button {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.4);
      cursor: pointer;
      margin: 0 5px;
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      transition: 0.3s;
      pointer-events: auto;
    }
    .slider-buttons-wrapper button:hover { background: #fff; color: #000; }
    @media (max-width: 768px) {
      .slider-custom-container { height: 560px; }
      .slider-buttons-wrapper { display: none; }
      .heroSwiper .swiper-slide {
        width: 155px;
        height: 215px;
      }
      .item .content {
        right: auto;
        left: 50%;
        top: 227px;
        transform: translateX(-50%);
        text-align: center;
        width: 88%;
      }
      .item .content .name { white-space: normal; font-size: 20px; margin-bottom: 2px; }
      .item .content .des { font-size: 12px; margin-top: 14px; margin-bottom: 20px; }
      .item .content a.slide-btn {
        padding: 10px 0;
        font-size: 13px;
        min-width: 150px;
        text-align: center;
      }
      .slider-bg-layer {
        filter: blur(10px) brightness(0.32);
      }
    }

/* إخفاء الشريط الأسود القديم (متجر في مرحلة التجهيز) على الصفحة الرئيسية فقط */
body.home .elementor-element[data-id="a0000001"] { display: none !important; }
