/** Shopify CDN: Minification failed

Line 4174:6 Unexpected "{"
Line 4174:7 Expected identifier but found "%"
Line 4176:6 Unexpected "{"
Line 4176:7 Expected identifier but found "%"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:about-story (INDEX:1) */
.about-story-modern {
    background: #FFFFFF;
    overflow-x: hidden;
    position: relative;
  }

  /* Hero Section */
  .about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    padding-top: calc(100px + 2rem);
  }

  .about-hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .about-hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #F8EEE5 0%, #FFF5F0 50%, #F8EEE5 100%);
    z-index: 0;
  }

  .about-hero__shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
  }

  .shape--1 {
    width: 300px;
    height: 300px;
    background: #FD4C16;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
  }

  .shape--2 {
    width: 200px;
    height: 200px;
    background: #6B2138;
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
  }

  .shape--3 {
    width: 250px;
    height: 250px;
    background: #FD4C16;
    top: 50%;
    right: 10%;
    animation-delay: 4s;
  }

  @keyframes float {
    0%, 100% {
      transform: translateY(0) scale(1);
    }
    50% {
      transform: translateY(-30px) scale(1.1);
    }
  }

  .about-hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
  }

  .about-hero__label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(253, 76, 22, 0.1);
    color: #FD4C16;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 2rem;
  }

  .about-hero__headline {
    font-family: 'BIGX', var(--font-heading-family);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: #1E1E1E;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -3px;
  }

  .about-hero__subtext {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: #1E1E1E;
    opacity: 0.7;
    margin-bottom: 3rem;
    line-height: 1.6;
  }

  /* Stats Section */
  .about-stats {
    padding: 6rem 2rem;
    background: #FFFFFF;
  }

  .about-stats__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
  }

  .stat-card {
    text-align: center;
    padding: 2rem;
    border-radius: 24px;
    background: linear-gradient(135deg, #F8EEE5 0%, #FFF5F0 100%);
    transition: all 0.3s ease;
  }

  .stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(253, 76, 22, 0.1);
  }

  .stat-card__number {
    font-family: 'BIGX', var(--font-heading-family);
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 900;
    color: #FD4C16;
    margin-bottom: 0.5rem;
  }

  .stat-card__label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1E1E1E;
    opacity: 0.8;
  }

  /* Story Cards */
  .about-story-cards {
    padding: 4rem 2rem;
  }

  .about-story-cards__container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8rem;
  }

  .story-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
  }

  .story-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .story-card--right {
    direction: rtl;
  }

  .story-card--right .story-card__content {
    direction: ltr;
  }

  .story-card__image {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  }

  .story-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .story-card:hover .story-card__image img {
    transform: scale(1.05);
  }

  .story-card__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(253, 76, 22, 0.1), rgba(107, 33, 56, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .story-card:hover .story-card__image-overlay {
    opacity: 1;
  }

  .story-card__content {
    padding: 2rem;
  }

  .story-card__number {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    color: #FD4C16;
    background: rgba(253, 76, 22, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
  }

  .story-card__title {
    font-family: 'BIGX', var(--font-heading-family);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #1E1E1E;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
  }

  .story-card__text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #1E1E1E;
    opacity: 0.7;
  }

  /* Values Section */
  .about-values {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8EEE5 100%);
  }

  .about-values__container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .about-values__title {
    font-family: 'BIGX', var(--font-heading-family);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #1E1E1E;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -2px;
  }

  .about-values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
  }

  .value-card {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }

  .value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  .value-card__icon {
    margin-bottom: 1.5rem;
  }

  .value-card__icon--svg {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FD4C16;
  }

  .value-card__icon--svg svg {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
  }

  .value-card__title {
    font-family: 'BIGX', var(--font-heading-family);
    font-size: 1.75rem;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 1rem;
  }

  .value-card__text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #1E1E1E;
    opacity: 0.7;
  }

  /* Promise Section */
  .about-promise {
    position: relative;
    padding: 8rem 2rem;
    text-align: center;
    overflow: hidden;
  }

  .about-promise__background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }

  .about-promise__background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FD4C16 0%, #FF6B3D 50%, #FD4C16 100%);
    z-index: 0;
  }

  .about-promise__container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    color: white;
  }

  .about-promise__title {
    font-family: 'BIGX', var(--font-heading-family);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -2px;
  }

  .about-promise__text {
    font-size: 1.375rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.95;
  }

  .about-promise__cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    background: white;
    color: #FD4C16;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .about-promise__cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #6B2138;
    color: white;
  }

  .about-promise__cta svg {
    transition: transform 0.3s ease;
  }

  .about-promise__cta:hover svg {
    transform: translateX(5px);
  }

  /* RTL Support */
  [dir="rtl"] .story-card--left {
    direction: rtl;
  }

  [dir="rtl"] .story-card--left .story-card__content {
    direction: rtl;
    text-align: right;
  }

  [dir="rtl"] .story-card--right {
    direction: ltr;
  }

  [dir="rtl"] .story-card--right .story-card__content {
    direction: rtl;
    text-align: right;
  }

  [dir="rtl"] .about-promise__cta:hover svg {
    transform: translateX(-5px);
  }

  /* Mobile Responsive */
  @media screen and (max-width: 768px) {
    .about-hero {
      min-height: 100vh;
      padding: 2rem 1rem;
      padding-top: calc(80px + 2rem);
    }

    .about-hero__headline {
      font-size: clamp(2rem, 8vw, 2.5rem);
      letter-spacing: -1px;
      margin-bottom: 1rem;
    }

    .about-hero__subtext {
      font-size: 1rem;
      margin-bottom: 2rem;
    }

    .about-hero__label {
      font-size: 0.75rem;
      padding: 0.4rem 1rem;
      margin-bottom: 1.5rem;
    }


    .shape--1,
    .shape--2,
    .shape--3 {
      display: none;
    }

    .about-stats {
      padding: 3rem 1rem;
    }

    .about-stats__container {
      gap: 1.5rem;
      grid-template-columns: 1fr;
    }

    .stat-card {
      padding: 1.5rem;
    }

    .stat-card__number {
      font-size: 2.5rem;
    }

    .stat-card__label {
      font-size: 1rem;
    }

    .about-story-cards {
      padding: 3rem 1rem;
    }

    .about-story-cards__container {
      gap: 3rem;
    }

    .story-card {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .story-card--right {
      direction: ltr;
    }

    .story-card__content {
      padding: 1rem 0;
    }

    .story-card__title {
      font-size: clamp(1.75rem, 6vw, 2rem);
      margin-bottom: 1rem;
    }

    .story-card__text {
      font-size: 1rem;
      line-height: 1.7;
    }

    .story-card__number {
      font-size: 0.875rem;
      padding: 0.4rem 0.8rem;
      margin-bottom: 1rem;
    }

    .about-values {
      padding: 3rem 1rem;
    }

    .about-values__title {
      font-size: clamp(2rem, 6vw, 2.5rem);
      margin-bottom: 2rem;
    }

    .about-values__grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .value-card {
      padding: 2rem 1.5rem;
    }

    .value-card__icon--svg svg {
      width: 2.5rem;
      height: 2.5rem;
    }

    .value-card__icon {
      margin-bottom: 1rem;
    }

    .value-card__title {
      font-size: 1.5rem;
      margin-bottom: 0.75rem;
    }

    .value-card__text {
      font-size: 1rem;
    }

    .about-promise {
      padding: 3rem 1rem;
    }

    .about-promise__title {
      font-size: clamp(2rem, 6vw, 2.5rem);
      margin-bottom: 1.5rem;
    }

    .about-promise__text {
      font-size: 1.125rem;
      margin-bottom: 2rem;
      line-height: 1.7;
    }

    .about-promise__cta {
      padding: 1rem 2rem;
      font-size: 1rem;
      gap: 0.75rem;
    }
  }

  @media screen and (max-width: 480px) {
    .about-hero {
      min-height: 100vh;
      padding: 1.5rem 1rem;
      padding-top: calc(70px + 1.5rem);
    }

    .about-hero__headline {
      font-size: 1.75rem;
    }

    .stat-card__number {
      font-size: 2rem;
    }

    .story-card__title {
      font-size: 1.5rem;
    }

    .about-promise__cta {
      width: 100%;
      justify-content: center;
    }
  }

  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Arabic Typography */
  [lang="ar"] .about-hero__headline,
  [lang="ar"] .story-card__title,
  [lang="ar"] .about-values__title,
  [lang="ar"] .about-promise__title {
    font-family: var(--font-primary--family);
    letter-spacing: 0;
    line-height: 1.4;
  }

  [lang="ar"] .about-hero__subtext,
  [lang="ar"] .story-card__text,
  [lang="ar"] .value-card__text,
  [lang="ar"] .about-promise__text {
    font-family: var(--font-primary--family);
    line-height: 1.9;
  }
/* END_SECTION:about-story */

/* START_SECTION:brand-moment (INDEX:4) */
/* Ball decorations container */
    .brand-moment .ball-decorations {
      display: none; /* Using custom large ball instead */
    }
    
    .brand-moment__large-ball {
      position: absolute;
      width: 400px;
      height: 400px;
      top: 50%;
      left: 15%;
      transform: translate(-50%, -50%);
      opacity: 1;
      pointer-events: none;
      z-index: 1;
      animation: floatLargeBall 25s ease-in-out infinite;
    }
    
    @keyframes floatLargeBall {
      0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
      }
      25% {
        transform: translate(-50%, -52%) rotate(5deg) scale(1.05);
      }
      50% {
        transform: translate(-50%, -48%) rotate(-3deg) scale(0.98);
      }
      75% {
        transform: translate(-50%, -54%) rotate(4deg) scale(1.03);
      }
    }
    
    .brand-moment {
      --orange: #FD4C16;
      --linen: #F8EEE5;
      --brown: #6B2138;
      --black: #1E1E1E;
      
      position: relative;
      min-height: clamp(40vh, 50vh, 600px);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: var(--linen);
    }

    .brand-moment__background {
      display: none; /* Hide spiral shapes */
    }

    .brand-moment__spiral {
      display: none;
    }

    /* Create concentric circles effect */
    .brand-moment__spiral:nth-child(1) {
      display: none;
    }

    .brand-moment__spiral:nth-child(2) {
      display: none;
    }

    .brand-moment__spiral:nth-child(3) {
      display: none;
    }

    .brand-moment__spiral:nth-child(4) {
      display: none;
    }

    @keyframes breatheRotate {
      0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
      }
      50% {
        transform: rotate(180deg) scale(1.05);
        opacity: 0.5;
      }
      100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.3;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .brand-moment__spiral {
        animation: none;
        opacity: 0.3;
      }
    }

    .brand-moment__container {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 2rem;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .brand-moment__quote {
      font-family: 'BIGX', Arial, sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 900;
      color: var(--black);
      line-height: 1.3;
      margin-bottom: 2rem;
      text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 1s ease-out 0.3s forwards;
    }

    .brand-moment__quote::before,
    .brand-moment__quote::after {
      content: none;
      display: none;
    }

    .brand-moment__link-wrapper {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 1s ease-out 0.6s forwards;
    }

    .brand-moment__link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1.1rem;
      font-weight: 600;
      color: white;
      text-decoration: none;
      position: relative;
      padding: 0.75rem 1.5rem;
      transition: all 0.3s ease;
      background: var(--orange);
      border-radius: 50px;
      border: 2px solid var(--orange);
      box-shadow: 0 4px 15px rgba(253, 76, 22, 0.3);
    }

    .brand-moment__link::after {
      content: '›';
      font-size: 1.3rem;
      line-height: 1;
      vertical-align: middle;
      transition: transform 0.3s ease;
      display: inline-block;
    }

    .brand-moment__link:hover {
      background: var(--brown);
      border-color: var(--brown);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(107, 33, 56, 0.4);
    }

    .brand-moment__link:hover::after {
      transform: translateX(5px);
    }

    .brand-moment__link-spiral {
      position: absolute;
      top: 50%;
      right: -40px;
      width: 30px;
      height: 30px;
      border: 2px solid var(--orange);
      border-radius: 50%;
      opacity: 0;
      transform: translateY(-50%) scale(0.5) rotate(0deg);
      transition: all 0.6s ease;
    }

    .brand-moment__link:hover .brand-moment__link-spiral {
      opacity: 0.6;
      transform: translateY(-50%) scale(1) rotate(180deg);
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Ball stays left in both LTR and RTL */

    [dir="rtl"] .brand-moment__container {
      direction: rtl;
    }

    [dir="rtl"] .brand-moment__quote {
      text-align: right;
    }

    [dir="rtl"] .brand-moment__link::after {
      margin-inline-start: 0;
      margin-inline-end: 0;
    }

    [dir="rtl"] .brand-moment__link:hover::after {
      transform: translateX(-5px);
    }

    [dir="rtl"] .brand-moment__link-spiral {
      right: auto;
      left: -40px;
    }

    /* Arabic Typography */
    [lang="ar"] .brand-moment__quote {
      font-family: var(--font-primary--family);
      letter-spacing: 0;
      line-height: 1.8;
    }

    [lang="ar"] .brand-moment__link {
      font-family: var(--font-primary--family);
    }

    [dir="rtl"] .brand-moment__link-spiral {
      right: auto;
      left: -40px;
    }

    [dir="rtl"] .brand-moment__quote {
      font-family: var(--font-primary--family);
    }

    /* Mobile Responsive */
    @media screen and (max-width: 768px) {
      .brand-moment {
        min-height: 50vh;
      }

      .brand-moment__large-ball {
        width: 250px;
        height: 250px;
        left: 10%;
      }


      .brand-moment__container {
        padding: 0 1.5rem;
      }

      .brand-moment__quote {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 1.5rem;
      }

      .brand-moment__link {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
      }

      .brand-moment__spiral {
        width: 300px;
        height: 300px;
        animation-duration: 40s;
      }

      .brand-moment__spiral:nth-child(1) {
        width: 350px;
        height: 350px;
      }

      .brand-moment__spiral:nth-child(3) {
        width: 400px;
        height: 400px;
      }
    }
/* END_SECTION:brand-moment */

/* START_SECTION:cart (INDEX:5) */
.cart-page {
    background: #FFFFFF;
    padding: 8rem 0 4rem 0;
    min-height: 100vh;
  }

  .cart-page__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  /* Header */
  .cart-page__header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .cart-page__title {
    font-family: 'BIGX', var(--font-heading-family);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #1E1E1E;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
  }

  .cart-page__count {
    font-size: 1rem;
    color: #FD4C16;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* Content Layout */
  .cart-page__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  /* Cart Items */
  .cart-page__items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #FFFFFF;
    border: 2px solid #F8EEE5;
    border-radius: 20px;
    transition: all 0.3s ease;
  }

  .cart-item:hover {
    border-color: #FD4C16;
    box-shadow: 0 8px 25px rgba(253, 76, 22, 0.1);
  }

  /* Item Image */
  .cart-item__image {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #F8EEE5 0%, #FFF5F0 100%);
  }

  .cart-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cart-item__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(30, 30, 30, 0.25);
  }

  .cart-item__placeholder svg {
    width: 48px;
    height: 48px;
  }

  /* Item Details */
  .cart-item__details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .cart-item__title {
    font-family: 'BIGX', var(--font-heading-family);
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
  }

  .cart-item__title a {
    color: #1E1E1E;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .cart-item__title a:hover {
    color: #FD4C16;
  }

  .cart-item__variant {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .cart-item__option {
    font-size: 0.875rem;
    color: #1E1E1E;
    opacity: 0.7;
    background: #F8EEE5;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
  }

  .cart-item__price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .cart-item__price--regular {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1E1E1E;
  }

  .cart-item__price--original {
    font-size: 1rem;
    color: #1E1E1E;
    opacity: 0.5;
    text-decoration: line-through;
  }

  .cart-item__price--final {
    font-size: 1.125rem;
    font-weight: 700;
    color: #FD4C16;
  }

  /* Quantity Controls */
  .cart-item__quantity {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .cart-item__quantity-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1E1E1E;
  }

  .quantity-input {
    display: flex;
    border: 2px solid #E5E5E5;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    width: fit-content;
  }

  .quantity-input__btn {
    width: 35px;
    height: 40px;
    border: none;
    background: #F8EEE5;
    color: #1E1E1E;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .quantity-input__btn:hover {
    background: #FD4C16;
    color: white;
  }

  .quantity-input__field {
    width: 60px;
    border: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    padding: 0;
    background: white;
  }

  .quantity-input__field:focus {
    outline: none;
  }

  /* Item Actions */
  .cart-item__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
  }

  .cart-item__total {
    text-align: right;
  }

  .cart-item__total-label {
    display: block;
    font-size: 0.875rem;
    color: #1E1E1E;
    opacity: 0.7;
    margin-bottom: 0.25rem;
  }

  .cart-item__total-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1E1E1E;
  }

  .cart-item__remove {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: #1E1E1E;
    opacity: 0.6;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
  }

  .cart-item__remove:hover {
    opacity: 1;
    background: #FFF0F0;
    color: #D32F2F;
  }

  /* Cart Summary */
  .cart-summary {
    background: linear-gradient(135deg, #F8EEE5 0%, #FFF5F0 100%);
    border-radius: 20px;
    padding: 2rem;
    position: sticky;
    top: 2rem;
  }

  .cart-summary__title {
    font-family: 'BIGX', var(--font-heading-family);
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 1.5rem;
  }

  .cart-summary__line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(30, 30, 30, 0.1);
  }

  .cart-summary__label {
    font-weight: 500;
    color: #1E1E1E;
  }

  .cart-summary__value {
    font-weight: 600;
    color: #1E1E1E;
  }

  .cart-summary__value--note {
    font-size: 0.875rem;
    opacity: 0.7;
  }

  .cart-summary__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0 1rem;
    border-top: 2px solid #FD4C16;
    margin-top: 1rem;
  }

  .cart-summary__total-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1E1E1E;
  }

  .cart-summary__total-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: #FD4C16;
  }

  .cart-summary__checkout {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #FD4C16 0%, #FF6B3D 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(253, 76, 22, 0.3);
    margin: 1.5rem 0 1rem;
  }

  .cart-summary__checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(253, 76, 22, 0.4);
  }

  .cart-summary__checkout-icon {
    display: inline-flex;
    align-items: center;
    line-height: 1;
  }

  /* RTL: flip chevron so it points the correct way */
  [dir="rtl"] .cart-summary__checkout-icon {
    display: inline-block;
    transform: scaleX(-1);
  }

  .cart-summary__continue {
    display: block;
    text-align: center;
    color: #1E1E1E;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.7;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
  }

  .cart-summary__continue:hover {
    opacity: 1;
    color: #FD4C16;
  }


  /* Empty Cart */
  .cart-page__empty {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
  }

  .empty-cart {
    text-align: center;
    max-width: 400px;
  }

  .empty-cart__icon {
    margin-bottom: 1.5rem;
    opacity: 0.5;
    color: #FD4C16;
  }

  .empty-cart__icon svg {
    width: 64px;
    height: 64px;
    display: block;
    margin: 0 auto;
  }

  .empty-cart__title {
    font-family: 'BIGX', var(--font-heading-family);
    font-size: 2rem;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 1rem;
  }

  .empty-cart__text {
    font-size: 1.125rem;
    color: #1E1E1E;
    opacity: 0.7;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .empty-cart__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #FD4C16 0%, #FF6B3D 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(253, 76, 22, 0.3);
  }

  .empty-cart__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(253, 76, 22, 0.4);
  }

  /* Mobile Responsive */
  @media screen and (max-width: 768px) {
    .cart-page {
      padding: 4rem 0 2rem 0;
    }

    .cart-page__content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .cart-item {
      grid-template-columns: 80px 1fr;
      gap: 1rem;
    }

    .cart-item__actions {
      grid-column: 1 / -1;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid #F8EEE5;
    }

    .cart-item__total {
      text-align: left;
    }

    .cart-summary {
      position: static;
    }
  }

  /* RTL Support */
  [dir="rtl"] .cart-page__content {
    direction: rtl;
  }

  [dir="rtl"] .cart-item {
    direction: rtl;
  }

  [dir="rtl"] .cart-summary {
    direction: rtl;
  }
/* END_SECTION:cart */

/* START_SECTION:collection (INDEX:6) */
.collection-page {
    background-color: #FFFFFF;
    min-height: 100vh;
  }

  .collection-page__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  /* Header */
  .collection-page__header {
    background: linear-gradient(180deg, #F8EEE5 0%, #FFFFFF 100%);
    padding: 8rem 0 3rem 0;
    text-align: center;
    position: relative;
  }

  /* Logo */
  .collection-page__logo {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 10;
  }

  .collection-page__logo-image {
    height: 60px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
  }

  .collection-page__logo-image:hover {
    transform: scale(1.05);
  }

  .collection-page__logo-placeholder {
    height: 60px;
    width: 120px;
    background: linear-gradient(135deg, #FD4C16 0%, #FF6B3D 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(253, 76, 22, 0.3);
  }

  .collection-page__title {
    font-family: 'BIGX', var(--font-heading-family);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #1E1E1E;
    margin-bottom: 1rem;
    letter-spacing: -1px;
  }

  .collection-page__description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #1E1E1E;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto 1.5rem;
  }

  .collection-page__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .collection-page__count {
    font-size: 0.875rem;
    font-weight: 600;
    color: #FD4C16;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* Main Content */
  .collection-page__main {
    padding: 3rem 0;
  }

  /* Product Grid */
  .collection-page__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }

  /* Product Card */
  .product-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  }

  .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FD4C16 0%, #FF6B3D 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 22px;
  }

  .product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(253, 76, 22, 0.15);
    border-color: #FD4C16;
  }

  .product-card:hover::before {
    opacity: 0.05;
  }

  .product-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  /* Image */
  .product-card__image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(135deg, #F8EEE5 0%, #FFF5F0 100%);
    margin: 8px;
    border-radius: 16px;
  }

  .product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 16px;
  }

  .product-card__image--primary {
    position: relative;
  }

  .product-card__image--hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }

  .product-card:hover .product-card__image--primary {
    transform: scale(1.1) rotate(2deg);
    opacity: 0.8;
  }

  .product-card:hover .product-card__image--hover {
    opacity: 1;
    transform: scale(1.1) rotate(-1deg);
  }

  .product-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F8EEE5 0%, #FFF5F0 100%);
    border-radius: 16px;
    color: rgba(30, 30, 30, 0.3);
  }

  .product-card__placeholder svg {
    width: 48px;
    height: 48px;
  }

  /* Badges */
  .product-card__badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 3;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .product-card__badge--sold-out {
    background: rgba(30, 30, 30, 0.9);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .product-card__badge--sale {
    background: rgba(253, 76, 22, 0.95);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }

  /* Content */
  .product-card__content {
    padding: 1.5rem 1.5rem 1rem;
    position: relative;
  }

  .product-card__content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #FD4C16 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .product-card:hover .product-card__content::before {
    opacity: 0.3;
  }

  .product-card__title {
    font-family: 'BIGX', var(--font-heading-family);
    font-size: 1.125rem;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
  }

  .product-card:hover .product-card__title {
    color: #FD4C16;
  }

  .product-card__price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
  }

  .product-card__price--regular {
    color: #1E1E1E;
    background: linear-gradient(135deg, #F8EEE5 0%, #FFF5F0 100%);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1rem;
  }

  .product-card__price--compare {
    color: #1E1E1E;
    opacity: 0.4;
    text-decoration: line-through;
    font-size: 0.9rem;
    font-weight: 500;
  }

  .product-card__price--sale {
    color: white;
    background: linear-gradient(135deg, #FD4C16 0%, #FF6B3D 100%);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(253, 76, 22, 0.3);
  }

  /* Add to Cart Button */
  .product-card__add-btn {
    width: calc(100% - 16px);
    margin: 0 8px 8px;
    padding: 1rem;
    background: linear-gradient(135deg, #FD4C16 0%, #FF6B3D 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    box-shadow: 0 8px 25px rgba(253, 76, 22, 0.3);
    position: relative;
    overflow: hidden;
  }

  .product-card__add-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
  }

  .product-card:hover .product-card__add-btn {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .product-card__add-btn:hover {
    background: linear-gradient(135deg, #6B2138 0%, #8B2A47 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(107, 33, 56, 0.4);
  }

  .product-card__add-btn:hover::before {
    left: 100%;
  }

  .product-card__add-btn:active {
    transform: translateY(0) scale(0.98);
  }

  /* Empty State */
  .collection-page__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    font-size: 1.25rem;
    color: #1E1E1E;
    opacity: 0.6;
  }

  /* Pagination */
  .collection-page__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
  }

  .collection-page__pagination a,
  .collection-page__pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 1rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    color: #1E1E1E;
    transition: all 0.3s ease;
  }

  .collection-page__pagination a:hover {
    background: #F8EEE5;
    color: #FD4C16;
  }

  .collection-page__pagination .current {
    background: #FD4C16;
    color: white;
  }

  /* Mobile Responsive */
  @media screen and (max-width: 768px) {
    .collection-page__header {
      padding: 4rem 0 2rem 0;
    }

    .collection-page__logo {
      top: 1rem;
      left: 1rem;
    }

    .collection-page__logo-image {
      height: 40px;
      max-width: 80px;
    }

    .collection-page__logo-placeholder {
      height: 40px;
      width: 80px;
      font-size: 0.75rem;
    }

    .collection-page__title {
      font-size: 2rem;
    }

    .collection-page__grid {
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 1rem;
    }

    .product-card__content {
      padding: 1rem;
    }

    .product-card__title {
      font-size: 1rem;
    }

    .product-card__add-btn {
      opacity: 1;
      transform: translateY(0);
      font-size: 0.875rem;
    }
  }

  /* Animations */
  @media (prefers-reduced-motion: no-preference) {
    .product-card {
      opacity: 0;
      animation: fadeInUp 0.6s ease forwards;
    }

    .product-card:nth-child(1) { animation-delay: 0.1s; }
    .product-card:nth-child(2) { animation-delay: 0.2s; }
    .product-card:nth-child(3) { animation-delay: 0.3s; }
    .product-card:nth-child(4) { animation-delay: 0.4s; }
    .product-card:nth-child(n+5) { animation-delay: 0.5s; }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
  }

  /* RTL Support */
  [dir="rtl"] .collection-page__badge {
    right: auto;
    left: 1rem;
  }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:7) */
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
/* END_SECTION:collections */

/* START_SECTION:contact-form (INDEX:8) */
.contact-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #F8EEE5 0%, #FFFFFF 100%);
    padding-top: 8rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
  }

  .contact-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      radial-gradient(circle at 20% 30%, rgba(253, 76, 22, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(107, 33, 56, 0.06) 0%, transparent 50%);
    pointer-events: none;
  }

  .contact-page__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
  }

  .contact-page__header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .contact-page__logo {
    display: inline-block;
    margin-bottom: 2rem;
  }

  .contact-page__logo-image {
    height: 80px;
    max-width: 160px;
    object-fit: contain;
  }

  .contact-page__logo-placeholder {
    width: 80px;
    height: 80px;
    background: #FD4C16;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto;
  }

  .contact-page__logo-placeholder svg {
    width: 40px;
    height: 40px;
  }

  .contact-page__headline {
    font-family: 'BIGX', var(--font-heading-family);
    font-size: 3rem;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .contact-page__subheadline {
    font-size: 1.2rem;
    color: #6B2138;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }

  .contact-page__description {
    font-size: 1rem;
    color: rgba(30, 30, 30, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .contact-page__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .contact-page__form-section {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(253, 76, 22, 0.1);
  }

  .contact-page__form-title {
    font-family: 'BIGX', var(--font-heading-family);
    font-size: 1.8rem;
    font-weight: 600;
    color: #1E1E1E;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .contact-page__form-icon {
    width: 32px;
    height: 32px;
    background: #FD4C16;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
  }

  .contact-page__form-icon svg {
    width: 18px;
    height: 18px;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-form__group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-form__label {
    font-weight: 600;
    color: #1E1E1E;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .contact-form__input,
  .contact-form__textarea {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(253, 76, 22, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    font-family: var(--font-body-family);
  }

  .contact-form__input:focus,
  .contact-form__textarea:focus {
    outline: none;
    border-color: #FD4C16;
    background: white;
    box-shadow: 0 0 0 4px rgba(253, 76, 22, 0.1);
    transform: translateY(-1px);
  }

  .contact-form__textarea {
    min-height: 120px;
    resize: vertical;
  }

  .contact-form__submit {
    background: linear-gradient(135deg, #FD4C16 0%, #E63E0F 100%);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
  }

  .contact-form__submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #E63E0F 0%, #D73A0C 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .contact-form__submit:hover::before {
    opacity: 1;
  }

  .contact-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 76, 22, 0.4);
  }

  .contact-form__submit span {
    position: relative;
    z-index: 1;
  }

  .contact-page__info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .contact-info__card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(253, 76, 22, 0.1);
    transition: all 0.3s ease;
  }

  .contact-info__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(253, 76, 22, 0.2);
  }

  .contact-info__card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .contact-info__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FD4C16 0%, #E63E0F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(253, 76, 22, 0.3);
    flex-shrink: 0;
  }

  .contact-info__icon svg {
    width: 24px;
    height: 24px;
  }

  .contact-info__title {
    font-family: 'BIGX', var(--font-heading-family);
    font-size: 1.3rem;
    font-weight: 600;
    color: #1E1E1E;
    margin: 0;
  }

  .contact-info__content {
    color: rgba(30, 30, 30, 0.8);
    line-height: 1.6;
  }

  .contact-info__link {
    color: #FD4C16;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .contact-info__link:hover {
    color: #E63E0F;
    text-decoration: underline;
  }

  .contact-page__cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(253, 76, 22, 0.05);
    border-radius: 24px;
    border: 1px solid rgba(253, 76, 22, 0.1);
  }

  .contact-page__cta-text {
    font-size: 1.1rem;
    color: #6B2138;
    margin-bottom: 1.5rem;
    font-weight: 500;
  }

  .contact-page__cta-icon {
    display: block;
    margin-bottom: 1rem;
    color: #FD4C16;
  }

  .contact-page__cta-icon svg {
    width: 48px;
    height: 48px;
    margin: 0 auto;
    display: block;
  }

  /* RTL Support */
  [dir="rtl"] .contact-page__header,
  [dir="rtl"] .contact-page__header .contact-page__headline,
  [dir="rtl"] .contact-page__header .contact-page__subheadline,
  [dir="rtl"] .contact-page__header .contact-page__description {
    text-align: center;
  }

  [dir="rtl"] .contact-page__cta,
  [dir="rtl"] .contact-page__cta-text {
    text-align: center;
  }

  [dir="rtl"] .contact-form__label,
  [dir="rtl"] .contact-form__input,
  [dir="rtl"] .contact-form__textarea {
    text-align: right;
  }

  [dir="rtl"] .contact-form__input,
  [dir="rtl"] .contact-form__textarea {
    direction: rtl;
  }

  [dir="rtl"] .contact-info__card-header {
    flex-direction: row;
    text-align: right;
  }

  [dir="rtl"] .contact-info__content {
    text-align: right;
  }

  [dir="rtl"] .contact-page__headline,
  [dir="rtl"] .contact-page__subheadline,
  [dir="rtl"] .contact-info__title {
    font-family: var(--font-primary--family);
    letter-spacing: 0;
  }

  [dir="rtl"] .contact-page__description,
  [dir="rtl"] .contact-form__label,
  [dir="rtl"] .contact-info__content,
  [dir="rtl"] .contact-page__cta-text {
    font-family: var(--font-primary--family);
  }

  /* Mobile Responsive */
  @media screen and (max-width: 768px) {
    .contact-page {
      padding-top: 6rem;
      padding-bottom: 3rem;
    }

    .contact-page__container {
      padding: 0 1rem;
    }

    .contact-page__header {
      margin-bottom: 3rem;
    }

    .contact-page__headline {
      font-size: 2.2rem;
    }

    .contact-page__subheadline {
      font-size: 1.1rem;
    }

    .contact-page__content {
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    .contact-page__form-section {
      padding: 2rem;
    }

    .contact-page__form-title {
      font-size: 1.5rem;
    }

    .contact-info__card {
      padding: 1.5rem;
    }

    .contact-page__cta {
      padding: 2rem;
      margin-top: 3rem;
    }
  }

  @media screen and (max-width: 480px) {
    .contact-page__headline {
      font-size: 1.8rem;
    }

    .contact-page__form-section {
      padding: 1.5rem;
    }

    .contact-form__submit {
      padding: 1rem 1.5rem;
      font-size: 1rem;
    }
  }
/* END_SECTION:contact-form */

/* START_SECTION:custom-section (INDEX:9) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:customer-love-wall (INDEX:10) */
.customer-love-wall {
      --clw-orange: #FD4C16;
      --clw-linen: #F8EEE5;
      --clw-brown: #6B2138;
      --clw-black: #1E1E1E;
      --clw-white: #FFFFFF;
      
      position: relative;
      padding: 6rem 0;
      background: transparent;
      overflow: hidden;
    }

    /* Appealing divider at top */
    .customer-love-wall::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      height: 100px;
      background: linear-gradient(to bottom, 
        rgba(248, 238, 229, 0.3) 0%,
        rgba(248, 238, 229, 0.1) 50%,
        transparent 100%);
      pointer-events: none;
    }

    /* Decorative line divider */
    .customer-love-wall__divider {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 200px;
      height: 4px;
      background: linear-gradient(90deg, 
        transparent 0%, 
        var(--clw-orange) 20%, 
        var(--clw-brown) 50%, 
        var(--clw-orange) 80%, 
        transparent 100%);
      border-radius: 2px;
      opacity: 0.3;
    }

    /* Decorative dots */
    .customer-love-wall__divider::before,
    .customer-love-wall__divider::after {
      content: '';
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 8px;
      height: 8px;
      background: var(--clw-orange);
      border-radius: 50%;
      opacity: 0.5;
    }

    .customer-love-wall__divider::before {
      left: -20px;
    }

    .customer-love-wall__divider::after {
      right: -20px;
    }

    .customer-love-wall__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      position: relative;
      z-index: 1;
    }

    .customer-love-wall__header {
      text-align: center;
      margin-bottom: 3.5rem;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.8s ease-out 0.2s forwards;
    }

    .customer-love-wall__title {
      font-family: 'BIGX', Arial, sans-serif;
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 900;
      color: var(--clw-black);
      margin-bottom: 0.5rem;
      line-height: 1.2;
    }

    .customer-love-wall__subtitle {
      font-size: 1.2rem;
      color: var(--clw-black);
      opacity: 0.7;
      line-height: 1.6;
    }

    .customer-love-wall__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .customer-love-wall__card {
      background: var(--clw-white);
      border-radius: 24px;
      padding: 2rem;
      box-shadow: 0 4px 20px rgba(30, 30, 30, 0.08);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      opacity: 0;
      transform: translateY(30px) scale(0.95);
      animation: fadeInScale 0.8s ease-out forwards;
      position: relative;
      overflow: hidden;
    }

    .customer-love-wall__card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--clw-orange), var(--clw-brown));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s ease;
    }

    .customer-love-wall__card:hover::before {
      transform: scaleX(1);
    }

    .customer-love-wall__card:nth-child(1) { animation-delay: 0.3s; }
    .customer-love-wall__card:nth-child(2) { animation-delay: 0.4s; }
    .customer-love-wall__card:nth-child(3) { animation-delay: 0.5s; }
    .customer-love-wall__card:nth-child(4) { animation-delay: 0.6s; }
    .customer-love-wall__card:nth-child(5) { animation-delay: 0.7s; }
    .customer-love-wall__card:nth-child(6) { animation-delay: 0.8s; }

    .customer-love-wall__card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 12px 40px rgba(30, 30, 30, 0.15);
    }

    .customer-love-wall__card--photo {
      grid-column: span 1;
      display: flex;
      flex-direction: column;
    }

    .customer-love-wall__photo {
      width: 100%;
      aspect-ratio: 1;
      border-radius: 16px;
      object-fit: cover;
      margin-bottom: 1rem;
    }

    .customer-love-wall__quote {
      font-size: 1.25rem;
      color: var(--clw-black);
      line-height: 1.6;
      margin-bottom: 1.5rem;
      font-weight: 500;
      position: relative;
      padding-left: 1.5rem;
    }

    .customer-love-wall__quote::before {
      content: '"';
      position: absolute;
      left: 0;
      top: -10px;
      font-size: 3rem;
      color: var(--clw-orange);
      font-family: Georgia, serif;
      line-height: 1;
      opacity: 0.3;
    }

    .customer-love-wall__author {
      font-size: 0.95rem;
      color: var(--clw-black);
      opacity: 0.6;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .customer-love-wall__reactions {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .customer-love-wall__emoji {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      background: var(--clw-linen);
      padding: 0.5rem 0.75rem;
      border-radius: 50px;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      cursor: pointer;
      border: 2px solid transparent;
    }

    .customer-love-wall__emoji:hover {
      transform: scale(1.15);
      background: var(--clw-orange);
      border-color: var(--clw-orange);
    }

    .customer-love-wall__emoji-count {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--clw-black);
      opacity: 0.7;
    }

    /* Big floating icon decoration */
    .customer-love-wall__floating-emoji {
      position: absolute;
      opacity: 0.04;
      pointer-events: none;
      z-index: 0;
      animation: floatEmoji 25s ease-in-out infinite;
      color: var(--clw-black);
    }

    .customer-love-wall__floating-emoji svg {
      width: 8rem;
      height: 8rem;
      display: block;
    }

    .customer-love-wall__floating-emoji--1 {
      top: 10%;
      left: 5%;
      animation-delay: 0s;
    }

    .customer-love-wall__floating-emoji--2 {
      top: 50%;
      right: 8%;
      animation-delay: 5s;
    }

    .customer-love-wall__floating-emoji--3 {
      bottom: 15%;
      left: 10%;
      animation-delay: 10s;
    }

    @keyframes floatEmoji {
      0%, 100% {
        transform: translateY(0) rotate(0deg);
      }
      25% {
        transform: translateY(-30px) rotate(5deg);
      }
      50% {
        transform: translateY(-15px) rotate(-3deg);
      }
      75% {
        transform: translateY(-40px) rotate(4deg);
      }
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInScale {
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    /* RTL Support */
    [dir="rtl"] .customer-love-wall {
      direction: rtl;
    }

    [dir="rtl"] .customer-love-wall__header {
      text-align: right;
    }

    [dir="rtl"] .customer-love-wall__grid {
      direction: rtl;
    }

    [dir="rtl"] .customer-love-wall__quote {
      padding-left: 0;
      padding-right: 1.5rem;
      text-align: right;
    }

    [dir="rtl"] .customer-love-wall__quote::before {
      left: auto;
      right: 0;
    }

    [dir="rtl"] .customer-love-wall__author {
      text-align: right;
    }

    [dir="rtl"] .customer-love-wall__reactions {
      direction: rtl;
      justify-content: flex-end;
    }

    [dir="rtl"] .customer-love-wall__emoji-count {
      margin-left: 0;
      margin-right: 0.25rem;
    }

    /* Arabic Typography */
    [lang="ar"] .customer-love-wall__title {
      font-family: var(--font-primary--family);
      letter-spacing: 0;
    }

    [lang="ar"] .customer-love-wall__subtitle,
    [lang="ar"] .customer-love-wall__author {
      font-family: var(--font-primary--family);
    }

    /* Mobile Responsive */
    @media screen and (max-width: 768px) {
      .customer-love-wall {
        padding: 4rem 0;
      }

      .customer-love-wall__container {
        padding: 0 1rem;
      }

      .customer-love-wall__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .customer-love-wall__header {
        margin-bottom: 2.5rem;
      }

      .customer-love-wall__quote {
        font-size: 1.1rem;
      }

      .customer-love-wall__floating-emoji svg {
        width: 5rem;
        height: 5rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .customer-love-wall__card:hover {
        transform: translateY(-2px) scale(1);
      }

      .customer-love-wall__floating-emoji {
        animation: none;
      }
    }
/* END_SECTION:customer-love-wall */

/* START_SECTION:featured-products (INDEX:11) */
.featured-products {
      --fp-orange: #FD4C16;
      --fp-linen: #F8EEE5;
      --fp-brown: #6B2138;
      --fp-black: #1E1E1E;
      
      position: relative;
      padding: 5rem 0;
      background: transparent;
      overflow: hidden;
      
    }

    .featured-products__background-motif {
      display: none;
    }

    .featured-products__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      position: relative;
      z-index: 1;
    }

    .featured-products__header {
      text-align: center;
      margin-bottom: 3rem;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.8s ease-out 0.2s forwards;
    }

    .featured-products__headline {
      font-family: 'BIGX', Arial, sans-serif;
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 900;
      color: var(--fp-black);
      margin-bottom: 0.75rem;
      line-height: 1.2;
    }

    .featured-products__subtext {
      font-size: 1.1rem;
      color: var(--fp-black);
      opacity: 0.7;
      line-height: 1.6;
    }

    .featured-products__grid-wrapper {
      position: relative;
      margin-bottom: 2rem;
    }

    .featured-products__grid {
      display: flex;
      flex-direction: row;
      gap: 2rem;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-behavior: smooth;
      scrollbar-width: none;
      -ms-overflow-style: none;
      padding-bottom: 1rem;
      -webkit-overflow-scrolling: touch;
    }

    .featured-products__grid::-webkit-scrollbar {
      display: none;
    }

    .featured-products__arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: white;
      border: 1px solid rgba(30, 30, 30, 0.1);
      box-shadow: 0 2px 12px rgba(30, 30, 30, 0.1);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: all 0.3s ease;
      opacity: 0.7;
      pointer-events: auto;
    }

    .featured-products__grid-wrapper:hover .featured-products__arrow {
      opacity: 1;
    }

    .featured-products__arrow:hover {
      background: var(--fp-orange);
      border-color: var(--fp-orange);
      transform: translateY(-50%) scale(1.1);
    }

    .featured-products__arrow:hover svg {
      stroke: white;
    }

    .featured-products__arrow--left {
      left: -24px;
    }

    .featured-products__arrow--right {
      right: -24px;
    }

    .featured-products__arrow--hidden {
      opacity: 0 !important;
      pointer-events: none !important;
    }

    .featured-products__arrow svg {
      width: 24px;
      height: 24px;
      stroke: var(--fp-black);
      stroke-width: 2;
      transition: stroke 0.3s ease;
    }

    .featured-products__card {
      background: white;
      border-radius: 20px;
      padding: 1.5rem;
      box-shadow: 0 4px 20px rgba(30, 30, 30, 0.08);
      transition: all 0.3s ease;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.8s ease-out forwards;
      display: flex;
      flex-direction: column;
      position: relative;
      flex: 0 0 320px;
      min-width: 280px;
      max-width: 320px;
    }

    .featured-products__card:nth-child(1) { animation-delay: 0.3s; }
    .featured-products__card:nth-child(2) { animation-delay: 0.4s; }
    .featured-products__card:nth-child(3) { animation-delay: 0.5s; }
    .featured-products__card:nth-child(4) { animation-delay: 0.6s; }

    .featured-products__media {
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1;
      border-radius: 16px;
      overflow: hidden;
      background: #F4F4F4;
      margin-bottom: 1.5rem;
    }

    .featured-products__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .featured-products__image--secondary {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.25s ease;
    }

    .featured-products__media:hover .featured-products__image--secondary {
      opacity: 1;
    }

    .featured-products__title {
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--fp-black);
      margin: 0 0 0.25rem 0;
    }

    .featured-products__benefit {
      font-size: 0.95rem;
      color: var(--fp-black);
      opacity: 0.75;
      margin: 0 0 0.75rem 0;
    }

    .featured-products__price {
      font-weight: 700;
      color: var(--fp-black);
      margin-bottom: 0.5rem;
    }

    .featured-products__reassurance {
      font-size: 0.85rem;
      color: var(--fp-black);
      opacity: 0.6;
      margin: 0 0 1rem 0;
    }

    .featured-products__actions {
      display: flex;
      gap: 0.6rem;
    }

    .featured-products__button {
      appearance: none;
      border: none;
      border-radius: 999px;
      padding: 0.75rem 1.25rem;
      font-weight: 700;
      font-size: 0.95rem;
      cursor: pointer;
      transition: transform 0.1s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

    .featured-products__button--primary {
      background: var(--fp-orange);
      color: white;
    }

    .featured-products__button--primary:hover {
      transform: translateY(-1px);
    }

    .featured-products__button--secondary {
      background: white;
      color: var(--fp-black);
      border: 1px solid rgba(30, 30, 30, 0.12);
    }

    .featured-products__toast {
      position: fixed;
      bottom: 1rem;
      left: 50%;
      transform: translateX(-50%) translateY(20px);
      background: var(--fp-orange);
      color: white;
      padding: 0.75rem 1rem;
      border-radius: 10px;
      box-shadow: 0 6px 24px rgba(253, 76, 22, 0.35);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease, transform 0.25s ease;
      z-index: 20;
    }

    .featured-products__toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    /* Animations */
    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Mobile Responsive */
    @media screen and (max-width: 768px) {
      .featured-products {
        padding: 2rem 0 4rem;
        margin-top: -1rem;
      }

      .featured-products__container {
        padding: 0 1rem;
      }

      .featured-products__grid-wrapper {
        margin-left: -1rem;
        margin-right: -1rem;
        padding: 0 1rem;
      }

      .featured-products__grid {
        gap: 1.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
      }

      .featured-products__card {
        flex: 0 0 280px;
        min-width: 260px;
        max-width: 280px;
      }

      .featured-products__arrow {
        display: none;
      }
    }

    @media screen and (max-width: 480px) {
      .featured-products__card {
        padding: 1.25rem;
      }

      .featured-products__media {
        margin-bottom: 1.25rem;
      }
    }

    /* RTL Support */
    [dir="rtl"] .featured-products__container {
      direction: rtl;
    }

    [dir="rtl"] .featured-products__grid {
      direction: rtl;
      flex-direction: row-reverse;
    }

    [dir="rtl"] .featured-products__arrow--left {
      left: auto;
      right: -24px;
    }

    [dir="rtl"] .featured-products__arrow--right {
      right: auto;
      left: -24px;
    }

    /* Flip arrow icons in RTL so they point outward (correct scroll direction) */
    [dir="rtl"] .featured-products__arrow--left svg,
    [dir="rtl"] .featured-products__arrow--right svg {
      transform: scaleX(-1);
    }

    [dir="rtl"] .featured-products__benefit {
      text-align: right;
    }

    [dir="rtl"] .featured-products__benefit-icon {
      margin-right: 0;
      margin-left: 0.5rem;
    }

    [dir="rtl"] .featured-products__reassurance {
      flex-direction: row-reverse;
    }

    [dir="rtl"] .featured-products__price {
      text-align: right;
    }

    .featured-products__placeholder {
      width: 100%;
      min-height: 300px;
    }

    .featured-products__placeholder-inner {
      background: #f0f0f0;
      height: 300px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      border-radius: 12px;
      color: #666;
    }

    .featured-products__placeholder-inner svg {
      width: 48px;
      height: 48px;
      opacity: 0.6;
    }

    [dir="rtl"] .featured-products__action {
      direction: rtl;
    }

    /* Arabic Typography */
    [lang="ar"] .featured-products__headline,
    [lang="ar"] .featured-products__title {
      font-family: var(--font-primary--family);
      letter-spacing: 0;
    }

    [lang="ar"] .featured-products__subtext,
    [lang="ar"] .featured-products__benefit {
      font-family: var(--font-primary--family);
    }
/* END_SECTION:featured-products */

/* START_SECTION:footer (INDEX:12) */
.hadiha-footer {
      --footer-bg: #1E1E1E;
      --footer-text: #F8EEE5;
      --footer-orange: #FD4C16;
      --footer-brown: #6B2138;
      
      position: relative;
      background: var(--footer-bg);
      color: var(--footer-text);
      padding: 4rem 0 2rem;
      overflow: hidden;
    }

    /* Decorative top wave */
    .hadiha-footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, 
        var(--footer-orange) 0%, 
        var(--footer-brown) 50%, 
        var(--footer-orange) 100%);
    }

    .hadiha-footer__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .hadiha-footer__main {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 3rem;
      margin-bottom: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(248, 238, 229, 0.1);
    }

    /* Brand Column */
    .hadiha-footer__brand {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .hadiha-footer__logo {
      font-family: 'BIGX', Arial, sans-serif;
      font-size: 2rem;
      font-weight: 900;
      color: var(--footer-orange);
      text-decoration: none;
      margin-bottom: 0.5rem;
      display: inline-flex;
      align-items: center;
      transition: opacity 0.3s ease;
    }

    .hadiha-footer__logo:hover {
      opacity: 0.9;
    }

    .hadiha-footer__logo-image {
      height: 28px;
      width: auto;
      max-width: 120px;
      object-fit: contain;
      display: block;
    }

    .hadiha-footer__tagline {
      font-size: 1rem;
      line-height: 1.6;
      opacity: 0.8;
      margin-bottom: 1rem;
    }

    .hadiha-footer__social {
      display: flex;
      gap: 1rem;
      margin-top: 0.5rem;
    }

    .hadiha-footer__social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(248, 238, 229, 0.1);
      border-radius: 50%;
      color: var(--footer-text);
      text-decoration: none;
      transition: all 0.3s ease;
      border: 1px solid transparent;
    }

    .hadiha-footer__social-link:hover {
      background: var(--footer-orange);
      border-color: var(--footer-orange);
      transform: translateY(-3px);
    }

    /* Links Columns */
    .hadiha-footer__column {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .hadiha-footer__column-title {
      font-family: 'BIGX', Arial, sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--footer-orange);
      margin-bottom: 0.5rem;
    }

    .hadiha-footer__link {
      color: var(--footer-text);
      text-decoration: none;
      opacity: 0.8;
      transition: all 0.3s ease;
      font-size: 0.95rem;
    }

    .hadiha-footer__link:hover {
      opacity: 1;
      color: var(--footer-orange);
      transform: translateX(3px);
    }

    /* Newsletter */
    .hadiha-footer__newsletter {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .hadiha-footer__newsletter-title {
      font-family: 'BIGX', Arial, sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--footer-orange);
    }

    .hadiha-footer__newsletter-text {
      font-size: 0.9rem;
      opacity: 0.8;
      line-height: 1.5;
    }

    .hadiha-footer__newsletter-form {
      display: flex;
      gap: 0.5rem;
    }

    .hadiha-footer__newsletter-input {
      flex: 1;
      padding: 0.75rem 1rem;
      background: rgba(248, 238, 229, 0.1);
      border: 1px solid rgba(248, 238, 229, 0.2);
      border-radius: 50px;
      color: var(--footer-text);
      font-size: 0.95rem;
      transition: all 0.3s ease;
    }

    .hadiha-footer__newsletter-input::placeholder {
      color: rgba(248, 238, 229, 0.5);
    }

    .hadiha-footer__newsletter-input:focus {
      outline: none;
      border-color: var(--footer-orange);
      background: rgba(248, 238, 229, 0.15);
    }

    .hadiha-footer__newsletter-button {
      padding: 0.75rem 1.5rem;
      background: var(--footer-orange);
      color: white;
      border: none;
      border-radius: 50px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      white-space: nowrap;
    }

    .hadiha-footer__newsletter-button:hover {
      background: var(--footer-brown);
      transform: translateY(-2px);
    }

    /* Bottom Bar – centered, no padding */
    .hadiha-footer__bottom {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 2rem;
      padding: 0;
      text-align: center;
    }

    .hadiha-footer__copyright {
      font-size: 0.9rem;
      opacity: 0.6;
      text-align: center;
    }

    .hadiha-footer__copyright a,
    .hadiha-footer__copyright .hadiha-footer__brand-name {
      color: var(--footer-orange);
      text-decoration: none;
      font-weight: 700;
    }

    .hadiha-footer__payment {
      display: flex;
      gap: 1rem;
      align-items: center;
      justify-content: center;
      opacity: 0.6;
    }

    .hadiha-footer__payment svg {
      height: 24px;
      width: auto;
    }

    /* RTL Support */
    [dir="rtl"] .hadiha-footer {
      direction: rtl;
    }

    [dir="rtl"] .hadiha-footer__container {
      direction: rtl;
    }

    [dir="rtl"] .hadiha-footer__grid,
    [dir="rtl"] .hadiha-footer__main {
      direction: rtl;
    }

    [dir="rtl"] .hadiha-footer__column {
      text-align: right;
    }

    [dir="rtl"] .hadiha-footer__link {
      text-align: right;
      padding-right: 0;
    }

    [dir="rtl"] .hadiha-footer__link:hover {
      transform: translateX(-3px);
      padding-right: 1rem;
      padding-left: 0;
    }

    [dir="rtl"] .hadiha-footer__social {
      justify-content: flex-end;
    }

    [dir="rtl"] .hadiha-footer__newsletter-form {
      flex-direction: row-reverse;
    }

    [dir="rtl"] .hadiha-footer__bottom {
      direction: rtl;
    }

    [dir="rtl"] .hadiha-footer__bottom-links {
      flex-direction: row-reverse;
    }

    [dir="rtl"] .hadiha-footer__payment-icons {
      justify-content: flex-start;
    }

    /* Arabic Typography */
    [lang="ar"] .hadiha-footer__heading {
      font-family: var(--font-primary--family);
      letter-spacing: 0;
    }

    [lang="ar"] .hadiha-footer__link,
    [lang="ar"] .hadiha-footer__copyright,
    [lang="ar"] .hadiha-footer__newsletter-input::placeholder {
      font-family: var(--font-primary--family);
    }

    /* Mobile Responsive */
    @media screen and (max-width: 1024px) {
      .hadiha-footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }

      .hadiha-footer__brand {
        grid-column: 1 / -1;
      }
    }

    @media screen and (max-width: 768px) {
      .hadiha-footer {
        padding: 3rem 0 1.5rem;
      }

      .hadiha-footer__container {
        padding: 0 1rem;
      }

      .hadiha-footer__main {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
      }

      .hadiha-footer__brand {
        grid-column: 1;
      }

      .hadiha-footer__newsletter-form {
        flex-direction: column;
      }

      .hadiha-footer__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
      }

      .hadiha-footer__payment {
        flex-wrap: wrap;
        justify-content: center;
      }
    }

    @media screen and (max-width: 480px) {
      .hadiha-footer__social {
        flex-wrap: wrap;
      }
    }
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:13) */
.hadiha-header {
      --header-text: #1E1E1E;
      --header-accent: #FD4C16;
      --header-hover: #6B2138;
      --header-height: 60px;
      
      position: absolute;
      top: 3rem;
    
      transform: none;
      width: min(800px, calc(100% - 3rem));
      max-width: none;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      z-index: 1000;
      border-radius: 50px;
      border: 1px solid rgba(30, 30, 30, 0.06);
      box-shadow: 0 8px 32px rgba(30, 30, 30, 0.12);
      transition: all 0.3s ease;
      justify-self: center;
    }

    .hadiha-header__container {
      margin: 0;
      padding: 0.6rem 1.5rem;
      height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
      gap: 1.5rem;
    }

    .hadiha-header__logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      color: var(--header-text);
      font-family: 'BIGX', Arial, sans-serif;
      font-size: 1.4rem;
      font-weight: 900;
      letter-spacing: -0.5px;
      transition: all 0.3s ease;
      flex-shrink: 0;
    }

    .hadiha-header__logo:hover {
      color: var(--header-accent);
    }

    .hadiha-header__logo-image {
      height: 18px;
      width: auto;
      max-width: 64px;
      object-fit: contain;
      transition: all 0.3s ease;
    }

    .hadiha-header__logo:hover .hadiha-header__logo-image {
      transform: scale(1.05);
    }

    .hadiha-header__logo-icon {
      width: 32px;
      height: 32px;
      background: linear-gradient(135deg, #FD4C16 0%, #ff6b3d 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 0.6rem;
      color: white;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(253, 76, 22, 0.3);
    }

    .hadiha-header__logo-icon svg {
      width: 18px;
      height: 18px;
    }

    .hadiha-header__logo:hover .hadiha-header__logo-icon {
      transform: rotate(-8deg) scale(1.05);
      box-shadow: 0 6px 16px rgba(253, 76, 22, 0.4);
    }

    .hadiha-header__nav {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex: 1;
      justify-content: center;
    }

    /* Hide mobile navigation language switcher on desktop */
    .hadiha-header__nav-lang {
      display: none;
    }

    .hadiha-header__nav-link {
    position: relative;
    text-decoration: none !important;
      color: var(--header-text);
      font-weight: 500;
      font-size: 0.9rem;
      padding: 0.4rem 0;
      transition: all 0.3s ease;
      opacity: 0.8;
      border-bottom: none !important;
      -webkit-tap-highlight-color: transparent;
    }

    /* Prevent any dash/underline under nav links (desktop + tablet) */
    .hadiha-header__nav-link::after {
      display: none !important;
      content: none !important;
    }

    .hadiha-header__nav-link:hover,
    .hadiha-header__nav-link.active {
      color: var(--header-accent);
      opacity: 1;
    }

    .hadiha-header__actions {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-shrink: 0;
    }

    /* Language Selector Form */
    .hadiha-header__localization-form {
      margin: 0;
      display: flex !important;
      visibility: visible;
      opacity: 1;
    }

    .hadiha-header__lang-toggle {
      display: flex !important;
      background: #F8F9FA;
      border-radius: 25px;
      padding: 0.25rem;
      gap: 0.2rem;
      border: 1px solid #E9ECEF;
      align-items: center;
      visibility: visible;
      opacity: 1;
    }

    .hadiha-header__lang-btn {
      padding: 0.4rem 0.8rem;
      border: none;
      background: transparent;
      color: var(--header-text);
      border-radius: 20px;
      cursor: pointer;
      font-weight: 500;
      font-size: 0.85rem;
      transition: all 0.3s ease;
      min-width: 40px;
      opacity: 0.7;
    }

    .hadiha-header__lang-btn.active {
      background: white;
      color: var(--header-text);
      box-shadow: 0 2px 4px rgba(30, 30, 30, 0.1);
      opacity: 1;
    }

    .hadiha-header__lang-btn:hover:not(.active) {
      background: rgba(253, 76, 22, 0.1);
      opacity: 1;
    }

    .hadiha-header__icon-btn {
      position: relative;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #E9ECEF;
      border-radius: 50%;
      background: white;
      color: var(--header-text);
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      box-shadow: 0 2px 4px rgba(30, 30, 30, 0.05);
      opacity: 0.8;
    }

    .hadiha-header__icon-btn:hover {
      background: var(--header-accent);
      border-color: var(--header-accent);
      color: white;
      opacity: 1;
      transform: translateY(-1px);
      box-shadow: 0 4px 8px rgba(253, 76, 22, 0.2);
    }

    .hadiha-header__icon-btn svg {
      width: 18px;
      height: 18px;
    }

    .hadiha-header__cart-count {
      position: absolute;
      top: -5px;
      right: -5px;
      background: var(--header-accent);
      color: white;
      font-size: 0.75rem;
      font-weight: 700;
      min-width: 20px;
      height: 20px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 0.35rem;
      animation: cartBounce 0.5s ease;
    }

    @keyframes cartBounce {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.2); }
    }

    .hadiha-header__mobile-toggle {
      display: none;
      width: 45px;
      height: 45px;
      border: none;
      background: transparent;
      cursor: pointer;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      padding: 0;
    }

    .hadiha-header__mobile-toggle span {
      display: block;
      width: 25px;
      height: 3px;
      background: var(--header-text);
      border-radius: 2px;
      transition: all 0.3s ease;
      box-shadow: 0 2px 5px rgba(30, 30, 30, 0.2);
    }

    .hadiha-header.scrolled .hadiha-header__mobile-toggle span {
      box-shadow: none;
    }

    .hadiha-header__mobile-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translateY(8px);
    }

    .hadiha-header__mobile-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .hadiha-header__mobile-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translateY(-8px);
    }

    /* RTL Support */
    [dir="rtl"] .hadiha-header__logo-icon {
      margin-right: 0;
      margin-left: 0.75rem;
    }

    [dir="rtl"] .hadiha-header__cart-count {
      right: auto;
      left: -5px;
    }

    /* Mobile Responsive */
    @media screen and (max-width: 968px) {
      .hadiha-header {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        width: auto;
        max-width: none;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        justify-self: auto;
      }
      
      .hadiha-header__container {
        padding: 0.75rem 1rem;
        justify-content: center;
        position: relative;
      }

      .hadiha-header__logo {
        font-size: 1rem;
        color: #1E1E1E;
      }

      .hadiha-header__logo-image {
        height: 20px;
        max-width: 64px;
      }

      .hadiha-header__logo-icon {
        width: 24px;
        height: 24px;
        margin-right: 0.5rem;
        background: #FD4C16;
        color: white;
      }

      .hadiha-header__logo-icon svg {
        width: 14px;
        height: 14px;
      }

      .hadiha-header__mobile-toggle {
        display: flex;
    position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
      }

      .hadiha-header__mobile-toggle span {
        background: #1E1E1E;
        box-shadow: none;
      }

      .hadiha-header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        gap: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s ease;
        z-index: 999;
      }

      .hadiha-header__nav.active {
        transform: translateY(0);
        opacity: 1;
      }

      .hadiha-header__nav-link {
        font-size: 1.5rem;
        font-weight: 600;
        width: auto;
        padding: 1rem 2rem;
        text-align: center;
        color: #1E1E1E;
        border-radius: 50px;
        background: rgba(248, 238, 229, 0.5);
        border: 2px solid transparent;
        transition: all 0.3s ease;
        position: relative;
    overflow: hidden;
      }

      .hadiha-header__nav-link::after {
        display: none;
      }

      .hadiha-header__nav-link::before {
        content: '';
        position: absolute;
        inset: 0;
        background: #FD4C16;
        border-radius: 50px;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
      }

      .hadiha-header__nav-link:hover::before,
      .hadiha-header__nav-link.active::before {
        opacity: 1;
      }

      .hadiha-header__nav-link:hover,
      .hadiha-header__nav-link.active {
        color: white;
        transform: translateY(-2px);
      }

      /* Mobile Navigation Language Switcher */
      .hadiha-header__nav-lang {
        display: block;
        padding: 1.5rem 2rem;
        border-top: 1px solid rgba(248, 238, 229, 0.2);
        margin-top: 1rem;
      }

      .hadiha-header__nav-lang-form {
        margin: 0;
        display: flex;
        gap: 0.5rem;
        justify-content: center;
      }

      .hadiha-header__nav-lang-btn {
        padding: 0.5rem 1rem;
        border: 2px solid rgba(253, 76, 22, 0.3);
        background: transparent;
        color: #1E1E1E;
        border-radius: 20px;
        cursor: pointer;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        min-width: 50px;
      }

      .hadiha-header__nav-lang-btn:hover {
        background: rgba(253, 76, 22, 0.1);
        border-color: rgba(253, 76, 22, 0.5);
        transform: translateY(-1px);
      }

      .hadiha-header__nav-lang-btn.active {
        background: #FD4C16;
        color: white;
        border-color: #FD4C16;
      }

      .hadiha-header__nav-lang-btn.active:hover {
        background: #E63E0F;
        border-color: #E63E0F;
      }

      .hadiha-header__actions {
    display: flex;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        gap: 0.4rem;
        align-items: center;
      }

      .hadiha-header__lang-toggle {
        display: none;
      }

      .hadiha-header__icon-btn {
        width: 36px;
        height: 36px;
        background: rgba(248, 238, 229, 0.5);
        border-radius: 50%;
        transition: all 0.3s ease;
      }

      .hadiha-header__icon-btn:hover {
        background: #FD4C16;
        transform: translateY(-2px);
      }

      .hadiha-header__icon-btn:hover svg {
        color: white;
      }

      .hadiha-header__icon-btn svg {
        width: 18px;
        height: 18px;
        color: #1E1E1E;
        transition: color 0.3s ease;
      }

      /* RTL adjustments for mobile */
      [dir="rtl"] .hadiha-header__logo-icon {
        margin-right: 0;
        margin-left: 0.5rem;
      }

      [dir="rtl"] .hadiha-header__nav-lang-form {
        flex-direction: row-reverse;
      }

      [dir="rtl"] .hadiha-header__mobile-toggle {
        left: auto;
        right: 1rem;
      }

      [dir="rtl"] .hadiha-header__actions {
        right: auto;
        left: 1rem;
      }

    }

    @media screen and (max-width: 480px) {
      .hadiha-header {
        top: 0.75rem;
        right: 0.75rem;
        left: 0.75rem;
        border-radius: 18px;
        justify-self: auto;
      }
      
      .hadiha-header__container {
        padding: 0.6rem 0.8rem;
        justify-content: center;
      }

      .hadiha-header__logo {
        font-size: 0.9rem;
      }

      .hadiha-header__logo-image {
        height: 16px;
        max-width: 56px;
      }

      .hadiha-header__logo-icon {
        width: 20px;
        height: 20px;
        margin-right: 0.4rem;
      }

      .hadiha-header__logo-icon svg {
        width: 12px;
        height: 12px;
      }

      .hadiha-header__actions {
        gap: 0.3rem;
      }

      .hadiha-header__lang-toggle {
        padding: 0.15rem;
        border-radius: 16px;
      }

      .hadiha-header__lang-btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
        min-width: 24px;
        border-radius: 12px;
      }
      
      .hadiha-header__icon-btn {
        width: 32px;
        height: 32px;
      }
      
      .hadiha-header__icon-btn svg {
        width: 16px;
        height: 16px;
      }

      .hadiha-header__nav-link {
        font-size: 1.3rem;
        padding: 0.8rem 1.5rem;
      }
    }
/* END_SECTION:header */

/* START_SECTION:hello-world (INDEX:14) */
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
/* END_SECTION:hello-world */

/* START_SECTION:hero_hadiha (INDEX:15) */
/* Ball decorations container */
    .hero-hadiha .ball-decorations {
      z-index: 0;
      opacity: 0.15;
    }
    
    .hero-hadiha .ball-decoration {
      /* Balls inherit snippet styles, just adjust overall section opacity */
    }
    .hero-hadiha {
      --text-color: #FFFFFF;
      --primary-button: #1E1E1E;
      --primary-hover: #6B2138;
      --secondary-outline: #FFFFFF;
      --accent-color: #FFFFFF;
      
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      {% unless request.locale.iso_code == 'ar' and section.settings.background_image_ar or section.settings.background_image_en %}
      background: url('https://images.unsplash.com/photo-1544027993-37dbfe43562a?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
      {% endunless %}
      background-size: cover;
      background-position: center;
      overflow: hidden;
      padding: 8rem 0 0;
    }

    .hero-hadiha::after {
      display: none;
    }

    .hero-hadiha__container {
      max-width: 1200px;
      margin: 80px auto;
      padding: 0 2rem;
      width: 100%;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      min-height: 70vh;
    }

    .hero-hadiha__content {
      z-index: 2;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.8s ease-out 0.3s forwards;
      max-width: 550px;
      width: 100%;
      text-align: left;
      margin-right: auto;
    }

    .hero-hadiha__content[dir="rtl"] {
      text-align: right;
    }

    .hero-hadiha__logo {
      margin-bottom: 1.5rem;
      text-align: center;
    }

    .hero-hadiha__logo-image {
      max-height: 60px;
      max-width: 200px;
      width: auto;
      height: auto;
      object-fit: contain;
    }

    .hero-hadiha__headline {
      font-family: 'BIGX', Arial, sans-serif;
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 900;
      color: var(--text-color);
      line-height: 1.2;
      margin-bottom: 1.5rem;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.6s ease-out 0.5s forwards;
    }

    .hero-hadiha__subheadline {
      font-size: clamp(1.1rem, 2vw, 1.3rem);
      color: var(--text-color);
      margin-bottom: 1rem;
      opacity: 0.8;
      font-weight: 400;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.6s ease-out 0.7s forwards;
    }

    .hero-hadiha__microcopy {
      font-size: 1rem;
      color: var(--text-color);
      opacity: 0.7;
      margin-bottom: 2.5rem;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.6s ease-out 0.9s forwards;
      line-height: 1.6;
    }

    .hero-hadiha__buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.6s ease-out 1.1s forwards;
    }

    .hero-hadiha__button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1rem 2rem;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      min-height: 48px;
      font-size: 0.95rem;
      border: 2px solid transparent;
    }

    .hero-hadiha__button--primary {
      background: var(--primary-button);
      color: white;
      box-shadow: 0 4px 15px rgba(253, 76, 22, 0.3);
    }

    .hero-hadiha__button--primary:hover {
      background: var(--primary-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(253, 76, 22, 0.4);
    }

    .hero-hadiha__button--secondary {
      background: transparent;
      color: var(--accent-color);
      border: 2px solid var(--secondary-outline);
    }

    .hero-hadiha__button--secondary:hover {
      background: var(--accent-color);
      color: var(--primary-button);
      transform: translateY(-2px);
    }

    .hero-hadiha__button::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width 0.6s ease, height 0.6s ease;
    }

    .hero-hadiha__button:hover::before {
      width: 300px;
      height: 300px;
    }


    .hero-hadiha__background-motif {
      display: none;
    }

    .hero-hadiha__scroll-cue {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      color: #FFFFFF;
      font-size: 0.9rem;
      opacity: 0.9;
      animation: bounce 2s ease-in-out infinite;
      cursor: pointer;
      background: rgba(0, 0, 0, 0.2);
      padding: 0.5rem 1rem;
      border-radius: 25px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      z-index: 2;
    }

    .hero-hadiha__scroll-cue::after {
      content: '↓';
      display: block;
      text-align: center;
      margin-top: 0.5rem;
      font-size: 1.2rem;
    }

    .hero-hadiha__language-toggle {
      display: none;
    }

    .hero-hadiha__lang-btn {
      padding: 0.5rem 1rem;
      border: none;
      background: transparent;
      color: var(--text-color);
      border-radius: 20px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 600;
      min-width: 48px;
    }

    .hero-hadiha__lang-btn.active {
      background: var(--primary-button);
      color: white;
    }

    .hero-hadiha__lang-btn:hover:not(.active) {
      background: rgba(248, 238, 229, 0.2);
    }

    /* Animations */
    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(-10px); }
    }

    /* RTL Support – prevent Arabic text cut-off on the right */
    [dir="rtl"] .hero-hadiha__container {
      direction: rtl;
      justify-content: flex-end;
      padding-left: 2rem;
      padding-right: 3rem;
    }

    [dir="rtl"] .hero-hadiha__content {
      text-align: right;
      margin-left: auto;
      margin-right: 0;
      padding-inline-start: 1rem;
      max-width: 100%;
      overflow-wrap: break-word;
    }

    [dir="rtl"] .hero-hadiha__headline,
    [dir="rtl"] .hero-hadiha__subheadline,
    [dir="rtl"] .hero-hadiha__microcopy {
      overflow-wrap: break-word;
      word-wrap: break-word;
    }

    [dir="rtl"] .hero-hadiha__buttons {
      justify-content: flex-end;
      flex-direction: row-reverse;
    }

    [dir="rtl"] .hero-hadiha__button-primary .hero-hadiha__button-icon {
      margin-left: 0;
      margin-right: 0.5rem;
    }

    [dir="rtl"] .hero-hadiha__language-toggle {
      right: auto;
      left: 2rem;
    }

    [dir="rtl"] .hero-hadiha__decorative-phrases {
      right: auto;
      left: 5%;
    }

    /* Arabic Typography */
    [lang="ar"] .hero-hadiha__headline,
    [lang="ar"] .hero-hadiha__subheadline,
    [lang="ar"] .hero-hadiha__microcopy {
      font-family: var(--font-primary--family);
    }

    /* Mobile Responsive */
    @media screen and (max-width: 768px) {
      .hero-hadiha {
        padding: 5rem 0 4rem;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .hero-hadiha::after {
        display: none;
      }
      
      .hero-hadiha__container {
        padding: 0 1rem;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: auto;
        width: 100%;
      }

      .hero-hadiha__content {
        padding: 2.5rem 2rem;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        margin: 0;
        text-align: center;
        max-width: 100%;
        width: 100%;
        /* Override desktop animations */
        opacity: 1 !important;
        transform: translateY(0) !important;
        animation: fadeInUp 0.8s ease-out;
      }

      .hero-hadiha__logo {
        margin-bottom: 1.5rem;
      }

      .hero-hadiha__logo-image {
        max-height: 50px;
        max-width: 160px;
      }

      .hero-hadiha__headline {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        color: #1E1E1E;
        font-weight: 900;
        /* Override desktop animations */
        opacity: 1 !important;
        transform: translateY(0) !important;
        animation: none;
      }

      .hero-hadiha__subheadline {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
        color: #1E1E1E;
        /* Override desktop animations */
        opacity: 0.85 !important;
        transform: translateY(0) !important;
        animation: none;
      }

      .hero-hadiha__microcopy {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        color: #1E1E1E;
        /* Override desktop animations */
        opacity: 0.75 !important;
        transform: translateY(0) !important;
        animation: none;
      }

      .hero-hadiha__buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
        /* Override desktop animations */
        opacity: 1 !important;
        transform: translateY(0) !important;
        animation: none;
      }

      .hero-hadiha__button {
        width: 100%;
        max-width: 280px;
        padding: 1.2rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s ease;
      }

      .hero-hadiha__button--primary {
        background: #FD4C16;
        color: white;
        border: none;
        box-shadow: 0 6px 20px rgba(253, 76, 22, 0.3);
      }

      .hero-hadiha__button--primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(253, 76, 22, 0.4);
      }

      .hero-hadiha__button--secondary {
        background: transparent;
        color: #1E1E1E;
        border: 2px solid #1E1E1E;
      }

      .hero-hadiha__button--secondary:hover {
        background: #1E1E1E;
        color: white;
        transform: translateY(-2px);
      }

      /* Hide decorative elements on mobile for cleaner look */
      .hero-hadiha .ball-decorations {
        opacity: 0.1;
      }

      .hero-hadiha__language-toggle {
        top: 1rem;
        right: 1rem;
        z-index: 10;
      }

      [dir="rtl"] .hero-hadiha__content {
        text-align: center;
      }

      [dir="rtl"] .hero-hadiha__language-toggle {
        right: auto;
        left: 1rem;
      }
    }
/* END_SECTION:hero_hadiha */

/* START_SECTION:phrase-strip (INDEX:18) */
.phrase-strip {
      --ps-orange: #FD4C16;
      --ps-brown: #6B2138;
      --ps-black: #1E1E1E;
      --ps-linen: #F8EEE5;
      
      position: relative;
      padding: 1.5rem 0;
      background: var(--ps-orange);
      overflow: hidden;
      z-index: 1;
      /* Isolate from document RTL so marquee layout/animation are always the same */
      direction: ltr;
    }

    .phrase-strip__track {
      display: flex;
      flex-shrink: 0;
      gap: 3rem;
      animation: marquee 40s linear infinite;
      will-change: transform;
      direction: ltr;
    }

    .phrase-strip__track--paused {
      animation-play-state: paused;
    }

    .phrase-strip__phrase {
      font-family: var(--font-primary--family);
      font-size: clamp(1rem, 2vw, 1.5rem);
      font-weight: 900;
      color: white;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 1rem;
      direction: ltr;
      flex-shrink: 0;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    /* Arabic phrases: RTL text only inside the phrase, strip scroll unchanged */
    .phrase-strip--ar .phrase-strip__phrase {
      direction: rtl;
    }

    .phrase-strip__separator {
      display: inline-block;
      width: 6px;
      height: 6px;
      background: white;
      border-radius: 50%;
      opacity: 0.5;
      flex-shrink: 0;
      align-self: center;
    }

    /* Wrapper holds track at full content width so -50% = one full set for seamless loop */
    .phrase-strip__wrapper {
      display: flex;
      direction: ltr;
      width: max-content;
    }

    @keyframes marquee {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    /* Hover pause effect */
    .phrase-strip:hover .phrase-strip__track {
      animation-play-state: paused;
    }

    /* Background pattern */
    .phrase-strip::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
      pointer-events: none;
      z-index: -1;
    }

    /* Add subtle wave effect on top and bottom */
    .phrase-strip::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 20%, 
        rgba(255, 255, 255, 0.3) 80%, 
        transparent 100%);
    }

    /* Mobile Responsive */
    @media screen and (max-width: 768px) {
      .phrase-strip {
        padding: 1.25rem 0;
      }

      .phrase-strip__phrase {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
        gap: 0.75rem;
      }

      .phrase-strip__track {
        gap: 2rem;
        animation-duration: 30s;
      }

      .phrase-strip__separator {
        width: 5px;
        height: 5px;
      }
    }

    /* Respect reduced motion */
    @media (prefers-reduced-motion: reduce) {
      .phrase-strip__track {
        animation: none;
      }
    }

    /* Arabic Typography */
    [lang="ar"] .phrase-strip__phrase {
      font-family: var(--font-primary--family);
      letter-spacing: 0;
    }
/* END_SECTION:phrase-strip */

/* START_SECTION:product (INDEX:19) */
.product-page {
    background: #FFFFFF;
    padding: 8rem 0 4rem 0;
    min-height: 100vh;
  }

  .product-page__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  /* Main Layout */
  .product-page__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
  }

  /* Media Gallery */
  .product-media__main {
    position: relative;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #F8EEE5 0%, #FFF5F0 100%);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  .product-media__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .product-media__image:hover {
    transform: scale(1.05);
  }

  .product-media__video {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .product-media__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Thumbnails */
  .product-media__thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 1rem;
  }

  .product-media__thumb {
    aspect-ratio: 1 / 1;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    padding: 0;
    position: relative;
  }

  .product-media__thumb:hover,
  .product-media__thumb.active {
    border-color: #FD4C16;
    transform: scale(1.05);
  }

  .product-media__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-media__thumb-video {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .product-media__thumb-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-media__play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(253, 76, 22, 0.9);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
  }

  /* Product Info */
  .product-info__header {
    margin-bottom: 2rem;
  }

  .product-info__title {
    font-family: 'BIGX', var(--font-heading-family);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #1E1E1E;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -1px;
  }

  .product-info__price {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .product-info__price--regular {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E1E1E;
    background: linear-gradient(135deg, #F8EEE5 0%, #FFF5F0 100%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
  }

  .product-info__price--compare {
    font-size: 1.25rem;
    color: #1E1E1E;
    opacity: 0.5;
    text-decoration: line-through;
  }

  .product-info__price--sale {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #FD4C16 0%, #FF6B3D 100%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(253, 76, 22, 0.3);
  }

  .product-info__save {
    background: #E8F5E8;
    color: #2D5A2D;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
  }

  .product-info__description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #1E1E1E;
    opacity: 0.8;
    margin-bottom: 2.5rem;
  }

  /* Product Form */
  .product-form {
    margin-bottom: 2.5rem;
  }

  .product-form__label {
    display: block;
    font-weight: 600;
    color: #1E1E1E;
    margin-bottom: 0.75rem;
    font-size: 1rem;
  }

  .product-form__option {
    margin-bottom: 1.5rem;
  }

  .product-form__option-values {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .product-form__option-values input[type="radio"] {
    display: none;
  }

  .product-form__option-value {
    padding: 0.75rem 1.5rem;
    border: 2px solid #E5E5E5;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    background: #FFFFFF;
  }

  .product-form__option-values input[type="radio"]:checked + .product-form__option-value {
    border-color: #FD4C16;
    background: #FD4C16;
    color: white;
  }

  .product-form__option-value:hover {
    border-color: #FD4C16;
  }

  /* Actions */
  .product-form__actions {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: end;
  }

  .product-form__quantity {
    min-width: 120px;
  }

  .quantity-input {
    display: flex;
    border: 2px solid #E5E5E5;
    border-radius: 25px;
    overflow: hidden;
    background: white;
  }

  .quantity-input__btn {
    width: 40px;
    height: 50px;
    border: none;
    background: #F8EEE5;
    color: #1E1E1E;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .quantity-input__btn:hover {
    background: #FD4C16;
    color: white;
  }

  .quantity-input__field {
    flex: 1;
    border: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    padding: 0;
    background: white;
  }

  .quantity-input__field:focus {
    outline: none;
  }

  .product-form__add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #FD4C16 0%, #FF6B3D 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(253, 76, 22, 0.3);
    position: relative;
    overflow: hidden;
  }

  .product-form__add-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
  }

  .product-form__add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(253, 76, 22, 0.4);
  }

  .product-form__add-btn:hover::before {
    left: 100%;
  }

  .product-form__add-btn:disabled {
    background: #CCCCCC;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }

  .product-form__add-btn:disabled::before {
    display: none;
  }

  /* Features */
  .product-info__features {
    padding: 2rem;
    background: linear-gradient(135deg, #F8EEE5 0%, #FFF5F0 100%);
    border-radius: 20px;
    margin-top: 2rem;
  }

  .product-info__features-title {
    font-family: 'BIGX', var(--font-heading-family);
    font-size: 1.25rem;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 1.5rem;
  }

  .product-features {
    display: grid;
    gap: 1rem;
  }

  .product-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .product-feature__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
  }

  .product-feature__icon--svg {
    color: #FD4C16;
  }

  .product-feature__icon--svg svg {
    width: 24px;
    height: 24px;
  }

  .product-feature__text {
    font-weight: 600;
    color: #1E1E1E;
  }

  /* Product Video */
  .product-video {
    background: #F8EEE5;
    padding: 4rem 0;
    margin-top: 4rem;
  }

  .product-video__title {
    font-family: 'BIGX', var(--font-heading-family);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #1E1E1E;
    text-align: center;
    margin-bottom: 2rem;
  }

  .product-video__wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .product-video__iframe,
  .product-video__native {
    width: 100%;
    height: 100%;
  }

  /* Mobile Responsive */
  @media screen and (max-width: 768px) {
    .product-page {
      padding: 4rem 0 2rem 0;
    }

    .product-page__container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .product-form__actions {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .product-info__price {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .product-media__thumbnails {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  /* RTL Support */
  [dir="rtl"] .product-page__container {
    direction: rtl;
  }

  [dir="rtl"] .product-form__actions {
    direction: rtl;
  }
/* END_SECTION:product */

/* START_SECTION:search (INDEX:20) */
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }

  .search-result__price .money-riyal {
    margin-left: 0.25rem;
  }
/* END_SECTION:search */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:21) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:22) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:image (INDEX:25) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */

/* START_SNIPPET:money-riyal-styles (INDEX:27) */
.money-riyal {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
  }

  .money-riyal__icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    flex-shrink: 0;
  }

  .money-riyal__icon-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
  }
/* END_SNIPPET:money-riyal-styles */