﻿/* === style.css === */
.hero {
  position: relative;
  user-select: none;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  contain: layout style paint;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  contain: layout style paint;
}

.videooverlaytext {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  min-width: 0;
  min-height: 0;
  margin: 0;
  z-index: 5;
  pointer-events: none;
  user-select: none;
  bottom: 10vh;
}

.videooverlaytext span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 900;
  font-size: 3.85rem;
  text-align: center;
  line-height: 1;
  color: var(--color-secondary);
}

.videooverlaytext span:nth-child(1) {
  font-size: 3.85rem;
  line-height: 1.35;
}

.videooverlaytext .english {
  font-family: Mainenglish, system-ui, sans-serif;
  font-size: clamp(3.07rem, 9.21vw, 7.37rem);
}

.videooverlaytext .farsi {
  direction: rtl;
  color: var(--color-primary);
  font-size: clamp(1.235rem, 3.861vw, 3.094rem);
  padding: 0.4rem 0.6rem 0.6rem 0.6rem;
  background-color: var(--color-secondary);
  border: 1px solid var(--color-primary);
  border-radius: 7px;
}

.sidebar-nav {
  position: absolute;
  right: 0;
  top: -9dvh;
  width: 11.9rem;
  height: 100%;
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  justify-content: center;
  color: var(--color-secondary);
  transition: background-color var(--transition-slow), transform 0.3s ease;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.01);
  padding-right: clamp(1rem, 4vw, 4rem);
  box-sizing: border-box;
  contain: layout style;
}

.sidebar-nav a {
  text-decoration: none;
  color: inherit;
  padding: 0.4rem 0.5rem;
  display: flex;
  flex-direction: column;
  line-height: 0.5;
  gap: 0.2rem;
  width: 100%;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border-right: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  contain: layout style;
}

.sidebar-nav a:hover,
.sidebar-nav a:focus {
  transform: translateX(-5px);
  background-color: rgba(255, 255, 255, 0.1);
  outline: none;
  border-right-color: rgba(255, 255, 255, 0.6);
}

.sidebar-nav a .english {
  font-family: Mainenglish, system-ui, sans-serif;
  font-size: 0.85rem;
  padding-top: 0.2rem;
  display: block;
  position: relative;
  padding-top: 0.2rem;
}

.sidebar-nav a .farsi {
  font-family: Mainfarsi, system-ui, sans-serif;
  font-size: 0.85rem;
  display: block;
  position: relative;
}

.sidebar-nav a .english::after,
.sidebar-nav a .farsi::after {
  content: "";
  display: inline-block;
  width: 100%;
}

.sidebar-nav a::after {
  content: '';
  position: absolute;
  right: -1px;
  inset-block: 0;
  width: 2px;
  background-color: rgba(255, 255, 255, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sidebar-nav a:hover::after {
  opacity: 1;
}

.hero .sidebar-nav a {
  opacity: 0.52;
  cursor: pointer;
}

.hero .sidebar-nav a.is-active {
  opacity: 1;
  transform: translateX(-6px);
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.04) 55%,
    transparent 100%
  );
  border-right-color: var(--color-secondary);
  border-right-width: 3px;
}

.hero .sidebar-nav a.is-active::after {
  opacity: 1;
  width: 3px;
  background-color: var(--color-secondary);
}

.hero .sidebar-nav a.is-active .english,
.hero .sidebar-nav a.is-active .farsi {
  color: var(--color-secondary);
  font-weight: 700;
}

.hero .sidebar-nav a.is-active:hover,
.hero .sidebar-nav a.is-active:focus {
  transform: translateX(-6px);
  border-right-color: var(--color-secondary);
}

.hero-mute-btn {
  position: absolute;
  bottom: 13vh;
  left: clamp(0.375rem, 1.5vw, 0.937rem);
  z-index: 5;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: var(--color-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.hero-mute-btn:hover,
.hero-mute-btn:focus {
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.8);
  outline: none;
}

.hero-mute-btn:active {
  transform: scale(0.96);
}

.hero-mute-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
}

.hero-mute-btn-icon svg {
  width: 100%;
  height: 100%;
}

.hero-mute-btn-icon[hidden] {
  display: none !important;
}

.scroll-arrows {
  position: fixed;
  bottom: clamp(1.35rem, 3.75vh, 2.25rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 10050;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.5s ease, transform 0.5s ease;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  isolation: isolate;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.35));
}

.scroll-arrows.is-near-footer {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(6px);
}

.arrow {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--color-secondary);
  animation: bounce 1.5s infinite ease-in-out;
}

.arrow:nth-child(2) {
  animation-delay: 0.3s;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-8px);
  }

  60% {
    transform: translateY(-4px);
  }
}
/* === mediaqueries.css === */
/* Desktop styles */
@media (min-width: 768px) {
  .videooverlaytext .english {
    font-size: 3.6rem;
  }
  .videooverlaytext .farsi {
    font-size: 1.45rem;
  }
  .callicons {
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-end;
    padding: 1rem;
    width: 100%;
  }

  .callicon {
    width: auto;
    height: auto;
    min-height: auto;
    padding: 0.5rem 0.8rem;
    border-radius: 0.5rem;
    flex-direction: row;
    gap: 0.8rem;
    justify-content: flex-start;
  }

  .callicon-text {
    display: inline-block;
    font-size: 0.95rem;
    direction: ltr;
    white-space: nowrap;
    font-family: Mainenglish, system-ui, sans-serif;
    order: 1;
  }

  .callicon svg {
    width: 1.5rem;
    height: 1.5rem;
    order: 2;
    flex-shrink: 0;
  }

  .callicon:hover {
    transform: scale(1.05);
  }
}

@media (max-width: 768px) {
  .topnavbar {
    padding: 0.75rem 1rem;
  }

  .logo {
    max-height: 66px;
  }

  .nav-btn {
    min-width: 40px;
    min-height: 40px;
    font-size: 0.8rem;
  }

  .sidebar-nav {
    padding-right: 1.5rem;
    width: 9.3rem;
  }

  .videooverlaytext span:nth-child(1) {
    font-size: 3.3rem;
  }

  .sidebar-nav a {
    min-height: 35px;
    font-size: 0.75rem;
  }

  .scroll-arrows {
    gap: 5px;
  }

  .arrow {
    border-left-width: 4px;
    border-right-width: 4px;
    border-top-width: 6px;
  }

  .menu {
    width: 75%;
  }

  .content {
    padding-right: 42%;
  }

  .content::after {
    right: 0;
    width: 40%;
    border-radius: 0.5rem 0 0 0.5rem;
    mask-image: repeating-linear-gradient(90deg,
        rgba(0, 0, 0, 0.7) 0 2px,
        transparent 2px 5px);
  }
}

@media (prefers-contrast: high) {
  .nav-btn:focus {
    outline: 3px solid var(--color-secondary);
  }

  .topnavbar,
  .sidebar-nav {
    background-color: rgba(0, 0, 0, 0.9);
  }

  .sidebar-nav a {
    border-right-color: var(--color-secondary);
  }

  .sidebar-nav a:hover {
    border-right-color: #ccc;
  }

  .hero .sidebar-nav a.is-active {
    border-right-color: var(--color-secondary);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .arrow {
    animation: none;
  }

  .menu {
    transition: none;
    transform: scaleX(1);
    opacity: 1;
  }

  .menuicons a,
  .menuicons .icon {
    transition: none;
  }

  .listitem {
    transform: scale(1);
  }
}

@media print {
  body {
    background: var(--color-primary);
    color: var(--color-secondary);
  }

  video,
  .menu,
  .glass-overlay,
  .sidebar-nav,
  .scroll-arrows {
    display: none;
  }

  .hero {
    height: auto;
  }
}
/* === home-marquee.css === */
/* طµظپط­ظ‡ ط§طµظ„غŒ â€” ظ†ظˆط§ط± ط§ط¹طھظ…ط§ط¯ + ظ…ظ‚ط§ظ„ط§طھ/ظ…ط­طµظˆظ„ط§طھ ظ…ظ†طھط®ط¨ */

#bz-homepage-flow {
    --g-margin: clamp(1.15rem, 5vw, 2rem);
}

.bz-homepage-flow {
    display: block;
    width: 100%;
}

.bz-home-featured-root {
    display: block;
    width: 100%;
}

/* â€”â€”â€” ظ†ظˆط§ط± ط§ط¹طھظ…ط§ط¯ â€”â€”â€” */

.bz-trust-strip {
    --bz-trust-cream: #f3ede3;
    --bz-trust-brown: #7e553b;
    --bz-trust-gold: #c6a76a;
    --bz-trust-ink: #1a1819;
    position: relative;
    z-index: 6;
    padding:
        clamp(2.75rem, 6vh, 4.5rem)
        clamp(0.65rem, 2.5vw, 1.5rem)
        clamp(3.5rem, 7vh, 5.5rem);
    overflow: visible;
    background-color: var(--bz-trust-brown);
    background-image: url('../images/trust-strip-bg.png');
    background-repeat: repeat;
    background-position: center;
    background-size: auto;
}

.bz-trust-strip__frame {
    position: relative;
    z-index: 1;
    max-width: min(100%, 1380px);
    margin-inline: auto;
    padding: clamp(1.25rem, 3vw, 1.75rem) clamp(0.5rem, 1.5vw, 0.85rem) clamp(2.5rem, 4vw, 3.25rem);
    border: 1px solid rgba(198, 167, 106, 0.45);
    border-radius: clamp(14px, 2vw, 22px);
    background: linear-gradient(
        160deg,
        rgba(255, 255, 255, 0.72) 0%,
        rgba(247, 242, 234, 0.96) 45%,
        rgba(240, 233, 223, 0.94) 100%
    );
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.bz-trust-strip__rows {
    display: flex;
    flex-direction: column;
    gap: clamp(0.65rem, 1.8vw, 1.1rem);
}

.bz-trust-strip--dual-row {
    padding-block-start: clamp(1.85rem, 4.5vh, 3rem);
    padding-block-end: clamp(2.75rem, 5.5vh, 4.25rem);
}

.bz-trust-strip--dual-row .bz-trust-strip__frame {
    padding-block: clamp(0.75rem, 2vw, 1.1rem) clamp(1.85rem, 3vw, 2.35rem);
}

.bz-trust-strip--dual-row .bz-trust-strip__rows {
    gap: clamp(0.35rem, 0.9vw, 0.55rem);
}

.bz-trust-strip--dual-row .bz-trust-strip__card {
    gap: 0.35rem;
    padding-block: 0.2rem 0.35rem;
}

.bz-trust-strip--dual-row .bz-trust-strip__visual {
    min-height: clamp(3.1rem, 6.5vw, 4.25rem);
}

.bz-trust-strip--dual-row .bz-trust-strip__img {
    max-height: clamp(2.85rem, 6vw, 3.85rem);
}

.bz-trust-strip--dual-row .bz-trust-strip__img--svg {
    width: clamp(2.75rem, 5.5vw, 3.85rem);
    height: clamp(2.75rem, 5.5vw, 3.85rem);
}

.bz-trust-strip__row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: clamp(0.35rem, 1.2vw, 0.65rem);
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: auto;
    overflow-anchor: none;
    touch-action: pan-x;
    scrollbar-width: none;
    cursor: grab;
}

.bz-trust-strip__row::-webkit-scrollbar {
    display: none;
}

.bz-trust-strip__row.is-dragging {
    cursor: grabbing;
}

.bz-trust-strip__card {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.55rem;
    width: clamp(7.5rem, 14vw, 10.5rem);
    padding: 0.35rem 0.25rem 0.5rem;
    text-decoration: none;
    color: var(--bz-trust-ink);
    border-radius: 8px;
}

@media (hover: hover) {
    a.bz-trust-strip__card {
        transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
    }

    a.bz-trust-strip__card:hover {
        transform: translateY(-3px);
        opacity: 0.94;
    }
}

.bz-trust-strip__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: clamp(4.5rem, 10vw, 6.25rem);
}

.bz-trust-strip__img {
    display: block;
    max-width: 100%;
    max-height: clamp(4.25rem, 9vw, 5.75rem);
    width: auto;
    height: auto;
    object-fit: contain;
    pointer-events: none;
}

.bz-trust-strip__img--svg {
    width: clamp(4rem, 8vw, 5.5rem);
    height: clamp(4rem, 8vw, 5.5rem);
}

.bz-trust-strip__img--empty {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(198, 167, 106, 0.22), rgba(198, 167, 106, 0.06));
    border: 1px dashed rgba(154, 123, 79, 0.4);
}

.bz-trust-strip__label {
    margin: 0;
    padding-inline: 0.15rem;
    font-family: Mainfarsi, system-ui, sans-serif;
    font-size: clamp(0.68rem, 1.35vw, 0.82rem);
    font-weight: 500;
    line-height: 1.45;
    text-align: center;
    direction: rtl;
    color: var(--bz-trust-ink);
}

.bz-trust-strip__tab {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin: 0;
    padding: 0.45rem clamp(1.1rem, 3vw, 1.75rem);
    border: 1px solid rgba(198, 167, 106, 0.55);
    border-radius: 999px;
    background: linear-gradient(180deg, #faf6ef 0%, var(--bz-trust-cream) 100%);
    white-space: nowrap;
    z-index: 2;
}

.bz-trust-strip__tab-text {
    font-family: Mainfarsi, system-ui, sans-serif;
    font-size: clamp(0.78rem, 1.6vw, 0.95rem);
    font-weight: 600;
    color: var(--bz-trust-brown);
    direction: rtl;
}

.bz-trust-strip__tab-flourish {
    display: block;
    width: clamp(1.5rem, 3vw, 2.25rem);
    height: 0.55rem;
    background:
        radial-gradient(circle at 0 50%, transparent 0.45rem, var(--bz-trust-gold) 0.46rem, transparent 0.47rem),
        linear-gradient(var(--bz-trust-gold), var(--bz-trust-gold)) center / 100% 1px no-repeat;
    opacity: 0.85;
}

.bz-trust-strip__tab-flourish--mirror {
    transform: scaleX(-1);
}

.bz-trust-strip + .scroll-arrows {
    margin-top: clamp(0.75rem, 2vh, 1.5rem);
}

@media (max-width: 640px) {
    .bz-trust-strip {
        padding-inline: 0.35rem;
    }

    .bz-trust-strip__card {
        width: clamp(6.5rem, 28vw, 8.5rem);
    }
}

/* â€”â€”â€” ظ…ظ‚ط§ظ„ط§طھ ظˆ ظ…ط­طµظˆظ„ط§طھ ظ…ظ†طھط®ط¨ â€”â€”â€” */

#bz-homepage-flow .c-home-featured {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow-x: visible;
    overflow-y: visible;
    padding: clamp(3rem, 7vh, 5rem) 0;
    isolation: isolate;
}

#bz-homepage-flow .c-home-featured a,
#bz-homepage-flow .c-home-featured a:hover,
#bz-homepage-flow .c-home-featured a:focus,
#bz-homepage-flow .c-home-featured a:focus-visible {
    --h-underline: none;
    background: none !important;
    text-decoration: none !important;
    color: inherit;
}

#bz-homepage-flow .c-home-featured--articles {
    --bz-feat-glow-x: 75%;
    --bz-feat-card-w: 15.5rem;
    --bz-feat-gap: 0.875rem;
    --bz-feat-accent: #7b5136;
    --bz-feat-ink: #151415;
    --bz-feat-muted: rgba(21, 20, 21, 0.58);
    background: linear-gradient(168deg, #f6f0e6 0%, #ebe2d4 50%, #e2d6c6 100%);
    color: var(--bz-feat-ink);
}

#bz-homepage-flow .c-home-featured--products {
    --bz-feat-glow-x: 25%;
    --bz-feat-card-w: 16rem;
    --bz-feat-gap: 0.875rem;
    --bz-feat-accent: #c6a76a;
    --bz-feat-ink: #f1eade;
    --bz-feat-muted: rgba(241, 234, 222, 0.55);
    background: linear-gradient(168deg, #1a1819 0%, #222021 45%, #151414 100%);
    color: var(--bz-feat-ink);
}

#bz-homepage-flow .c-home-featured__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 50% 42% at var(--bz-feat-glow-x) 30%,
        rgba(198, 167, 106, 0.2),
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

#bz-homepage-flow .c-home-featured--products .c-home-featured__glow {
    background: radial-gradient(
        ellipse 46% 38% at var(--bz-feat-glow-x) 34%,
        rgba(198, 167, 106, 0.12),
        transparent 72%
    );
}

#bz-homepage-flow .c-home-featured__grain {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

#bz-homepage-flow .c-home-featured--products .c-home-featured__grain {
    opacity: 0.07;
}

#bz-homepage-flow .c-home-featured__inner {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    width: 100%;
    max-width: min(100%, var(--page-width, 1440px));
    margin-inline: auto;
    padding-inline: var(--g-margin);
}

#bz-homepage-flow .c-home-featured__grid-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
    padding-inline: var(--g-margin);
}

#bz-homepage-flow .c-home-featured__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--bz-feat-gap, 0.875rem);
    width: 100%;
    max-width: min(100%, var(--page-width, 1440px));
    margin-inline: auto;
    padding-block: 0.25rem 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: auto;
    overflow-anchor: none;
    touch-action: pan-x;
    scrollbar-width: none;
    cursor: grab;
}

#bz-homepage-flow .c-home-featured__grid::-webkit-scrollbar {
    display: none;
}

#bz-homepage-flow .c-home-featured__grid.is-dragging {
    cursor: grabbing;
}

/* Mobile: programmatic scrollLeft is unreliable on iOS WebKit — inner layer uses transform. */
.bz-trust-strip__row.bz-auto-scroll-track--transform,
#bz-homepage-flow .c-home-featured__grid.bz-auto-scroll-track--transform {
    direction: ltr;
    overflow-x: auto;
    overflow-y: hidden;
}

.bz-auto-scroll-inner {
    display: flex;
    flex-wrap: nowrap;
    flex: 0 0 auto;
    width: max-content;
    max-width: none;
    will-change: transform;
}

.bz-trust-strip__row.bz-auto-scroll-track--transform .bz-auto-scroll-inner {
    gap: clamp(0.35rem, 1.2vw, 0.65rem);
}

#bz-homepage-flow .c-home-featured__grid.bz-auto-scroll-track--transform .bz-auto-scroll-inner {
    gap: var(--bz-feat-gap, 0.875rem);
}

@media (hover: none) and (pointer: coarse), (max-width: 1024px) {
    .bz-trust-strip__row:not(.bz-auto-scroll-track--transform),
    #bz-homepage-flow .c-home-featured__grid:not(.bz-auto-scroll-track--transform) {
        direction: ltr;
        overflow-x: auto;
    }
}

#bz-homepage-flow .c-home-featured__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem 1.25rem;
    margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
    padding-inline: 0;
}

#bz-homepage-flow .c-home-featured__eyebrow {
    margin: 0 0 0.35rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.6875rem;
    opacity: 0.45;
}

#bz-homepage-flow .c-home-featured--products .c-home-featured__eyebrow {
    color: var(--bz-feat-accent);
    opacity: 0.8;
}

#bz-homepage-flow .c-home-featured__title {
    margin: 0;
    font-size: clamp(1.375rem, 3.5vw, 2.125rem) !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em;
    line-height: 1.15 !important;
}

#bz-homepage-flow .c-home-featured__archive {
    font-size: 0.8125rem !important;
    opacity: 0.65;
    white-space: nowrap;
    transition: opacity 0.25s ease, color 0.25s ease;
    padding-inline: 0.15rem;
}

#bz-homepage-flow .c-home-featured__archive:hover {
    opacity: 1;
    color: var(--bz-feat-accent) !important;
}

#bz-homepage-flow .c-home-featured--products .c-home-featured__archive {
    color: var(--bz-feat-accent) !important;
    opacity: 0.85;
}

#bz-homepage-flow .c-home-featured__card {
    flex: 0 0 var(--bz-feat-card-w);
    width: var(--bz-feat-card-w);
    min-width: 0;
}

#bz-homepage-flow .c-home-featured__card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 0.625rem;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

#bz-homepage-flow .c-home-featured__card-link:focus-visible {
    outline: 2px solid var(--bz-feat-accent);
    outline-offset: 3px;
}

#bz-homepage-flow .c-home-featured__card-visual {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.08);
}

#bz-homepage-flow .c-home-featured__card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

#bz-homepage-flow .c-home-featured__card-link:hover .c-home-featured__card-visual img {
    transform: scale(1.05);
}

#bz-homepage-flow .c-home-featured__card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(21, 20, 21, 0.35) 100%);
    pointer-events: none;
}

#bz-homepage-flow .c-home-featured__card-index {
    position: absolute;
    inset-inline-start: 0.625rem;
    inset-block-start: 0.5rem;
    z-index: 2;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
    font-variant-numeric: tabular-nums;
    pointer-events: none;
}

#bz-homepage-flow .c-home-featured__card-tag {
    position: absolute;
    inset-inline-end: 0.625rem;
    inset-block-end: 0.625rem;
    z-index: 2;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: rgba(21, 20, 21, 0.55);
    color: #f1eade;
    font-size: 0.625rem;
    letter-spacing: 0.02em;
}

#bz-homepage-flow .c-home-featured--articles .c-home-featured__card-link {
    color: var(--bz-feat-ink) !important;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 4px 20px rgba(21, 20, 21, 0.08);
}

#bz-homepage-flow .c-home-featured--articles .c-home-featured__card-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(21, 20, 21, 0.12);
}

#bz-homepage-flow .c-home-featured__card--article .c-home-featured__card-copy {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    padding: 0.75rem 0.875rem 0.875rem;
}

#bz-homepage-flow .c-home-featured__card-en {
    display: none;
}

#bz-homepage-flow .c-home-featured__card-title {
    margin: 0;
    font-size: 0.9375rem !important;
    font-weight: 600 !important;
    line-height: 1.45 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--bz-feat-ink) !important;
}

#bz-homepage-flow .c-home-featured__card-excerpt {
    margin: 0;
    font-size: 0.8125rem !important;
    line-height: 1.55 !important;
    color: var(--bz-feat-muted) !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#bz-homepage-flow .c-home-featured--products .c-home-featured__card-link {
    color: var(--bz-feat-ink) !important;
    background: #232022;
    border: 1px solid rgba(198, 167, 106, 0.15);
}

#bz-homepage-flow .c-home-featured--products .c-home-featured__card-link:hover {
    transform: translateY(-3px);
    border-color: rgba(198, 167, 106, 0.35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

#bz-homepage-flow .c-home-featured__card-visual--product {
    aspect-ratio: 16 / 11;
}

#bz-homepage-flow .c-home-featured__card-shade--product {
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.5) 100%);
}

#bz-homepage-flow .c-home-featured__card-index--product {
    color: rgba(198, 167, 106, 0.85);
}

#bz-homepage-flow .c-home-featured__card-tag--product {
    background: rgba(198, 167, 106, 0.22);
    color: #f1eade;
}

#bz-homepage-flow .c-home-featured__card-plate {
    padding: 0.75rem 0.875rem 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    background: #232022;
}

#bz-homepage-flow .c-home-featured--products .c-home-featured__card-title {
    color: #f1eade !important;
}

#bz-homepage-flow .c-home-featured--products .c-home-featured__card-excerpt {
    color: var(--bz-feat-muted) !important;
    -webkit-line-clamp: 2;
}

#bz-homepage-flow .c-home-featured__card-foot {
    margin-top: 0.25rem;
}

#bz-homepage-flow .c-home-featured__card-views {
    font-size: 0.6875rem !important;
    color: var(--bz-feat-muted) !important;
}

@media (min-width: 480px) {
    #bz-homepage-flow .c-home-featured--articles {
        --bz-feat-card-w: 16.25rem;
    }

    #bz-homepage-flow .c-home-featured--products {
        --bz-feat-card-w: 16.75rem;
    }
}

@media (min-width: 768px) {
    #bz-homepage-flow .c-home-featured--articles {
        --bz-feat-card-w: 17rem;
    }

    #bz-homepage-flow .c-home-featured--products {
        --bz-feat-card-w: 17.5rem;
    }
}

@media (min-width: 1024px) {
    #bz-homepage-flow .c-home-featured--articles {
        --bz-feat-card-w: 18rem;
        --bz-feat-gap: 1rem;
    }

    #bz-homepage-flow .c-home-featured--products {
        --bz-feat-card-w: 18.5rem;
        --bz-feat-gap: 1rem;
    }

    #bz-homepage-flow .c-home-featured__card-en {
        display: block;
        margin: 0;
        font-size: 0.6875rem !important;
        line-height: 1.3 !important;
        color: var(--bz-feat-muted) !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 479px) {
    #bz-homepage-flow {
        --g-margin: clamp(1.25rem, 5.5vw, 1.65rem);
    }

    #bz-homepage-flow .c-home-featured {
        padding-block: 2.5rem;
    }

    #bz-homepage-flow .c-home-featured--articles {
        --bz-feat-card-w: min(14.5rem, 82vw);
    }

    #bz-homepage-flow .c-home-featured--products {
        --bz-feat-card-w: min(15rem, 84vw);
    }

    #bz-homepage-flow .c-home-featured__head {
        align-items: flex-start;
        gap: 0.5rem 1rem;
    }

    #bz-homepage-flow .c-home-featured__card-excerpt,
    #bz-homepage-flow .c-home-featured--products .c-home-featured__card-excerpt {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    #bz-homepage-flow .c-home-featured__card-visual img,
    #bz-homepage-flow .c-home-featured__card-link {
        transition: none;
    }

    #bz-homepage-flow .c-home-featured__card-link:hover {
        transform: none;
    }

    #bz-homepage-flow .c-home-featured__card-link:hover .c-home-featured__card-visual img {
        transform: none;
    }
}

/* === footer-inner.css === */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   BAZELIUM â€” Full-Width Luxury Footer  آ·  2026
   Dark-glass surface, edge-to-edge, zero borders, zero radius.
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.site-footer-inner {
  --bz-gold: #f1eade;
  --bz-gold-rgb: 241, 234, 222;
  --bz-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bz-footer-bg: rgba(7, 7, 7, 0.91);

  box-sizing: border-box;
  isolation: isolate;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 2;
  background: var(--bz-footer-bg);
  backdrop-filter: blur(28px) saturate(120%);
  -webkit-backdrop-filter: blur(28px) saturate(120%);
}

/* â”€â”€ Top-edge luxury gradient line (replaces border) â”€â”€ */
.site-footer-inner::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(var(--bz-gold-rgb), 0.12) 15%,
    rgba(var(--bz-gold-rgb), 0.32) 38%,
    rgba(var(--bz-gold-rgb), 0.38) 50%,
    rgba(var(--bz-gold-rgb), 0.32) 62%,
    rgba(var(--bz-gold-rgb), 0.12) 85%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* â”€â”€ Noise/grain texture for premium tactile feel â”€â”€ */
.site-footer-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 0;
}

/* â”€â”€ Inner content container â”€â”€ */
.site-footer-inner__container {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: min(80rem, 100%);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 6vw, 5rem) clamp(2rem, 4.5vw, 3.5rem);
  position: relative;
  z-index: 2;
}

/* â”€â”€ Two-column main grid â”€â”€ */
.site-footer-inner__grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  grid-template-columns: 1fr;
  margin-bottom: clamp(2rem, 4.5vw, 3.5rem);
}

/* â”€â”€ Section headings â”€â”€ */
.site-footer-inner__about,
.site-footer-inner__menu {
  min-width: 0;
}

.site-footer-inner__title {
  color: rgba(var(--bz-gold-rgb), 0.92);
  font-size: clamp(0.72rem, 1.8vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  margin: 0 0 1.6em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.9em;
}

.site-footer-inner__title::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: clamp(1.4rem, 2.8vw, 2.2rem);
  height: 1px;
  background: rgba(var(--bz-gold-rgb), 0.55);
}

/* â”€â”€ About body text â”€â”€ */
.site-footer-inner__body {
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  line-height: 2;
  margin: 0;
  max-width: 38rem;
}

/* â”€â”€ Navigation link grid â”€â”€ */
.site-footer-inner__nav-list {
  display: grid;
  gap: clamp(0rem, 0.5vw, 0.15rem) clamp(0.75rem, 3vw, 1.5rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer-inner__nav-list li {
  margin: 0;
  min-width: 0;
}

.site-footer-inner__nav-link {
  align-items: center;
  color: rgba(255, 255, 255, 0.62);
  display: flex;
  font-size: clamp(0.84rem, 2.3vw, 0.94rem);
  gap: 0.6em;
  line-height: 1.45;
  overflow-wrap: anywhere;
  padding: 0.52em 0;
  position: relative;
  text-decoration: none;
  transition:
    color 0.38s var(--bz-ease),
    transform 0.38s var(--bz-ease),
    opacity 0.38s var(--bz-ease);
  width: 100%;
}

.site-footer-inner__nav-link::before {
  content: "";
  flex-shrink: 0;
  width: 0.18rem;
  height: 0.18rem;
  border-radius: 50%;
  background: rgba(var(--bz-gold-rgb), 0);
  transition:
    background 0.38s var(--bz-ease),
    transform 0.38s var(--bz-ease);
  transform: scale(0.4);
}

.site-footer-inner__nav-link:hover,
.site-footer-inner__nav-link:focus-visible {
  color: var(--bz-gold);
  opacity: 1;
  outline: none;
  transform: translateX(-4px);
}

.site-footer-inner__nav-link:hover::before,
.site-footer-inner__nav-link:focus-visible::before {
  background: rgba(var(--bz-gold-rgb), 0.75);
  transform: scale(1);
}

/* â”€â”€ Bottom bar â”€â”€ */
.site-footer-inner__bottom {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.5rem;
  justify-content: space-between;
  padding-top: clamp(1.25rem, 2.8vw, 1.75rem);
  position: relative;
}

.site-footer-inner__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.07) 20%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.07) 80%,
    transparent 100%
  );
}

.site-footer-inner__rights {
  color: rgba(255, 255, 255, 0.4);
  flex: 1 1 12rem;
  font-size: clamp(0.76rem, 2vw, 0.86rem);
  line-height: 1.65;
  min-width: 0;
  text-align: right;
}

.site-footer-inner__byline {
  color: rgba(var(--bz-gold-rgb), 0.52);
  flex: 0 1 auto;
  font-size: clamp(0.76rem, 2vw, 0.86rem);
  letter-spacing: 0.04em;
  text-align: left;
}

.site-footer-inner__dot {
  background: rgba(var(--bz-gold-rgb), 0.3);
  border-radius: 50%;
  display: none;
  flex: 0 0 auto;
  height: 0.22rem;
  width: 0.22rem;
}

/* â”€â”€â”€ Tablet and up â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (min-width: 768px) {
  .site-footer-inner__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(3rem, 6vw, 6rem);
  }

  .site-footer-inner__bottom {
    flex-wrap: nowrap;
  }

  .site-footer-inner__rights,
  .site-footer-inner__byline {
    white-space: nowrap;
  }

  .site-footer-inner__dot {
    display: block;
  }
}

@media (min-width: 1100px) {
  .site-footer-inner__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
  }

  .site-footer-inner__menu {
    padding-inline-start: clamp(1rem, 2vw, 2rem);
  }

  .site-footer-inner__nav-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.05rem, 0.4vw, 0.2rem) clamp(0.85rem, 1.6vw, 1.5rem);
  }

  .site-footer-inner__nav-link {
    font-size: clamp(0.86rem, 0.7vw, 0.94rem);
    padding-block: 0.48em;
  }
}

@media (hover: none) and (pointer: coarse), (max-width: 1024px) {
  .site-footer-inner {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgb(9, 9, 9);
  }
}

/* â”€â”€â”€ Reduced motion â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (prefers-reduced-motion: reduce) {
  .site-footer-inner__nav-link,
  .site-footer-inner__nav-link::before {
    transition: none;
  }

  .site-footer-inner__nav-link:hover,
  .site-footer-inner__nav-link:focus-visible {
    transform: none;
  }
}
