/** Shopify CDN: Minification failed

Line 14:0 Unexpected "<"
Line 46:2 Unexpected "<"
Line 139:2 Unexpected "<"
Line 256:2 Unexpected "<"
Line 349:2 Unexpected "<"
Line 363:2 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
    .grid-gallery {
      padding: 2rem 1rem;
    }
    .gallery-grid {
      display: grid;
      gap: 1rem;
    }
    /* Desktop columns */
    .gallery-grid.columns-2 { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid.columns-3 { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid.columns-4 { grid-template-columns: repeat(4, 1fr); }
    /* Mobile columns */
    .gallery-grid.cols-mobile-1 { grid-template-columns: repeat(1, 1fr); }
    .gallery-grid.cols-mobile-2 { grid-template-columns: repeat(2, 1fr); }

    .gallery-item img {
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 8px;
      transition: transform 0.3s ease;
    }
    .gallery-item img:hover {
      transform: scale(1.05);
    }

    @media (max-width: 768px) {
      .gallery-grid {
        gap: 0.5rem;
      }
    }
  </style>
<style>
  /* --- Top Bar --- */
  .hc-top-bar {
    background: #F5CBA7;
    font-family: var(--font-body-family);
  }
  .hc-top-bar__inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; gap: 1rem;
    padding: .5rem 1rem;
  }
  .hc-top-bar__message { flex:1; font-weight:600; }
  .hc-top-bar__cta {
    background:#333; color:#fff;
    padding:.5rem 1rem; border-radius:4px;
    text-decoration:none;
  }
  .hc-top-bar__countdown {
    display:flex; gap:.25rem; font-weight:600;
  }
  .hc-countdown__item { min-width:2ch; text-align:center; }

  /* --- Announcement Slider --- */
  .hc-announcement-slider { background:#FDEBD0; padding:.5rem 0; }
  .hc-announcement-slider .swiper-wrapper { display:flex; }
  .hc-announcement-slider .swiper-slide {
    text-align:center; font-weight:500;
  }
  .hc-announcement-slider .swiper-button-prev,
  .hc-announcement-slider .swiper-button-next {
    color:#333; opacity:.7;
  }

  /* --- Main Header --- */
  .hc-main-header {
    display:flex; align-items:center;
    justify-content:space-between;
    max-width:1200px; margin:0 auto;
    padding:1rem;
  }
  .hc-logo img { max-height:50px; }
  .hc-site-title { font-size:1.5rem; font-weight:bold; }

  /* Search form */
  .hc-search-form {
    display:flex; width:100%; max-width:400px;
  }
  .hc-search-form input {
    flex:1; padding:.5rem; border:1px solid #ccc; border-right:none;
    border-radius:4px 0 0 4px;
  }
  .hc-search-form button {
    padding:.5rem 1rem; border:1px solid #ccc; background:#fff;
    border-radius:0 4px 4px 0; cursor:pointer;
  }

  /* Icons */
  .hc-icons a.hc-icon {
    margin-left:1rem;
    color:#333;
    display:inline-flex; align-items:center;
  }

  /* --- Primary Nav --- */
  .hc-primary-nav {
    background:#fff; border-top:1px solid #eee;
  }
  .hc-primary-nav ul {
    max-width:1200px; margin:0 auto;
    display:flex; gap:2rem; list-style:none;
    padding:1rem; justify-content:center;
  }
  .hc-primary-nav a {
    text-decoration:none; color:#333; font-weight:500;
    transition:color .2s;
  }
  .hc-primary-nav a:hover { color:#E67E22; }

  /* RTL */
  html[lang="ar"] .hc-main-header,
  html[lang="ar"] .hc-top-bar__inner,
  html[lang="ar"] .hc-primary-nav ul {
    direction:rtl;
  }

  /* Responsive */
  @media (max-width:768px) {
    .hc-top-bar__inner { flex-wrap:wrap; text-align:center; }
    .hc-main-header { flex-direction:column; gap:1rem; }
    .hc-search-form { max-width:100%; }
    .hc-primary-nav ul { flex-wrap:wrap; gap:1rem; }
  }
  </style>
<style>
  /* ==== Header Custom Styles ==== */

  .custom-header {
    font-family: var(--font-body-family);
  }

  /* Announcement bar */
  .announcement-bar {
    background: #512da8;
    color: #fff;
    text-align: center;
    padding: 0.5rem;
    font-size: 1rem;
  }

  /* Main header inner container */
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #fff;
    border-bottom: 1px solid #eee;
  }

  /* Mobile toggle */
  .header-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    display: none;
  }

  /* Logo */
  .header-logo img {
    max-height: 50px;
    object-fit: contain;
  }
  .site-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
  }

  /* Nav */
  .header-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .header-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color .2s;
  }
  .header-nav a:hover {
    color: #512da8;
  }

  /* Icons */
  .header-icons a {
    margin-left: 1rem;
    color: #333;
    font-size: 1.2rem;
    transition: color .2s;
  }
  .header-icons a:hover {
    color: #512da8;
  }

  /* Localization wrapper */
  .localization-form-wrapper {
    display: inline-block;
    margin-right: 1rem;
  }

  /* LTR / RTL */
  html[lang="ar"] .header-inner {
    direction: rtl;
  }
  html[lang="en"] .header-inner {
    direction: ltr;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .header-toggle {
      display: block;
    }
    .header-logo,
    .header-icons {
      flex: 1;
    }
    .header-nav {
      position: absolute;
      top: 100%;
      left: 0; right:0;
      background: #fff;
      display: none;
      flex-direction: column;
      text-align: center;
      padding: 1rem;
      border-bottom: 1px solid #eee;
    }
    .header-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .header-inner.open .header-nav {
      display: flex;
    }
  }
  </style>
<style>
  /* --- Top Bar --- */
  .hc-top-bar {
    background: #F5CBA7;
    font-family: var(--font-body-family);
  }
  .hc-top-bar__inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; gap: 1rem;
    padding: .5rem 1rem;
  }
  .hc-top-bar__message { flex:1; font-weight:600; }
  .hc-top-bar__cta {
    background:#333; color:#fff;
    padding:.5rem 1rem; border-radius:4px;
    text-decoration:none;
  }
  .hc-top-bar__countdown {
    display:flex; gap:.25rem; font-weight:600;
  }
  .hc-countdown__item { min-width:2ch; text-align:center; }

  /* --- Announcement Slider --- */
  .hc-announcement-slider { background:#FDEBD0; padding:.5rem 0; }
  .hc-announcement-slider .swiper-wrapper { display:flex; }
  .hc-announcement-slider .swiper-slide {
    text-align:center; font-weight:500;
  }
  .hc-announcement-slider .swiper-button-prev,
  .hc-announcement-slider .swiper-button-next {
    color:#333; opacity:.7;
  }

  /* --- Main Header --- */
  .hc-main-header {
    display:flex; align-items:center;
    justify-content:space-between;
    max-width:1200px; margin:0 auto;
    padding:1rem;
  }
  .hc-logo img { max-height:50px; }
  .hc-site-title { font-size:1.5rem; font-weight:bold; }

  /* Search form */
  .hc-search-form {
    display:flex; width:100%; max-width:400px;
  }
  .hc-search-form input {
    flex:1; padding:.5rem; border:1px solid #ccc; border-right:none;
    border-radius:4px 0 0 4px;
  }
  .hc-search-form button {
    padding:.5rem 1rem; border:1px solid #ccc; background:#fff;
    border-radius:0 4px 4px 0; cursor:pointer;
  }

  /* Icons */
  .hc-icons a.hc-icon {
    margin-left:1rem;
    color:#333;
    display:inline-flex; align-items:center;
  }

  /* --- Primary Nav --- */
  .hc-primary-nav {
    background:#fff; border-top:1px solid #eee;
  }
  .hc-primary-nav ul {
    max-width:1200px; margin:0 auto;
    display:flex; gap:2rem; list-style:none;
    padding:1rem; justify-content:center;
  }
  .hc-primary-nav a {
    text-decoration:none; color:#333; font-weight:500;
    transition:color .2s;
  }
  .hc-primary-nav a:hover { color:#E67E22; }

  /* RTL */
  html[lang="ar"] .hc-main-header,
  html[lang="ar"] .hc-top-bar__inner,
  html[lang="ar"] .hc-primary-nav ul {
    direction:rtl;
  }

  /* Responsive */
  @media (max-width:768px) {
    .hc-top-bar__inner { flex-wrap:wrap; text-align:center; }
    .hc-main-header { flex-direction:column; gap:1rem; }
    .hc-search-form { max-width:100%; }
    .hc-primary-nav ul { flex-wrap:wrap; gap:1rem; }
  }
  </style>
<style>
    .btn-rich-text:hover {
      background: #311b92;
    }

    @media (max-width: 768px) {
      .rich-text-section h2 {
        font-size: 1.75rem;
      }
      .rich-text-section .rte {
        font-size: 1rem;
      }
    }
  </style>