:root {
        --bg: #f4f6f9;
        --header-bg: rgba(255, 255, 255, 0.92);
        --surface: rgba(15, 23, 42, 0.06);
        --text: #0f172a;
        --muted: #64748b;
        --accent: #d97706;
        --accent-hover: #ea580c;
        --border: rgba(15, 23, 42, 0.08);
        --ease-smooth: cubic-bezier(0.33, 1, 0.68, 1);
      }

      *,
      *::before,
      *::after {
        box-sizing: border-box;
      }

           html {
        overflow-x: hidden;
        max-width: 100%;
        -webkit-text-size-adjust: 100%;
        scroll-behavior: smooth;
      }

      @media (prefers-reduced-motion: reduce) {
        html {
          scroll-behavior: auto;
        }

        .product-card,
        .hero__item img,
        .whatsapp-float,
        .nav-cta,
        .cod-form__submit,
        .cod-form__wa {
          transition: none !important;
        }

        .product-card:hover {
          transform: none;
        }

        .hero__item:hover img {
          transform: none;
        }

        .whatsapp-float:hover {
          --lift: 0px;
        }
      }

      ::selection {
        background: rgba(217, 119, 6, 0.22);
        color: var(--text);
      }

      body {
        margin: 0;
        font-family: "Cairo", system-ui, sans-serif;
        background-color: var(--bg);
        background-image:
          radial-gradient(
            ellipse 140% 90% at 50% -35%,
            rgba(217, 119, 6, 0.07),
            transparent 52%
          ),
          linear-gradient(180deg, #eef1f6 0%, var(--bg) 38%, #f7f9fc 100%);
        color: var(--text);
        min-height: 100vh;
        color-scheme: light;
        word-wrap: break-word;
        overflow-wrap: anywhere;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
      }

      img {
        max-width: 100%;
        height: auto;
      }

      .site-header {
        position: sticky;
        top: 0;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
        padding: 1rem clamp(1rem, 4vw, 2.5rem);
        padding-top: max(1rem, env(safe-area-inset-top, 0px));
        padding-left: max(clamp(1rem, 4vw, 2.5rem), env(safe-area-inset-left, 0px));
        padding-right: max(
          clamp(1rem, 4vw, 2.5rem),
          env(safe-area-inset-right, 0px)
        );
        max-width: 100%;
        min-width: 0;
        background: linear-gradient(
          180deg,
          var(--header-bg) 0%,
          rgba(255, 255, 255, 0.88) 100%
        );
        box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
      }

      /* RTL: أول عنصر يظهر يميناً — الشعار */
      .brand {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        text-decoration: none;
      }

      .brand img {
        height: clamp(40px, 8vw, 52px);
        max-width: min(180px, 100%);
        width: auto;
        display: block;
      }

      /* القائمة على اليسار */
      .nav {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        gap: clamp(0.35rem, 1.2vw, 0.75rem);
        justify-content: flex-end;
        white-space: nowrap;
      }

      .nav-link {
        font-family: "Cairo", sans-serif;
        font-weight: 600;
        font-size: clamp(0.875rem, 2vw, 1rem);
        color: var(--text);
        text-decoration: none;
        padding: 0.5rem 0.65rem;
        border-radius: 8px;
        transition: color 0.2s ease, background 0.2s ease;
      }

      .nav-link:hover {
        color: var(--accent);
        background: var(--surface);
      }

      .nav-link:focus-visible,
      .nav-cta:focus-visible,
      .brand:focus-visible,
      .product-card__title-link:focus-visible,
      .product-card__media-link:focus-visible,
      .product-card__cta-full:focus-visible,
      .site-footer__link:focus-visible,
      .lp-back:focus-visible,
      .lp-related__all-products a:focus-visible,
      .whatsapp-float:focus-visible {
        outline: 3px solid rgba(217, 119, 6, 0.55);
        outline-offset: 2px;
      }

      .nav-cta:focus-visible,
      .whatsapp-float:focus-visible {
        outline-color: rgba(252, 211, 77, 0.9);
      }

      .nav-cta {
        font-family: "Cairo", sans-serif;
        font-weight: 700;
        font-size: clamp(0.875rem, 2vw, 1rem);
        color: #fff;
        background: linear-gradient(135deg, #dc2626, #b91c1c);
        border: none;
        padding: 0.55rem 1.25rem;
        border-radius: 999px;
        cursor: pointer;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.15s ease, box-shadow 0.2s ease;
        box-shadow: 0 4px 14px rgba(185, 28, 28, 0.38);
      }

      .nav-cta:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(185, 28, 28, 0.48);
        background: linear-gradient(135deg, #ef4444, #dc2626);
      }

      .nav-cta:active {
        transform: translateY(0);
      }

      @media (max-width: 768px) {
        .site-header {
          flex-direction: column;
          align-items: stretch;
          justify-content: center;
          gap: 0.75rem;
          padding-left: max(
            clamp(0.75rem, 4vw, 1.25rem),
            env(safe-area-inset-left, 0px)
          );
          padding-right: max(
            clamp(0.75rem, 4vw, 1.25rem),
            env(safe-area-inset-right, 0px)
          );
          padding-top: max(0.75rem, env(safe-area-inset-top, 0px));
        }

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

        .nav {
          width: 100%;
          display: flex;
          flex-wrap: nowrap;
          align-items: center;
          justify-content: center;
          white-space: normal;
          gap: 0.35rem 0.45rem;
          overflow-x: auto;
          scrollbar-width: none;
          -webkit-overflow-scrolling: touch;
          padding-bottom: 0.15rem;
        }

        .nav::-webkit-scrollbar {
          height: 0;
        }

        .nav-link,
        .nav-cta {
          font-size: clamp(0.68rem, 2.8vw, 0.85rem);
          padding: 0.4rem 0.5rem;
        }

        .nav-cta {
          padding-inline: 0.65rem;
        }
      }

      .visually-hidden {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
      }

      .skip-link {
        position: absolute;
        top: -120px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        padding: 0.65rem 1.15rem;
        font-family: "Cairo", sans-serif;
        font-weight: 700;
        font-size: 0.9rem;
        color: #fff;
        text-decoration: none;
        background: #0f172a;
        border-radius: 10px;
        box-shadow: 0 6px 24px rgba(15, 23, 42, 0.35);
        transition: top 0.2s ease;
      }

      .skip-link:focus {
        top: max(0.65rem, env(safe-area-inset-top, 0px));
        outline: 3px solid rgba(217, 119, 6, 0.65);
        outline-offset: 2px;
      }

      main {
        padding: clamp(0.75rem, 3vw, 1.5rem);
        padding-left: max(
          clamp(0.75rem, 3vw, 1.5rem),
          env(safe-area-inset-left, 0px)
        );
        padding-right: max(
          clamp(0.75rem, 3vw, 1.5rem),
          env(safe-area-inset-right, 0px)
        );
        max-width: 100%;
        min-width: 0;
      }

      .hero {
        margin: 0 auto;
        max-width: min(100%, 48rem);
        min-width: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: clamp(0.875rem, 2.5vw, 1.5rem);
      }

      @media (min-width: 900px) {
        .hero {
          flex-direction: row;
          align-items: stretch;
          gap: clamp(1rem, 2.5vw, 1.5rem);
          max-width: min(100%, 84rem);
        }

        .hero__item {
          flex: 1 1 0;
          min-width: 0;
          aspect-ratio: 4 / 3;
        }
      }

      .hero__item {
        margin: 0;
        aspect-ratio: 16 / 9;
        border-radius: clamp(14px, 4vw, 22px);
        overflow: hidden;
        box-shadow:
          0 8px 32px rgba(15, 23, 42, 0.08),
          0 0 0 1px rgba(15, 23, 42, 0.04);
        line-height: 0;
      }

      .hero__item img {
        width: 100%;
        max-width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
        transition: transform 0.55s var(--ease-smooth);
      }

      @media (max-width: 767px) {
        .hero__item {
          aspect-ratio: auto;
        }

        .hero__item img {
          height: auto;
          object-fit: contain;
        }
      }

      @media (hover: hover) and (pointer: fine) {
        .hero__item:hover img {
          transform: scale(1.03);
        }
      }

      .announcement-bar {
        margin-top: clamp(1rem, 3vw, 1.5rem);
        margin-inline: 0;
        width: 100%;
        max-width: 100%;
        padding-top: clamp(0.65rem, 2vw, 0.85rem);
        padding-bottom: clamp(0.65rem, 2vw, 0.85rem);
        padding-left: max(
          clamp(0.75rem, 4vw, 1.5rem),
          env(safe-area-inset-left, 0px)
        );
        padding-right: max(
          clamp(0.75rem, 4vw, 1.5rem),
          env(safe-area-inset-right, 0px)
        );
        background: linear-gradient(135deg, #c81e1e 0%, #b91c1c 42%, #7f1d1d 100%);
        color: #fff;
        font-family: "Cairo", sans-serif;
        font-weight: 600;
        font-size: clamp(0.62rem, 2.6vw, 1rem);
        line-height: 1.45;
        box-shadow:
          0 4px 20px rgba(185, 28, 28, 0.28),
          inset 0 1px 0 rgba(255, 255, 255, 0.14);
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
      }

      .announcement-bar::-webkit-scrollbar {
        height: 0;
      }

      .announcement-bar__inner {
        width: max-content;
        margin-inline: auto;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 0.35rem 0.55rem;
        text-align: center;
      }

      .announcement-bar__item {
        flex-shrink: 0;
        white-space: nowrap;
      }

      @media (min-width: 640px) {
        .announcement-bar {
          overflow-x: visible;
        }

        .announcement-bar__inner {
          max-width: min(100%, 72rem);
        }
      }

      @media (max-width: 639px) {
        .announcement-bar {
          overflow-x: hidden;
          font-size: clamp(0.56rem, 2.2vw, 0.72rem);
          padding-top: 0.55rem;
          padding-bottom: 0.55rem;
        }

        .announcement-bar__inner {
          width: 100%;
          max-width: 100%;
          flex-wrap: wrap;
          gap: 0.2rem 0.45rem;
          justify-content: center;
        }

        .announcement-bar__item {
          white-space: normal;
          flex-shrink: 1;
        }

        .announcement-bar__sep {
          opacity: 0.6;
        }
      }

      .announcement-bar__sep {
        color: rgba(255, 255, 255, 0.55);
        font-weight: 400;
        user-select: none;
        flex-shrink: 0;
      }

      .products {
        max-width: min(100%, 72rem);
        margin-inline: auto;
        padding-block: clamp(2rem, 5vw, 3.5rem);
        padding-inline: 0;
        min-width: 0;
      }

      .products__intro {
        margin: 0 0 clamp(1.25rem, 4vw, 1.75rem);
        padding: clamp(1rem, 3vw, 1.35rem) clamp(1rem, 3vw, 1.5rem);
        font-family: "Cairo", sans-serif;
        font-weight: 600;
        font-size: clamp(1rem, 2.5vw, 1.15rem);
        color: var(--text);
        line-height: 1.6;
        text-align: center;
        max-width: 42rem;
        margin-inline: auto;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(15, 23, 42, 0.07);
        border-radius: clamp(14px, 3vw, 20px);
        box-shadow:
          0 4px 24px rgba(15, 23, 42, 0.05),
          0 0 0 1px rgba(255, 255, 255, 0.5) inset;
        backdrop-filter: blur(8px);
      }

      .products__intro strong {
        color: #b45309;
        font-weight: 700;
      }

      .faq {
        max-width: min(100%, 72rem);
        margin: clamp(2rem, 5vw, 3.5rem) auto 0;
        min-width: 0;
      }

      .faq__title {
        margin: 0 0 1rem;
        font-family: "Cairo", sans-serif;
        font-weight: 700;
        font-size: clamp(1.35rem, 3vw, 1.75rem);
        text-align: center;
      }

      .faq__list {
        display: grid;
        gap: 0.85rem;
      }

      .faq__item {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 1rem 1.1rem;
        box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
      }

      @media (hover: hover) and (pointer: fine) {
        .faq__item:hover {
          border-color: rgba(217, 119, 6, 0.22);
          box-shadow: 0 8px 28px rgba(15, 23, 42, 0.07);
        }
      }

      .faq__question {
        margin: 0 0 0.45rem;
        font-family: "Cairo", sans-serif;
        font-size: 1rem;
        font-weight: 700;
      }

      .faq__answer {
        margin: 0;
        font-family: "Cairo", sans-serif;
        color: var(--muted);
        line-height: 1.7;
      }

      .site-footer {
        margin-top: clamp(2rem, 5vw, 3.5rem);
        margin-inline: 0;
        width: 100%;
        max-width: 100%;
        background: linear-gradient(180deg, #131f35 0%, #0f172a 48%, #0c1424 100%);
        color: #e2e8f0;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: 0 -1px 0 rgba(217, 119, 6, 0.12);
        padding-top: clamp(1.25rem, 3vw, 2rem);
        padding-left: max(
          clamp(0.75rem, 4vw, 1.5rem),
          env(safe-area-inset-left, 0px)
        );
        padding-right: max(
          clamp(0.75rem, 4vw, 1.5rem),
          env(safe-area-inset-right, 0px)
        );
        padding-bottom: max(
          clamp(1.25rem, 3vw, 2rem),
          env(safe-area-inset-bottom, 0px)
        );
      }

      .site-footer__inner {
        max-width: min(100%, 72rem);
        margin-inline: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.9rem;
      }

      .site-footer__brand {
        margin: 0;
        font-family: "Cairo", sans-serif;
        font-size: 0.95rem;
        color: #cbd5e1;
        max-width: 100%;
      }

      .site-footer__text-col {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        min-width: 0;
      }

      .site-footer__tagline {
        margin: 0;
        font-family: "Cairo", sans-serif;
        font-size: 0.82rem;
        font-weight: 600;
        color: #94a3b8;
        line-height: 1.5;
        max-width: 26rem;
      }

      .site-footer__brand-wrap {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        max-width: 100%;
        min-width: 0;
      }

      .site-footer__logo-wrap {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 10px;
        padding: 0.4rem 0.55rem;
      }

      .site-footer__logo {
        height: 34px;
        width: auto;
        display: block;
      }

      .site-footer__links {
        display: flex;
        flex-wrap: wrap;
        gap: 0.65rem 1rem;
      }

      @media (min-width: 768px) {
        .site-footer__inner {
          flex-direction: row;
          align-items: center;
          justify-content: space-between;
        }

        .site-footer__links {
          justify-content: flex-start;
          margin-inline-start: auto;
        }
      }

      .site-footer__link {
        color: #f8fafc;
        text-decoration: none;
        font-family: "Cairo", sans-serif;
        font-size: 0.95rem;
        transition: opacity 0.2s ease;
      }

      .site-footer__link:hover,
      .site-footer__link:focus-visible {
        opacity: 0.85;
      }

      .whatsapp-float {
        --lift: 0px;
        position: fixed;
        left: max(1rem, env(safe-area-inset-left, 0px));
        bottom: max(1rem, env(safe-area-inset-bottom, 0px));
        z-index: 120;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 3.1rem;
        height: 3.1rem;
        padding-inline: 0.85rem;
        border-radius: 999px;
        background: linear-gradient(145deg, #2fe077 0%, #25d366 45%, #1ebe5d 100%);
        color: #fff;
        font-family: "Cairo", sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        text-decoration: none;
        border: 2px solid rgba(255, 255, 255, 0.28);
        box-shadow:
          0 10px 26px rgba(37, 211, 102, 0.38),
          0 0 0 1px rgba(15, 23, 42, 0.06);
        transform: translateY(calc(-1 * var(--lift)));
        transition:
          transform 0.2s var(--ease-smooth),
          box-shadow 0.2s ease;
      }

      .whatsapp-float:hover {
        --lift: 3px;
        box-shadow:
          0 16px 34px rgba(37, 211, 102, 0.48),
          0 0 0 1px rgba(15, 23, 42, 0.06);
      }

      @media (max-width: 640px) {
        .site-footer__inner {
          align-items: center;
          text-align: center;
        }

        .site-footer__brand-wrap {
          flex-direction: column;
          gap: 0.5rem;
        }

        .site-footer__links {
          justify-content: center;
          flex-wrap: wrap;
        }
      }

      .product-grid {
        display: grid;
        gap: clamp(1rem, 3vw, 1.5rem);
        grid-template-columns: 1fr;
        min-width: 0;
      }

      @media (min-width: 768px) {
        .product-grid {
          grid-template-columns: repeat(3, minmax(0, 1fr));
        }
      }

      .product-card {
        position: relative;
        display: flex;
        flex-direction: column;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: clamp(14px, 3vw, 20px);
        overflow: hidden;
        box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
        transition:
          transform 0.22s var(--ease-smooth),
          box-shadow 0.22s ease,
          border-color 0.22s ease;
      }

      .product-card__badge {
        position: absolute;
        top: clamp(0.5rem, 2vw, 0.75rem);
        inset-inline-start: clamp(0.5rem, 2vw, 0.75rem);
        z-index: 4;
        padding: 0.28rem 0.55rem;
        font-family: "Cairo", sans-serif;
        font-size: clamp(0.65rem, 2.4vw, 0.72rem);
        font-weight: 800;
        line-height: 1.2;
        letter-spacing: 0.02em;
        color: #fff;
        text-align: center;
        text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
        background: linear-gradient(135deg, #ea580c 0%, #c2410c 55%, #9a3412 100%);
        border-radius: 6px;
        box-shadow:
          0 2px 8px rgba(154, 52, 18, 0.35),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
        pointer-events: none;
        max-width: calc(100% - 1.25rem);
        overflow-wrap: anywhere;
      }

      .product-card:hover {
        transform: translateY(-4px);
        border-color: rgba(217, 119, 6, 0.2);
        box-shadow:
          0 16px 44px rgba(15, 23, 42, 0.11),
          0 0 0 1px rgba(217, 119, 6, 0.08);
      }

      .product-card__media {
        aspect-ratio: 1 / 1;
        background: linear-gradient(155deg, #e8eef6 0%, #f0f4fa 50%, #fafbfc 100%);
        overflow: hidden;
      }

      .product-card__media--placeholder {
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Cairo", sans-serif;
        font-weight: 700;
        font-size: clamp(1.1rem, 3vw, 1.35rem);
        color: rgba(15, 23, 42, 0.18);
        letter-spacing: 0.02em;
      }

      .product-card__media img {
        width: 100%;
        max-width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .product-card__body {
        padding: clamp(1.1rem, 3vw, 1.35rem) clamp(1.15rem, 3vw, 1.5rem)
          clamp(1.25rem, 3vw, 1.5rem);
        flex: 1;
        display: flex;
        flex-direction: column;
      }

      .product-card__title {
        margin: 0 0 0.4rem;
        font-family: "Cairo", sans-serif;
        font-weight: 700;
        font-size: clamp(1.05rem, 2.5vw, 1.2rem);
        color: var(--text);
        line-height: 1.35;
      }

      .product-card__price {
        margin: 0 0 0.65rem;
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 0.5rem 0.75rem;
        font-family: "Cairo", sans-serif;
      }

      .product-card__price-current {
        font-weight: 700;
        font-size: clamp(1.1rem, 2.5vw, 1.25rem);
        color: #b91c1c;
      }

      .product-card__price-compare {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
        color: var(--muted);
        text-decoration: line-through;
        font-weight: 500;
      }

      [data-projector-root] {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
        min-width: 0;
      }

      #projectors [data-projector-root] {
        margin-top: auto;
      }

      #projectors .product-card__subtitle {
        flex: 0 1 auto;
      }

      .projector-picker__row {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.5rem;
        margin-bottom: 0.65rem;
        padding: 0;
        border: 0;
        width: 100%;
        min-width: 0;
      }

      .projector-picker__btn {
        position: relative;
        flex: 1 1 0;
        min-width: 0;
        margin: 0;
      }

      .projector-picker__input {
        position: absolute;
        inline-size: 1px;
        block-size: 1px;
        opacity: 0;
        pointer-events: none;
      }

      .projector-picker__text {
        display: block;
        width: 100%;
        padding: 0.45rem 0.5rem;
        font-family: "Cairo", sans-serif;
        font-weight: 600;
        font-size: 0.9rem;
        color: var(--text);
        background: #fff;
        border: 2px solid rgba(15, 23, 42, 0.18);
        border-radius: 10px;
        cursor: pointer;
        transition:
          border-color 0.15s ease,
          background 0.15s ease,
          color 0.15s ease;
      }

      .projector-picker__btn:hover .projector-picker__text {
        border-color: rgba(185, 28, 28, 0.45);
      }

      .projector-picker__btn.is-active .projector-picker__text {
        color: #fff;
        background: linear-gradient(135deg, #dc2626, #b91c1c);
        border-color: #b91c1c;
      }

      .projector-picker__input:focus-visible + .projector-picker__text {
        outline: 3px solid rgba(217, 119, 6, 0.55);
        outline-offset: 2px;
      }

      @media (max-width: 360px) {
        .projector-picker__row {
          flex-direction: column;
        }

        .projector-picker__btn {
          flex: none;
          width: 100%;
          padding-block: 0.55rem;
        }
      }

      .landing-hero__content .projector-picker__row {
        margin-bottom: 0.5rem;
      }

      .product-card__subtitle {
        margin: 0;
        font-family: "Cairo", sans-serif;
        font-weight: 400;
        font-size: clamp(0.875rem, 2vw, 0.95rem);
        color: var(--muted);
        line-height: 1.55;
        flex: 1;
      }

      .product-card__actions {
        margin-top: auto;
        padding-top: clamp(0.85rem, 2.5vw, 1.1rem);
      }

      .cod-form {
        width: 100%;
        margin: 0;
        padding: 0;
        border: none;
        background: transparent;
      }

      .cod-form--card {
        max-width: 100%;
        min-width: 0;
      }

      .cod-form__surface {
        padding: clamp(0.95rem, 2.8vw, 1.2rem);
        background: linear-gradient(
          165deg,
          rgba(255, 255, 255, 0.97) 0%,
          rgba(248, 250, 252, 0.98) 100%
        );
        border: 2px solid #b91c1c;
        border-radius: clamp(12px, 2.5vw, 16px);
        box-shadow: 0 2px 16px rgba(15, 23, 42, 0.06);
      }

      .cod-form__header {
        margin-bottom: clamp(0.75rem, 2vw, 1rem);
        padding-bottom: 0.65rem;
        border-bottom: 1px solid rgba(15, 23, 42, 0.07);
        text-align: right;
      }

      .cod-form__title {
        margin: 0 0 0.35rem;
        font-family: "Cairo", sans-serif;
        font-weight: 700;
        font-size: clamp(0.95rem, 2.2vw, 1.05rem);
        color: var(--text);
        line-height: 1.35;
      }

      .cod-form__hint {
        margin: 0;
        font-family: "Cairo", sans-serif;
        font-size: clamp(0.75rem, 1.8vw, 0.82rem);
        font-weight: 500;
        color: var(--muted);
        line-height: 1.5;
      }

      .cod-form__fields {
        display: flex;
        flex-direction: column;
        gap: clamp(0.65rem, 2vw, 0.85rem);
      }

      .cod-form__label {
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
        text-align: right;
      }

      .cod-form__label-row {
        display: flex;
        align-items: baseline;
        justify-content: flex-start;
        gap: 0.35rem;
        flex-wrap: wrap;
      }

      .cod-form__label-text {
        font-family: "Cairo", sans-serif;
        font-size: clamp(0.8rem, 1.85vw, 0.88rem);
        font-weight: 600;
        color: var(--text);
      }

      .cod-form__req {
        font-size: 0.85em;
        color: #b45309;
        font-weight: 700;
      }

      .cod-form__input {
        box-sizing: border-box;
        width: 100%;
        min-height: 2.75rem;
        padding: 0.55rem 0.85rem;
        font-family: "Cairo", sans-serif;
        font-size: clamp(0.88rem, 2vw, 0.98rem);
        color: var(--text);
        background: #fff;
        border: 1px solid rgba(15, 23, 42, 0.12);
        border-radius: 11px;
        transition: border-color 0.15s ease, box-shadow 0.15s ease;
      }

      .cod-form__input::placeholder {
        color: #94a3b8;
        opacity: 1;
      }

      .cod-form__input:hover {
        border-color: rgba(15, 23, 42, 0.2);
      }

      .cod-form__input:focus {
        outline: none;
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.22);
      }

      .cod-form__input:focus-visible {
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.28);
      }

      .cod-form__submit:focus-visible {
        outline: 3px solid rgba(252, 211, 77, 0.85);
        outline-offset: 3px;
      }

      .cod-form__input[name="phone"] {
        direction: rtl;
        text-align: start;
      }

      .cod-form__submit {
        box-sizing: border-box;
        width: 100%;
        margin-top: clamp(0.85rem, 2.2vw, 1.05rem);
        padding: 0.72rem 1rem;
        min-height: 2.85rem;
        font-family: "Cairo", sans-serif;
        font-weight: 700;
        font-size: clamp(0.9rem, 2vw, 1.02rem);
        color: #fff;
        background: linear-gradient(135deg, #dc2626, #b91c1c);
        border: none;
        border-radius: 12px;
        cursor: pointer;
        box-shadow: 0 4px 16px rgba(185, 28, 28, 0.35);
        transition: transform 0.15s ease, box-shadow 0.2s ease;
      }

      .cod-form__submit:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 22px rgba(185, 28, 28, 0.45);
        background: linear-gradient(135deg, #ef4444, #dc2626);
      }

      .cod-form__submit:active {
        transform: translateY(0);
      }

      .cod-form__wa {
        box-sizing: border-box;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 0.55rem;
        padding: 0.65rem 1rem;
        min-height: 2.75rem;
        font-family: "Cairo", sans-serif;
        font-weight: 700;
        font-size: clamp(0.88rem, 2vw, 1rem);
        color: #fff;
        text-decoration: none;
        text-align: center;
        line-height: 1.3;
        background: #25d366;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        box-shadow: 0 4px 14px rgba(37, 211, 102, 0.32);
        transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.15s ease;
      }

      .cod-form__wa:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(37, 211, 102, 0.42);
        background: #20bd5a;
      }

      .cod-form__wa:active {
        transform: translateY(0);
      }

      .cod-form__wa:focus-visible {
        outline: 3px solid rgba(20, 184, 166, 0.65);
        outline-offset: 3px;
      }

      .cod-form__submit-note {
        display: block;
        margin-top: 0.5rem;
        font-family: "Cairo", sans-serif;
        font-size: 0.72rem;
        font-weight: 500;
        color: var(--muted);
        text-align: center;
        line-height: 1.4;
      }

      .cod-form__upsell {
        margin-top: 0.85rem;
        display: flex;
        align-items: center;
        gap: 0.65rem;
        padding: 0.72rem 0.8rem;
        border: 1px solid rgba(185, 28, 28, 0.2);
        border-radius: 12px;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(254, 242, 242, 0.92));
        cursor: pointer;
        transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
      }

      .cod-form__upsell:hover {
        border-color: rgba(185, 28, 28, 0.38);
        box-shadow: 0 6px 16px rgba(185, 28, 28, 0.12);
      }

      .cod-form__upsell-checkbox {
        width: 1.1rem;
        height: 1.1rem;
        margin: 0;
        accent-color: #b91c1c;
        flex-shrink: 0;
      }

      .cod-form__upsell-content {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 0.5rem;
        width: 100%;
      }

      .cod-form__upsell-title {
        font-family: "Cairo", sans-serif;
        font-size: 0.88rem;
        font-weight: 700;
        color: var(--text);
        line-height: 1.45;
      }

      .cod-form__upsell-price {
        font-family: "Cairo", sans-serif;
        font-size: 0.84rem;
        font-weight: 700;
        color: #b91c1c;
        white-space: nowrap;
      }

      .cod-form__upsell:has(.cod-form__upsell-checkbox:checked) {
        border-color: rgba(185, 28, 28, 0.55);
        box-shadow:
          0 8px 20px rgba(185, 28, 28, 0.14),
          0 0 0 2px rgba(185, 28, 28, 0.1);
        transform: translateY(-1px);
      }

      .cod-form--card .cod-form__surface {
        padding: clamp(0.8rem, 2.2vw, 1rem);
      }

      .cod-form--card .cod-form__title {
        font-size: clamp(0.88rem, 2vw, 0.98rem);
      }

      .cod-form--card .cod-form__hint {
        font-size: clamp(0.7rem, 1.7vw, 0.78rem);
      }

      .cod-form--card .cod-form__fields {
        gap: 0.55rem;
      }

      .cod-form--card .cod-form__input {
        min-height: 2.5rem;
        padding: 0.45rem 0.7rem;
        font-size: clamp(0.82rem, 1.9vw, 0.92rem);
      }

      .cod-form--card .cod-form__submit {
        margin-top: 0.65rem;
        padding: 0.58rem 0.85rem;
        min-height: 2.65rem;
        border-radius: 999px;
        font-size: clamp(0.82rem, 1.9vw, 0.95rem);
      }

      .cod-form--card .cod-form__wa {
        margin-top: 0.5rem;
        padding: 0.58rem 0.85rem;
        min-height: 2.65rem;
        border-radius: 999px;
        font-size: clamp(0.82rem, 1.9vw, 0.95rem);
      }

      .cod-form--card .cod-form__submit-note {
        font-size: 0.65rem;
        margin-top: 0.4rem;
      }

      .product-card__media-link {
        display: block;
        height: 100%;
        text-decoration: none;
        color: inherit;
        cursor: pointer;
        line-height: 0;
      }

      .product-card__media-link.product-card__media--placeholder {
        line-height: normal;
      }

      .product-card__title-link {
        color: inherit;
        text-decoration: none;
      }

      .product-card__title-link:hover {
        color: var(--accent);
      }

      .lp-back {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        margin: 0 0 clamp(1rem, 3vw, 1.5rem);
        font-family: "Cairo", sans-serif;
        font-weight: 600;
        font-size: clamp(0.9rem, 2vw, 1rem);
        color: var(--accent);
        text-decoration: none;
      }

      .lp-back:hover {
        text-decoration: underline;
      }

      .landing {
        max-width: min(100%, 72rem);
        margin-inline: auto;
        min-width: 0;
      }

      .landing-hero {
        display: grid;
        gap: clamp(1.25rem, 4vw, 2rem);
        align-items: center;
        margin-bottom: clamp(2rem, 5vw, 3rem);
      }

      @media (min-width: 900px) {
        .landing-hero {
          grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        }
      }

      .landing-hero__content {
        min-width: 0;
        width: 100%;
      }

      .landing-hero__visual {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        min-width: 0;
      }

      .lp-thumbs {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin: 0;
        padding: 0;
      }

      .lp-thumb {
        display: block;
        padding: 0;
        margin: 0;
        border: 2px solid rgba(15, 23, 42, 0.12);
        border-radius: 10px;
        overflow: hidden;
        cursor: pointer;
        background: #fff;
        line-height: 0;
        box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
        transition:
          border-color 0.2s ease,
          box-shadow 0.2s ease,
          opacity 0.2s ease;
      }

      .lp-thumb:hover {
        border-color: rgba(217, 119, 6, 0.45);
      }

      .lp-thumb.is-active {
        border-color: var(--accent);
        box-shadow: 0 4px 14px rgba(217, 119, 6, 0.22);
      }

      .lp-thumb:focus-visible {
        outline: 3px solid rgba(217, 119, 6, 0.55);
        outline-offset: 2px;
      }

      .lp-thumb img {
        width: clamp(3.75rem, 14vw, 5rem);
        height: clamp(3.75rem, 14vw, 5rem);
        object-fit: cover;
        display: block;
        pointer-events: none;
      }

      .landing-hero__media {
        margin: 0;
        min-width: 0;
        border-radius: clamp(14px, 3vw, 22px);
        overflow: hidden;
        aspect-ratio: 1 / 1;
        box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
        background: linear-gradient(
          155deg,
          #e8eef6 0%,
          #f0f4fa 50%,
          #fafbfc 100%
        );
        line-height: 0;
      }

      .landing-hero__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .landing-hero__media--placeholder {
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Cairo", sans-serif;
        font-weight: 700;
        font-size: clamp(1.35rem, 3.5vw, 1.75rem);
        color: rgba(15, 23, 42, 0.2);
        letter-spacing: 0.02em;
      }

      .landing-hero__title {
        margin: 0 0 0.5rem;
        font-family: "Cairo", sans-serif;
        font-weight: 700;
        font-size: clamp(1.5rem, 4vw, 2.15rem);
        line-height: 1.25;
        color: var(--text);
      }

      .landing-hero__price {
        margin: 0 0 1rem;
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 0.5rem 0.75rem;
        font-family: "Cairo", sans-serif;
      }

      .landing-hero__lead {
        margin: 0 0 1.25rem;
        font-family: "Cairo", sans-serif;
        font-size: clamp(1rem, 2.5vw, 1.1rem);
        color: var(--muted);
        line-height: 1.75;
      }

      .landing-hero__actions {
        width: 100%;
        max-width: min(100%, 26rem);
        min-width: 0;
      }

      .landing-hero__actions .cod-form {
        max-width: 100%;
        min-width: 0;
      }

      .landing-hero__actions .cod-form__title {
        font-size: clamp(1.05rem, 2.4vw, 1.2rem);
      }

      .landing-hero__actions .cod-form__hint {
        font-size: clamp(0.8rem, 1.9vw, 0.88rem);
      }

      .landing-hero__actions .cod-form__input[name="phone"] {
        direction: rtl;
        text-align: center;
      }

      .landing-hero__actions .cod-form__label:has(input[name="phone"]) {
        direction: rtl;
        text-align: center;
      }

      .landing-hero__actions
        .cod-form__label:has(input[name="phone"])
        .cod-form__label-row {
        justify-content: center;
      }

      .lp-section {
        margin-bottom: clamp(2rem, 5vw, 3rem);
      }

      .lp-section__title {
        margin: 0 0 1rem;
        font-family: "Cairo", sans-serif;
        font-weight: 700;
        font-size: clamp(1.2rem, 3vw, 1.45rem);
        color: var(--text);
      }

      .lp-features {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: 0.75rem;
      }

      .lp-features li {
        margin: 0;
        padding: 0.95rem 1.1rem;
        font-family: "Cairo", sans-serif;
        font-size: clamp(0.95rem, 2.2vw, 1.02rem);
        line-height: 1.55;
        color: var(--text);
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 14px;
        box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
      }

      .lp-related {
        margin-top: clamp(2rem, 5vw, 3rem);
        padding: clamp(1.25rem, 3vw, 1.75rem);
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 16px;
        box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
      }

      .lp-related__title {
        margin: 0 0 0.85rem;
        font-family: "Cairo", sans-serif;
        font-weight: 700;
        font-size: 1rem;
        color: var(--text);
      }

      .lp-related .product-grid {
        margin-top: 0.35rem;
      }

      @media (min-width: 640px) {
        .lp-related .product-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
      }

      @media (min-width: 768px) {
        .lp-related .product-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
      }

      .lp-related__all-products {
        margin-top: clamp(1.1rem, 3vw, 1.5rem);
        text-align: center;
      }

      .lp-related__all-products a {
        font-family: "Cairo", sans-serif;
        font-weight: 600;
        font-size: 0.95rem;
        color: var(--accent);
        text-decoration: none;
      }

      .lp-related__all-products a:hover {
        text-decoration: underline;
      }

      .product-card__cta-full {
        box-sizing: border-box;
        width: 100%;
        justify-content: center;
      }

      .lp-related__links {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem 0.75rem;
      }

      .lp-related__links a {
        font-family: "Cairo", sans-serif;
        font-weight: 600;
        font-size: 0.95rem;
        color: var(--accent);
        text-decoration: none;
      }

      .lp-related__links a:hover {
        text-decoration: underline;
      }

      .lp-related__sep {
        color: var(--muted);
        font-weight: 400;
        user-select: none;
      }

      .nav-link--current {
        color: var(--accent);
        background: var(--surface);
      }

      @media (max-width: 768px) {
        main {
          text-align: center;
          padding-top: 0.6rem;
        }

        .hero,
        .products,
        .products__intro,
        .faq,
        .landing-hero__content,
        .lp-section,
        .lp-related,
        .announcement-bar {
          text-align: center;
        }

        .landing {
          text-align: center;
        }

        .lp-back {
          display: flex;
          width: 100%;
          max-width: 100%;
          justify-content: flex-start;
          margin-inline: 0;
          align-self: stretch;
          text-align: start;
        }

        .landing-hero {
          justify-items: stretch;
          gap: clamp(0.9rem, 3.5vw, 1.25rem);
          margin-bottom: clamp(1.35rem, 4.2vw, 2rem);
        }

        .landing-hero__actions {
          margin-inline: auto;
          width: 100%;
          max-width: min(100%, 28rem);
          min-width: 0;
        }

        .lp-section__title,
        .faq__title,
        .lp-related__title {
          text-align: center;
          margin-bottom: 0.65rem;
        }

        .lp-features li {
          text-align: center;
          padding: 0.72rem 0.82rem;
          border-radius: 12px;
          font-size: clamp(0.86rem, 2.2vw, 0.95rem);
        }

        .lp-related__links {
          justify-content: center;
        }

        .faq__question,
        .faq__answer {
          text-align: center;
        }

        .faq__item {
          padding: 0.82rem 0.9rem;
          border-radius: 12px;
        }

        .faq__question {
          font-size: 0.92rem;
          margin-bottom: 0.3rem;
        }

        .faq__answer {
          font-size: 0.84rem;
          line-height: 1.55;
        }

        .product-card__body {
          align-items: center;
        }

        .product-card__body > [data-projector-root],
        .product-card__body > .product-card__actions {
          align-self: stretch;
          width: 100%;
          max-width: 100%;
          min-width: 0;
        }

        .product-card__title,
        .product-card__subtitle {
          text-align: center;
        }

        .product-card__subtitle {
          font-size: 0.84rem;
          line-height: 1.45;
        }

        .product-card__price {
          justify-content: center;
        }

        #projectors .product-card__price {
          flex-wrap: wrap;
          width: 100%;
          justify-content: center;
        }

        .cod-form__header,
        .cod-form__label {
          text-align: center;
        }

        .cod-form__label-row {
          justify-content: center;
        }

        .cod-form__submit-note {
          text-align: center;
        }

        .cod-form__input[name="name"],
        .cod-form__input[name="city"] {
          text-align: center;
        }

        .cod-form__input[name="phone"] {
          direction: rtl;
          text-align: start;
        }

        .landing-hero__actions .cod-form__input[name="phone"] {
          direction: rtl;
          text-align: center;
        }

        .landing-hero__actions .cod-form__label:has(input[name="phone"]) {
          direction: rtl;
          text-align: center;
        }

        .landing-hero__actions
          .cod-form__label:has(input[name="phone"])
          .cod-form__label-row {
          justify-content: center;
        }

        .product-card__actions {
          padding-top: clamp(1.1rem, 3.5vw, 1.5rem);
        }

        .cod-form__surface {
          padding: clamp(1rem, 3.6vw, 1.2rem);
        }

        .cod-form--card .cod-form__surface {
          padding: clamp(1.05rem, 3.8vw, 1.35rem);
        }

        .cod-form__header {
          margin-bottom: clamp(0.75rem, 2.6vw, 0.95rem);
          padding-bottom: 0.65rem;
        }

        .cod-form__title {
          margin-bottom: 0.45rem;
        }

        .cod-form__fields {
          gap: clamp(0.72rem, 2.8vw, 0.95rem);
        }

        .cod-form--card .cod-form__fields {
          gap: clamp(0.88rem, 3vw, 1.05rem);
        }

        .cod-form__label {
          gap: 0.38rem;
        }

        .cod-form__input {
          min-height: 2.75rem;
          padding: 0.55rem 0.82rem;
        }

        .cod-form--card .cod-form__input {
          min-height: 2.85rem;
          padding: 0.6rem 0.85rem;
        }

        .cod-form__submit {
          margin-top: clamp(0.75rem, 2.9vw, 1rem);
          padding: 0.7rem 1rem;
          min-height: 2.75rem;
        }

        .cod-form--card .cod-form__submit {
          margin-top: 0.95rem;
          padding: 0.75rem 1rem;
          min-height: 2.95rem;
        }

        .cod-form__submit-note {
          margin-top: 0.5rem;
          line-height: 1.45;
          font-size: 0.68rem;
        }

        .cod-form__upsell {
          margin-top: 1rem;
          justify-content: center;
          text-align: center;
        }

        .cod-form__upsell-content {
          flex-direction: column;
          align-items: center;
          gap: 0.2rem;
        }

        .cod-form--card .cod-form__submit-note {
          margin-top: 0.6rem;
          font-size: 0.72rem;
        }

        .product-card .product-card__actions {
          padding-top: 0.875rem;
          width: 100%;
          max-width: 100%;
        }

        .product-card .cod-form--card .cod-form__surface {
          padding: 0.875rem 0.95rem;
          border-radius: 12px;
        }

        .product-card .cod-form--card .cod-form__header {
          margin-bottom: 0.65rem;
          padding-bottom: 0.55rem;
        }

        .product-card .cod-form--card .cod-form__title {
          font-size: 0.9375rem;
          margin-bottom: 0.25rem;
        }

        .product-card .cod-form--card .cod-form__hint {
          font-size: 0.8125rem;
          line-height: 1.45;
        }

        .product-card .cod-form--card .cod-form__fields {
          gap: 0.65rem;
        }

        .product-card .cod-form--card .cod-form__label {
          gap: 0.35rem;
        }

        .product-card .cod-form--card .cod-form__label-text {
          font-size: 0.8125rem;
        }

        .product-card .cod-form--card .cod-form__input {
          min-height: 2.75rem;
          padding: 0.5rem 0.75rem;
          font-size: 0.9375rem;
          border-radius: 10px;
        }

        .product-card .cod-form--card .cod-form__submit {
          margin-top: 0.75rem;
          padding: 0.6rem 0.9rem;
          min-height: 2.75rem;
          font-size: 0.9rem;
          border-radius: 999px;
        }

        .product-card .cod-form--card .cod-form__wa {
          margin-top: 0.55rem;
          padding: 0.6rem 0.9rem;
          min-height: 2.75rem;
          font-size: 0.9rem;
          border-radius: 999px;
        }

        .product-card .cod-form--card .cod-form__submit-note {
          margin-top: 0.45rem;
          font-size: 0.6875rem;
          line-height: 1.45;
        }

        .product-card .cod-form--card .cod-form__input[name="name"],
        .product-card .cod-form--card .cod-form__input[name="city"],
        .product-card .cod-form--card .cod-form__input[name="phone"] {
          text-align: start;
        }

        .product-card .cod-form--card .cod-form__header,
        .product-card .cod-form--card .cod-form__label {
          text-align: start;
        }

        .product-card .cod-form--card .cod-form__label-row {
          justify-content: flex-start;
        }
      }