/** Shopify CDN: Minification failed

Line 16:18 Unexpected "{"
Line 16:27 Expected ":"
Line 22:22 Unexpected "{"
Line 22:31 Expected ":"
Line 27:22 Unexpected "{"
Line 27:31 Expected ":"
Line 40:22 Unexpected "{"
Line 40:31 Expected ":"
Line 47:22 Unexpected "{"
Line 47:31 Expected ":"
... and 46 more hidden warnings

**/
#shopify-section-{{ section.id }} .fahad-slideshow {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    #shopify-section-{{ section.id }} .fahad-slider-viewport {
      width: 100%;
      overflow: hidden;
    }

    #shopify-section-{{ section.id }} .fahad-slider-track {
      display: flex;
      align-items: stretch;
      will-change: transform;
      transition: transform 450ms ease;
      margin: 0;
      padding: 0;
      list-style: none;

      /* Helps touch devices understand intended gesture */
      touch-action: pan-y pinch-zoom;
    }

    #shopify-section-{{ section.id }} .fahad-slide {
      min-width: 100%;
      display: flex;
      flex-direction: column;
      background: transparent;
    }

    #shopify-section-{{ section.id }} .fahad-slide-media {
      position: relative;
      width: 100%;
      overflow: hidden;
      line-height: 0;
    }

    #shopify-section-{{ section.id }} .fahad-slide-img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: cover;
      object-position: center;
      background: transparent;
      vertical-align: middle;
    }

    /* Desktop overlay content area */
    #shopify-section-{{ section.id }} .fahad-slide-overlay {
      position: absolute;
      inset: 0;
      display: none;
      padding: clamp(12px, 3vw, 64px);
      pointer-events: none;
    }

    #shopify-section-{{ section.id }} .fahad-content {
      color: var(--fahad-text-color, #ffffff);
      max-width: var(--fahad-content-width, 50%);
      width: 100%;
      display: grid;
      gap: clamp(8px, 1.4vw, 20px);
      pointer-events: auto;
      text-align: left;
      background: rgba(0, 0, 0, var(--fahad-overlay-opacity, 0.5));
      padding: clamp(16px, 2.5vw, 40px);
      border-radius: clamp(8px, 1vw, 16px);
    }

    #shopify-section-{{ section.id }} .fahad-heading {
      margin: 0;
      line-height: 1.1;
      letter-spacing: 0;
      font-size: clamp(22px, 4vw, 56px);
      font-weight: 700;
      color: inherit;
    }

    #shopify-section-{{ section.id }} .fahad-subtext {
      margin: 0;
      line-height: 1.5;
      font-size: clamp(14px, 1.6vw, 20px);
      color: inherit;
      opacity: 0.95;
    }

    #shopify-section-{{ section.id }} .fahad-button {
      display: inline-block;
      width: max-content;
      padding: clamp(10px, 1.2vw, 16px) clamp(16px, 2.2vw, 28px);
      background: var(--fahad-btn-bg, #ffffff);
      color: var(--fahad-btn-color, #111111);
      border: 1px solid transparent;
      border-radius: clamp(4px, 0.6vw, 10px);
      text-decoration: none;
      font-weight: 600;
      line-height: 1;
      transition: transform 180ms ease, opacity 180ms ease;
      text-align: center;
      justify-content: center;
    }
    #shopify-section-{{ section.id }} .fahad-button:focus,
    #shopify-section-{{ section.id }} .fahad-button:hover {
      transform: translateY(-2%);
      opacity: 0.96;
    }

    /* Mobile content container below the image */
    #shopify-section-{{ section.id }} .fahad-mobile-content {
      display: block;
      background: var(--fahad-mobile-bg, #0046ff);
      color: var(--fahad-text-color, #ffffff);
      padding: clamp(14px, 4.5vw, 28px) clamp(16px, 6vw, 36px);
      text-align: var(--fahad-mobile-align, center);
      flex-shrink: 0;
    }
    #shopify-section-{{ section.id }} .fahad-content-inner {
      display: grid;
      gap: clamp(8px, 3.2vw, 20px);
      max-width: 100%;
      margin-inline: 0;
    }
    #shopify-section-{{ section.id }} .fahad-mobile-content .fahad-button {
      justify-self: center;
    }

    /* Arrows */
    #shopify-section-{{ section.id }} .fahad-nav {
      pointer-events: none;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 clamp(6px, 1.8vw, 20px);
    }
    #shopify-section-{{ section.id }} .fahad-arrow {
      pointer-events: auto;
      border: 0;
      background: rgba(0,0,0,0.35);
      color: #fff;
      width: clamp(36px, 4.2vw, 56px);
      height: clamp(36px, 4.2vw, 56px);
      border-radius: 999px;
      display: grid;
      place-items: center;
      cursor: pointer;
      transition: background 180ms ease, transform 180ms ease;
    }
    #shopify-section-{{ section.id }} .fahad-arrow:hover { background: rgba(0,0,0,0.5); transform: scale(1.03); }
    #shopify-section-{{ section.id }} .fahad-arrow:focus { outline: 2px solid #fff; outline-offset: 2px; }
    #shopify-section-{{ section.id }} .fahad-arrow-icon { font-size: clamp(18px, 2vw, 24px); line-height: 1; }

    /* Dots */
    #shopify-section-{{ section.id }} .fahad-dots {
      display: flex;
      justify-content: center;
      gap: clamp(6px, 1vw, 10px);
      margin: clamp(8px, 2vw, 16px) auto 0;
      padding-bottom: clamp(8px, 2vw, 16px);
    }
    #shopify-section-{{ section.id }} .fahad-dot {
      width: clamp(6px, 0.9vw, 10px);
      height: clamp(6px, 0.9vw, 10px);
      border-radius: 50%;
      border: 0;
      background: rgba(0,0,0,0.28);
      cursor: pointer;
      transition: transform 180ms ease, background 180ms ease;
    }
    #shopify-section-{{ section.id }} .fahad-dot[aria-current="true"] { background: rgba(0,0,0,0.6); transform: scale(1.2); }

    /* Desktop behavior: overlay on image, mobile content hidden */
    @media (min-width: 750px) {
      #shopify-section-{{ section.id }} .fahad-slide-overlay {
        display: flex;
        align-items: var(--fahad-align-y, center);
        justify-content: var(--fahad-align-x, flex-start);
      }
      #shopify-section-{{ section.id }} .fahad-mobile-content {
        display: none;
      }
    }

    /* Placeholder styling */
    #shopify-section-{{ section.id }} .fahad-slide-placeholder {
      width: 100%;
      height: 500px;
      background: linear-gradient(180deg, #f2f2f2, #e8e8e8);
      display: grid;
      place-items: center;
    }
    #shopify-section-{{ section.id }} .fahad-placeholder-box {
      padding: 10px 16px;
      background: #fff;
      color: #333;
      border-radius: 8px;
      font-size: 14px;
    }