/* ==========================================================================
   Mahnam Food Industries - Official Elementor Theme Stylesheet
   ========================================================================== */

:root {
      /* Mahnam Corporate Brand Identity Colors */
      --brand-red: #e5232a;
      --brand-red-bright: #ff333a;
      --brand-red-light: #ff6b71;
      --brand-red-deep: #b5151c;
      --brand-red-glow: rgba(229, 35, 42, 0.45);
      --brand-red-subtle: rgba(229, 35, 42, 0.15);

      /* Pure Brand Accents */
      --brand-white: #ffffff;
      --gold-accent: #d97706;
      --gold-bright: #f59e0b;
      --gold-glow: rgba(245, 158, 11, 0.22);

      /* Light Canvas System */
      --bg-dark: #ffffff;
      --bg-subtle: #f8fafc;
      --bg-card: #ffffff;
      --bg-card-hover: #ffffff;
      --surface-glass: rgba(255, 255, 255, 0.96);
      --surface-border: rgba(0, 0, 0, 0.08);
      --surface-border-bright: rgba(229, 35, 42, 0.25);

      /* Typography Colors on Light Background */
      --text-main: #111827;
      --text-muted: #4b5563;
      --text-sub: #6b7280;

      /* Border Radii & Shadows */
      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 32px;
      --radius-full: 9999px;

      --shadow-gourmet: 0 20px 50px -10px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(0, 0, 0, 0.12);
      --shadow-card: 0 14px 40px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.06);
      --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      -webkit-tap-highlight-color: transparent;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: "Vazirmatn", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      background: #ffffff;
      background-color: #ffffff;
      background-attachment: fixed;
      color: var(--text-main);
      overflow-x: hidden;
      line-height: 1.8;
      selection-background-color: var(--brand-red);
      selection-color: #ffffff;
    }

    ::selection {
      background: var(--brand-red);
      color: #ffffff;
    }

    /* Ambient Lighting Background in Light Theme */
    .ambient-glow {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .ambient-glow .glow-1 {
      position: absolute;
      top: -120px;
      right: 12%;
      width: 720px;
      height: 720px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201, 32, 38, 0.06) 0%, rgba(229, 35, 42, 0.02) 45%, transparent 70%);
      filter: blur(85px);
      animation: pulseGlow 12s ease-in-out infinite alternate;
    }

    .ambient-glow .glow-2 {
      position: absolute;
      top: 38%;
      left: -100px;
      width: 620px;
      height: 620px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(229, 35, 42, 0.05) 0%, rgba(201, 32, 38, 0.015) 50%, transparent 70%);
      filter: blur(95px);
      animation: pulseGlow 15s ease-in-out infinite alternate-reverse;
    }

    .ambient-glow .glow-3 {
      position: absolute;
      bottom: 5%;
      right: -80px;
      width: 660px;
      height: 660px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201, 32, 38, 0.05) 0%, rgba(255, 71, 78, 0.015) 45%, transparent 70%);
      filter: blur(90px);
    }

    @keyframes pulseGlow {
      0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.8;
      }

      100% {
        transform: scale(1.15) translate(30px, 40px);
        opacity: 1;
      }
    }

    /* Subtle Paper Texture Noise */
    .noise-overlay {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 999;
      opacity: 0.022;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    }

    /* Scroll Progress Bar */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      width: 0%;
      background: linear-gradient(90deg, var(--brand-red-deep), var(--brand-red), var(--brand-red-bright));
      z-index: 1000;
      transition: width 0.1s ease;
      box-shadow: 0 0 10px var(--brand-red-glow);
    }

    /* Layout Container */
    .container {
      width: min(1280px, calc(100% - 48px));
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    /* Header & Navigation with Defined Thin Corporate Red Border */
    header {
      position: fixed;
      top: 18px;
      left: 0;
      right: 0;
      z-index: 500;
      transition: var(--transition);
    }

    .nav-bar {
      width: min(1320px, calc(100% - 32px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: clamp(12px, 1.6vw, 24px);
      padding: 8px 22px;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1.5px solid rgba(0, 0, 0, 0.1);
      border-radius: var(--radius-full);
      box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.05);
      transition: var(--transition);
      position: relative;
    }

    header.scrolled .nav-bar {
      padding: 6px 18px;
      background: rgba(255, 255, 255, 0.98);
      border: 1.5px solid rgba(0, 0, 0, 0.15);
      box-shadow: 0 14px 42px rgba(0, 0, 0, 0.25), 0 3px 10px rgba(0, 0, 0, 0.08);
    }

    /* Right & Left Navigation Columns (Split Layout) */
    .nav-side-right {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      /* In RTL, flex-end flows toward center logo */
      min-width: 0;
    }

    .nav-side-left {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: clamp(8px, 1vw, 16px);
      min-width: 0;
    }

    .nav-menu-desktop {
      display: flex;
      align-items: center;
      gap: clamp(8px, 1.1vw, 18px);
      list-style: none;
      margin: 0;
      padding: 0;
    }

    /* Center Brand Logo Container & Header Emblem (Bowtie Center Knot) */
    .nav-center-brand {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 30;
      height: 48px;
    }

    .brand-logo {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      padding: 0 10px;
      position: relative;
      z-index: 30;
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .brand-logo-img {
      height: 82px;
      width: auto;
      object-fit: contain;
      filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.22)) drop-shadow(0 2px 8px rgba(201, 32, 38, 0.45));
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      display: block;
      margin: -17px 0;
      position: relative;
      z-index: 35;
    }

    .brand-logo:hover .brand-logo-img {
      transform: scale(1.06) translateY(-2px);
      filter: drop-shadow(0 10px 24px rgba(229, 35, 42, 0.65)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    }

    header.scrolled .nav-center-brand {
      height: 44px;
    }

    header.scrolled .brand-logo-img {
      height: 72px;
      margin: -14px 0;
    }

    .brand-info {
      display: none;
    }

    /* Mobile drawer hidden by default on desktop */
    .mobile-nav-drawer {
      display: none;
    }

    .nav-link {
      color: #111111;
      text-decoration: none;
      font-weight: 700;
      font-size: clamp(0.84rem, 0.92vw, 0.94rem);
      white-space: nowrap;
      transition: var(--transition);
      position: relative;
      padding: 8px 3px;
      display: inline-block;
    }

    .nav-link:hover,
    .nav-link.active {
      color: #000000;
      font-weight: 900;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      width: 0;
      height: 2.5px;
      background: #000000;
      border-radius: 2px;
      transition: width 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    /* Theme Toggle Icon Button */
    .btn-theme-toggle {
      width: 42px;
      height: 42px;
      min-width: 42px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.04);
      border: 1px solid var(--surface-border);
      color: #1a1112;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .btn-theme-toggle:hover {
      background: rgba(0, 0, 0, 0.08);
      border-color: #000000;
      color: #000000;
      transform: rotate(-15deg) scale(1.08);
      box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
    }

    /* Floating Theme Switcher Icon */
    .floating-theme-switch {
      position: fixed;
      bottom: 24px;
      left: 24px;
      z-index: 999;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #1a1112;
      color: #ffffff;
      border: 1.5px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .floating-theme-switch:hover {
      transform: translateY(-4px) rotate(-15deg) scale(1.08);
      background: #0d0708;
      border-color: #ffffff;
      color: #ffffff;
      box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
    }

    .btn-sound {
      background: rgba(0, 0, 0, 0.04);
      border: 1px solid var(--surface-border);
      color: var(--text-muted);
      padding: 8px 14px;
      border-radius: var(--radius-full);
      font-size: 0.82rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: var(--transition);
    }

    .btn-sound:hover {
      background: rgba(0, 0, 0, 0.06);
      border-color: #000000;
      color: #000000;
    }

    .btn-sound.active {
      background: #000000;
      border-color: #000000;
      color: #ffffff;
    }

    .sound-bars {
      display: inline-flex;
      align-items: flex-end;
      gap: 2px;
      height: 12px;
    }

    .sound-bars span {
      width: 2px;
      background: currentColor;
      border-radius: 2px;
      height: 4px;
    }

    .btn-sound.active .sound-bars span:nth-child(1) {
      animation: soundBar 0.8s ease infinite alternate;
    }

    .btn-sound.active .sound-bars span:nth-child(2) {
      animation: soundBar 1.1s ease infinite alternate 0.2s;
    }

    .btn-sound.active .sound-bars span:nth-child(3) {
      animation: soundBar 0.9s ease infinite alternate 0.4s;
    }

    @keyframes soundBar {
      0% {
        height: 3px;
      }

      100% {
        height: 12px;
      }
    }

    /* CTA Button in Contrast Black */
    .btn-cta {
      background: #111111;
      color: #ffffff;
      text-decoration: none;
      padding: 9px 20px;
      border-radius: var(--radius-full);
      font-size: 0.9rem;
      font-weight: 900;
      white-space: nowrap;
      box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: none;
      flex-shrink: 0;
    }

    .btn-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
      background: #000000;
      color: #ffffff;
    }

    .mobile-menu-btn {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.05);
      border: 1.5px solid rgba(0, 0, 0, 0.15);
      color: #111111;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      padding: 0;
      transition: var(--transition);
      flex-shrink: 0;
    }

    .mobile-menu-btn:hover,
    .mobile-menu-btn.active {
      background: #000000;
      color: #ffffff;
      border-color: #000000;
      transform: scale(1.05);
    }

    @media (max-width: 1160px) {
      .nav-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 16px;
      }

      .nav-side-right .nav-menu-desktop,
      .nav-side-left .nav-menu-desktop {
        display: none !important;
      }

      .nav-center-brand {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        pointer-events: auto;
        height: 44px;
        z-index: 30;
      }

      .brand-logo {
        padding: 0 8px;
      }

      .brand-logo-img {
        height: 72px;
        margin: -14px 0;
      }

      .mobile-menu-btn {
        display: inline-flex;
      }

      /* Mobile Full Navigation Drawer */
      .mobile-nav-drawer {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border: 1.5px solid rgba(201, 32, 38, 0.28);
        border-radius: 24px;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16), 0 4px 14px rgba(0, 0, 0, 0.06);
        padding: 14px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 600;
        pointer-events: none;
      }

      .mobile-nav-drawer.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
      }

      .mobile-nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 4px;
      }

      .mobile-nav-link {
        display: block;
        padding: 12px 18px;
        border-radius: 14px;
        color: #111111;
        font-size: 0.96rem;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.25s ease;
      }

      .mobile-nav-link:hover,
      .mobile-nav-link.active {
        background: #000000;
        color: #ffffff;
        padding-right: 24px;
      }

      .mobile-drawer-cta-wrap {
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
      }

      .mobile-drawer-cta {
        width: 100%;
        justify-content: center;
      }
    }

    @media (max-width: 540px) {
      header {
        top: 12px;
      }

      .nav-bar {
        width: calc(100% - 24px);
        padding: 8px 14px;
      }

      .brand-logo-img {
        height: 54px;
        margin: -8px 0;
      }

      .btn-cta {
        padding: 6px 11px;
        font-size: 0.78rem;
        gap: 4px;
      }

      .btn-cta svg {
        width: 15px;
        height: 15px;
      }

      .btn-cta-full {
        display: none;
      }
    }

    /* ==========================================================================
       FULLSCREEN CINEMATIC VIDEO HERO SECTION
       ========================================================================== */
    .video-hero-fullscreen {
      position: relative;
      width: 100%;
      min-height: 100vh;
      min-height: 100dvh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background-color: #0e0909;
      z-index: 2;
    }

    .video-hero-media-wrap {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 1;
      pointer-events: none;
    }

    .video-hero-player {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      min-width: 100%;
      min-height: 100%;
      object-fit: cover;
      filter: brightness(0.82) contrast(1.08) saturate(1.15);
      transition: filter 0.5s ease;
    }

    /* Multi-layered cinematic gradient overlays transitioning into light canvas */
    .video-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg,
          rgba(14, 9, 9, 0.72) 0%,
          rgba(14, 9, 9, 0.3) 25%,
          rgba(14, 9, 9, 0.45) 55%,
          rgba(255, 255, 255, 0.85) 90%,
          #ffffff 100%);
      z-index: 2;
    }

    .video-hero-glow {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 45%,
          rgba(201, 32, 38, 0.22) 0%,
          rgba(14, 9, 9, 0.05) 55%,
          transparent 75%);
      z-index: 3;
      mix-blend-mode: screen;
    }

    .video-hero-vignette {
      position: absolute;
      inset: 0;
      box-shadow: inset 0 0 130px rgba(0, 0, 0, 0.8);
      z-index: 4;
    }

    /* Content Container */
    .video-hero-container {
      position: relative;
      z-index: 10;
      padding-top: 100px;
      padding-bottom: 90px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .video-hero-content {
      max-width: 960px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* Badge */
    .video-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(0, 0, 0, 0.75);
      border: 1px solid rgba(255, 255, 255, 0.4);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      padding: 8px 24px;
      border-radius: var(--radius-full);
      font-size: 0.9rem;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 26px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
      animation: fadeInDown 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .video-hero-badge .badge-pulse-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #ffffff;
      box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.35);
      animation: pulseDot 2s infinite;
    }

    /* Title */
    .video-hero-title {
      font-size: clamp(2.4rem, 5.5vw, 4.6rem);
      font-weight: 900;
      line-height: 1.25;
      letter-spacing: -0.04em;
      margin-bottom: 24px;
      color: #ffffff;
      text-shadow: 0 4px 28px rgba(0, 0, 0, 0.85), 0 2px 10px rgba(0, 0, 0, 0.95);
      animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
    }

    .video-hero-title .title-highlight-crisp {
      color: #ffffff;
      position: relative;
      display: inline-block;
      text-shadow: 0 0 35px rgba(255, 255, 255, 0.45);
    }

    .video-hero-title .title-highlight-red {
      color: #ffffff;
      display: inline-block;
      text-shadow: 0 0 30px rgba(255, 255, 255, 0.7);
      filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.95));
    }

    /* Description */
    .video-hero-desc {
      font-size: clamp(1.02rem, 1.7vw, 1.22rem);
      font-weight: 400;
      color: #ffffff;
      max-width: 820px;
      line-height: 1.95;
      margin-bottom: 34px;
      text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95);
      animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
    }

    /* Action Buttons */
    .video-hero-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 36px;
      animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
    }

    .video-hero-cta-main {
      box-shadow: 0 12px 32px rgba(201, 32, 38, 0.45), 0 0 24px rgba(229, 35, 42, 0.3);
      padding: 14px 34px;
      font-size: 1.05rem;
    }

    .video-hero-cta-main:hover {
      box-shadow: 0 16px 42px rgba(201, 32, 38, 0.65), 0 0 35px rgba(229, 35, 42, 0.5);
      transform: translateY(-3px) scale(1.02);
    }

    .video-hero-cta-secondary {
      background: rgba(24, 15, 16, 0.7);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, 0.22);
      color: #fff;
      padding: 14px 30px;
      font-size: 1.05rem;
    }

    .video-hero-cta-secondary:hover {
      background: rgba(201, 32, 38, 0.25);
      border-color: rgba(201, 32, 38, 0.6);
      transform: translateY(-3px);
    }

    /* Highlights Row */
    .video-hero-features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      width: 100%;
      max-width: 880px;
      margin-top: 6px;
      animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
    }

    .video-hero-feature-item {
      display: flex;
      align-items: center;
      gap: 14px;
      background: rgba(24, 15, 16, 0.78);
      border: 1px solid rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      padding: 14px 18px;
      border-radius: var(--radius-md);
      text-align: right;
      transition: var(--transition);
    }

    .video-hero-feature-item:hover {
      border-color: rgba(201, 32, 38, 0.45);
      background: rgba(35, 20, 22, 0.92);
      transform: translateY(-4px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55), 0 0 20px rgba(201, 32, 38, 0.18);
    }

    .video-hero-feature-item .feat-icon {
      font-size: 1.65rem;
      flex-shrink: 0;
    }

    .video-hero-feature-item strong {
      display: block;
      font-size: 0.95rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 3px;
    }

    .video-hero-feature-item span {
      display: block;
      font-size: 0.8rem;
      color: #e2d7d7;
      line-height: 1.45;
    }

    /* Floating Video Controls Pill (Sound + Play/Pause) */
    .video-hero-floating-controls {
      position: absolute;
      bottom: 28px;
      right: 32px;
      left: auto;
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 20;
    }

    .video-ctrl-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(24, 15, 16, 0.75);
      border: 1px solid rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      color: #fff;
      padding: 9px 18px;
      border-radius: var(--radius-full);
      font-size: 0.85rem;
      font-family: inherit;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    }

    .video-ctrl-btn:hover {
      background: rgba(201, 32, 38, 0.35);
      border-color: rgba(201, 32, 38, 0.55);
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.6), 0 0 15px rgba(201, 32, 38, 0.35);
    }

    .video-ctrl-btn.active {
      background: rgba(201, 32, 38, 0.88);
      border-color: var(--brand-red-light);
      box-shadow: 0 0 25px rgba(201, 32, 38, 0.55);
    }

    .ctrl-sound-waves {
      display: inline-flex;
      align-items: flex-end;
      gap: 3px;
      height: 14px;
    }

    .ctrl-sound-waves span {
      width: 3px;
      height: 4px;
      background: #ffffff;
      border-radius: 2px;
      transition: height 0.2s ease;
    }

    .video-ctrl-btn.active .ctrl-sound-waves span:nth-child(1) {
      animation: soundBar 0.9s infinite ease-in-out alternate;
    }

    .video-ctrl-btn.active .ctrl-sound-waves span:nth-child(2) {
      animation: soundBar 1.2s infinite ease-in-out alternate 0.15s;
    }

    .video-ctrl-btn.active .ctrl-sound-waves span:nth-child(3) {
      animation: soundBar 0.8s infinite ease-in-out alternate 0.3s;
    }

    .video-ctrl-btn.active .ctrl-sound-waves span:nth-child(4) {
      animation: soundBar 1.1s infinite ease-in-out alternate 0.2s;
    }

    /* Scroll Down Indicator */
    .video-hero-scroll-cue {
      position: absolute;
      bottom: 24px;
      right: 50%;
      transform: translateX(50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      text-decoration: none;
      color: rgba(255, 255, 255, 0.85);
      z-index: 20;
      transition: var(--transition);
      cursor: pointer;
    }

    .video-hero-scroll-cue:hover {
      color: #fff;
      transform: translateX(50%) translateY(3px);
    }

    .scroll-mouse-pill {
      width: 22px;
      height: 34px;
      border: 2px solid rgba(255, 255, 255, 0.6);
      border-radius: 12px;
      display: flex;
      justify-content: center;
      padding-top: 5px;
      backdrop-filter: blur(4px);
    }

    .scroll-wheel-dot {
      width: 4px;
      height: 7px;
      background: var(--brand-red-bright);
      border-radius: 2px;
      animation: scrollBounce 1.8s infinite;
    }

    .scroll-cue-text {
      font-size: 0.76rem;
      font-weight: 500;
      letter-spacing: 0.2px;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    }

    .scroll-cue-arrow {
      animation: arrowBounce 1.8s infinite ease-in-out;
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive adjustments for Video Hero */
    @media (max-width: 992px) {
      .video-hero-features {
        grid-template-columns: 1fr;
        max-width: 460px;
        gap: 12px;
      }

      .video-hero-container {
        padding-top: 110px;
        padding-bottom: 120px;
      }

      .video-hero-floating-controls {
        right: 20px;
        left: auto;
        bottom: 20px;
      }
    }

    @media (max-width: 640px) {
      .video-hero-title {
        font-size: 2.1rem;
      }

      .video-hero-badge {
        font-size: 0.78rem;
        padding: 6px 14px;
      }

      .video-hero-desc {
        font-size: 0.95rem;
      }

      .video-hero-floating-controls {
        right: 14px;
        left: auto;
        bottom: 14px;
        gap: 6px;
      }

      .video-ctrl-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
      }

      .video-hero-scroll-cue {
        display: none;
      }
    }

    /* Hero Showcase Section */
    .hero-section {
      min-height: auto;
      padding: 0;
      margin: 0;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      align-items: center;
      gap: 50px;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #ffffff;
      border: 1px solid rgba(229, 35, 42, 0.18);
      padding: 6px 18px;
      border-radius: var(--radius-full);
      font-size: 0.85rem;
      font-weight: 800;
      color: var(--brand-red-deep);
      margin-bottom: 24px;
      box-shadow: 0 4px 15px rgba(229, 35, 42, 0.08);
    }

    .hero-tag .pulse-dot {
      width: 8px;
      height: 8px;
      background: var(--brand-red);
      border-radius: 50%;
      box-shadow: 0 0 0 4px rgba(229, 35, 42, 0.2);
      animation: pulseDot 2s infinite;
    }

    @keyframes pulseDot {
      0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);
      }

      70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(0, 0, 0, 0);
      }

      100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
      }
    }

    .hero-title {
      font-size: clamp(2.6rem, 5vw, 4.4rem);
      font-weight: 900;
      line-height: 1.15;
      letter-spacing: -0.05em;
      margin-bottom: 22px;
      color: #111827;
    }

    .hero-title .highlight-red {
      color: var(--brand-red);
      background: rgba(229, 35, 42, 0.08);
      padding: 2px 14px;
      border-radius: 12px;
      display: inline-block;
      position: relative;
      box-shadow: 0 4px 15px rgba(229, 35, 42, 0.1);
    }

    .hero-title .highlight-crisp {
      position: relative;
      display: inline-block;
      color: var(--brand-red);
    }

    .hero-title .highlight-crisp::after {
      display: none;
    }

    .hero-desc {
      font-size: 1.12rem;
      color: #4b5563;
      line-height: 2.1;
      max-width: 580px;
      margin-bottom: 34px;
    }

    .hero-buttons {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .btn-main {
      background: #111111;
      color: #ffffff;
      text-decoration: none;
      padding: 15px 30px;
      border-radius: var(--radius-full);
      font-size: 1rem;
      font-weight: 900;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
      transition: var(--transition);
      cursor: pointer;
      border: none;
    }

    .btn-main:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
      background: #000000;
    }

    .btn-outline {
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.12);
      color: #111111;
      text-decoration: none;
      padding: 15px 28px;
      border-radius: var(--radius-full);
      font-size: 1rem;
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: var(--transition);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      cursor: pointer;
    }

    .btn-outline:hover {
      background: #000000;
      border-color: #000000;
      color: #ffffff;
      transform: translateY(-2px);
    }

    .hero-badges-row {
      display: flex;
      align-items: center;
      gap: 28px;
      padding-top: 20px;
      border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .hero-badge-item {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .badge-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      display: grid;
      place-items: center;
      color: var(--brand-red);
      font-size: 1.1rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    }

    .badge-text strong {
      display: block;
      font-size: 1rem;
      color: #111827;
    }

    .badge-text span {
      font-size: 0.76rem;
      color: #6b7280;
    }

    /* Hero Interactive Stage */
    .hero-stage-container {
      position: relative;
    }

    .hero-stage {
      position: relative;
      background: #ffffff;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(201, 32, 38, 0.12);
      padding: 24px;
      box-shadow: var(--shadow-gourmet);
      overflow: hidden;
      transform-style: preserve-3d;
      transition: transform 0.4s ease-out;
    }

    .stage-glow-ambient {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 60% 40%, rgba(201, 32, 38, 0.08) 0%, transparent 60%);
      pointer-events: none;
    }

    /* Switcher Tabs inside Hero Stage */
    .stage-tabs {
      display: flex;
      align-items: center;
      gap: 8px;
      background: #f1f2f4;
      padding: 6px;
      border-radius: var(--radius-full);
      border: 1px solid #e5e7eb;
      margin-bottom: 20px;
      position: relative;
      z-index: 5;
    }

    .stage-tab-btn {
      font-family: "Vazirmatn";
      flex: 1;
      padding: 8px 12px;
      border: none;
      background: transparent;
      color: #4b5563;
      font-weight: 700;
      font-size: 0.84rem;
      border-radius: var(--radius-full);
      cursor: pointer;
      transition: var(--transition);
      white-space: nowrap;
      text-align: center;
    }

    .stage-tab-btn.active {
      background: #111111;
      color: #ffffff;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    }

    /* Stage Slides */
    .stage-content {
      position: relative;
      min-height: 440px;
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }

    .stage-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      transform: scale(0.96);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .stage-slide.active {
      opacity: 1;
      pointer-events: auto;
      transform: scale(1);
    }

    .stage-slide-media {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: var(--radius-md);
      transition: transform 0.8s ease;
    }

    .stage-slide:hover .stage-slide-media {
      transform: scale(1.04);
    }

    .stage-slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(18, 12, 13, 0.92) 0%, rgba(18, 12, 13, 0.25) 50%, transparent 100%);
      pointer-events: none;
    }

    .stage-slide-info {
      position: relative;
      z-index: 4;
      padding: 24px;
    }

    .stage-slide-tag {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 800;
      color: #fff;
      background: var(--brand-red);
      padding: 4px 12px;
      border-radius: var(--radius-full);
      box-shadow: 0 4px 12px rgba(201, 32, 38, 0.4);
      margin-bottom: 8px;
    }

    .stage-slide-title {
      font-size: 1.5rem;
      font-weight: 900;
      color: #fff;
      margin-bottom: 6px;
    }

    .stage-slide-desc {
      font-size: 0.88rem;
      color: #f5ecec;
      line-height: 1.7;
      max-width: 420px;
    }

    /* Floating Pill Badges on Stage */
    .floating-pill {
      position: absolute;
      z-index: 10;
      background: #ffffff;
      border: 1px solid rgba(201, 32, 38, 0.3);
      padding: 10px 18px;
      border-radius: var(--radius-full);
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 10px 30px rgba(180, 40, 45, 0.12);
      animation: floatBadge 4.5s ease-in-out infinite;
    }

    .pill-crunch {
      top: 65px;
      left: -15px;
    }

    .pill-taste {
      bottom: 30px;
      right: -20px;
      animation-delay: 2s;
    }

    @keyframes floatBadge {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    .pill-icon {
      font-size: 1.2rem;
    }

    .pill-title {
      font-size: 0.85rem;
      font-weight: 900;
      color: #111111;
    }

    .pill-sub {
      font-size: 0.7rem;
      color: #000000;
      font-weight: 800;
    }

    /* Video Player inside Stage */
    .hero-video-wrapper {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .hero-video-wrapper video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: var(--radius-md);
    }

    .hero-video-controls {
      position: absolute;
      top: 16px;
      left: 16px;
      z-index: 5;
      display: flex;
      gap: 8px;
    }

    .v-control-btn {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.65);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: #fff;
      display: grid;
      place-items: center;
      cursor: pointer;
      font-size: 0.9rem;
      transition: var(--transition);
    }

    .v-control-btn:hover {
      background: var(--brand-red-bright);
      color: #fff;
      border-color: var(--brand-red-bright);
    }

    /* Marquee Banner */
    .marquee-wrapper {
      background: #ff0000;
      border-top: 1px solid rgba(0, 0, 0, 0.08);
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
      padding: 16px 0;
      overflow: hidden;
      white-space: nowrap;
      position: relative;
      z-index: 5;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    }

    .marquee-track {
      display: inline-flex;
      animation: marqueeScroll 28s linear infinite;
    }

    .marquee-track:hover {
      animation-play-state: paused;
    }

    @keyframes marqueeScroll {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(50%);
      }
    }

    .marquee-item {
      display: inline-flex;
      align-items: center;
      gap: 20px;
      padding: 0 24px;
      font-size: 1.05rem;
      font-weight: 800;
      color: #ffffff;
      letter-spacing: -0.2px;
    }

    .marquee-item b {
      color: #000000;
      font-size: 1.25rem;
      font-weight: 900;
    }

    .marquee-item .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #000000;
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    }

    /* Section Base Styling - Zero Spacing for Full Elementor Control */
    section {
      padding: 0;
      margin: 0;
      position: relative;
      z-index: 2;
      scroll-margin-top: 100px;
    }

    .section-header {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 30px;
    }

    .section-tag {
      display: inline-block;
      font-size: 0.82rem;
      font-weight: 900;
      color: var(--brand-red);
      background: rgba(229, 35, 42, 0.08);
      border: 1px solid rgba(229, 35, 42, 0.2);
      padding: 6px 18px;
      border-radius: var(--radius-full);
      margin-bottom: 16px;
      letter-spacing: 0.5px;
      box-shadow: 0 4px 15px rgba(229, 35, 42, 0.06);
    }

    .section-title {
      font-size: clamp(2rem, 3.8vw, 3.2rem);
      font-weight: 900;
      color: #111827;
      line-height: 1.2;
      letter-spacing: -0.04em;
      margin-bottom: 18px;
    }

    .section-desc {
      font-size: 1.08rem;
      color: #4b5563;
      line-height: 2;
    }

    /* Section: Video Reels & Motion Studio */
    .reels-section {
      background: #ffffff;
      position: relative;
    }

    .reels-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
    }

    .reel-card {
      position: relative;
      border-radius: 28px;
      overflow: hidden;
      aspect-ratio: 9 / 16;
      background: #181112;
      border: 2px solid rgba(255, 255, 255, 0.25);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
      cursor: pointer;
      transition: var(--transition);
      transform-style: preserve-3d;
    }

    .reel-card:hover {
      transform: translateY(-10px) scale(1.02);
      border-color: #ffffff;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    }

    .reel-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }

    .reel-card:hover .reel-video {
      transform: scale(1.06);
    }

    .reel-gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 35%, rgba(0, 0, 0, 0.4) 65%, rgba(0, 0, 0, 0.95) 100%);
      pointer-events: none;
    }

    /* Reel Card Header */
    .reel-header {
      position: absolute;
      top: 18px;
      left: 18px;
      right: 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 5;
    }

    .reel-badge {
      background: rgba(0, 0, 0, 0.65);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: var(--radius-full);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .reel-badge .live-dot {
      width: 6px;
      height: 6px;
      background: var(--brand-red-bright);
      border-radius: 50%;
    }

    .reel-action-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.65);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #fff;
      display: grid;
      place-items: center;
      font-size: 0.85rem;
      cursor: pointer;
      transition: var(--transition);
    }

    .reel-action-btn:hover {
      background: var(--brand-red-bright);
      color: #fff;
    }

    /* Reel Play Overlay */
    .reel-play-hint {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      z-index: 4;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .reel-card:hover .reel-play-hint {
      opacity: 1;
    }

    .reel-play-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--brand-red-bright);
      backdrop-filter: blur(8px);
      display: grid;
      place-items: center;
      color: #ffffff;
      font-size: 1.4rem;
      box-shadow: 0 0 30px rgba(201, 32, 38, 0.6);
      transform: scale(0.9);
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .reel-card:hover .reel-play-icon {
      transform: scale(1.05);
    }

    /* Reel Bottom Details */
    .reel-footer {
      position: absolute;
      bottom: 20px;
      left: 18px;
      right: 18px;
      z-index: 5;
    }

    .reel-category {
      font-size: 0.74rem;
      font-weight: 900;
      color: #ffffff;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 4px;
    }

    .reel-title {
      font-size: 1.22rem;
      font-weight: 900;
      color: #fff;
      margin-bottom: 8px;
      line-height: 1.35;
    }

    .reel-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 12px;
    }

    .reel-tag {
      font-size: 0.7rem;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(6px);
      padding: 2px 8px;
      border-radius: 6px;
      color: #f7eded;
      font-weight: 600;
    }

    .reel-progress-bar {
      width: 100%;
      height: 3px;
      background: rgba(255, 255, 255, 0.25);
      border-radius: 2px;
      overflow: hidden;
      margin-top: 8px;
    }

    .reel-progress-fill {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, var(--brand-red), var(--brand-red-bright), #ff8f94);
      transition: width 0.1s linear;
    }

    /* Section: Visual Food & Product Catalog */
    .catalog-section {
      background: #ffffff;
      position: relative;
    }

    .catalog-filters {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 50px;
    }

    .filter-btn {
      font-family: "Vazirmatn";
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.1);
      color: #111111;
      padding: 10px 24px;
      border-radius: var(--radius-full);
      font-weight: 800;
      font-size: 0.92rem;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    }

    .filter-btn:hover {
      color: #ffffff;
      border-color: #000000;
      background: #111111;
    }

    .filter-btn.active {
      background: #000000;
      color: #ffffff;
      border-color: #000000;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 32px;
    }

    .product-card {
      background: #ffffff;
      border-radius: var(--radius-md);
      border: 1px solid rgba(0, 0, 0, 0.08);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: var(--transition);
      box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15);
      cursor: pointer;
      position: relative;
    }

    .product-card:hover {
      transform: translateY(-8px);
      border-color: #000000;
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    }

    .product-img-wrapper {
      position: relative;
      width: 100%;
      height: 270px;
      overflow: hidden;
      background: #f9fafb;
    }

    .product-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .product-card:hover .product-img {
      transform: scale(1.08);
    }

    .product-badge-float {
      position: absolute;
      top: 16px;
      right: 16px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(0, 0, 0, 0.15);
      color: #000000;
      font-size: 0.76rem;
      font-weight: 900;
      padding: 5px 14px;
      border-radius: var(--radius-full);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .product-flavor-tag {
      position: absolute;
      bottom: 16px;
      left: 16px;
      background: #000000;
      color: #ffffff;
      font-size: 0.72rem;
      font-weight: 800;
      padding: 4px 12px;
      border-radius: var(--radius-full);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }

    .product-details {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .product-cat-name {
      font-size: 0.78rem;
      font-weight: 900;
      color: #000000;
      margin-bottom: 6px;
    }

    .product-title {
      font-size: 1.28rem;
      font-weight: 900;
      color: #111111;
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .product-description {
      font-size: 0.88rem;
      color: #4b5563;
      line-height: 1.8;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .product-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 16px;
      border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .product-cook-time {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.82rem;
      color: #374151;
      font-weight: 700;
    }

    .btn-view-quick {
      background: #f3f4f6;
      border: 1px solid #e5e7eb;
      color: #111111;
      padding: 6px 14px;
      border-radius: var(--radius-full);
      font-size: 0.8rem;
      font-weight: 800;
      cursor: pointer;
      transition: var(--transition);
    }

    .btn-view-quick:hover {
      background: #000000;
      color: #ffffff;
      border-color: #000000;
    }

    /* Section: Sensory Taste Experience */
    .sensory-section {
      background: #ffffff;
      position: relative;
      overflow: hidden;
    }

    .sensory-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
    }

    .sensory-card {
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: var(--radius-md);
      padding: 32px 24px;
      text-align: center;
      transition: var(--transition);
      box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15);
      position: relative;
      overflow: hidden;
    }

    .sensory-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, transparent, #000000, transparent);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .sensory-card:hover {
      transform: translateY(-8px);
      border-color: #000000;
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    }

    .sensory-card:hover::before {
      opacity: 1;
    }

    .sensory-icon-wrap {
      width: 70px;
      height: 70px;
      margin: 0 auto 20px;
      border-radius: 22px;
      background: #f4f4f5;
      border: 1px solid #e4e4e7;
      display: grid;
      place-items: center;
      font-size: 2rem;
      color: #111111;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .sensory-title {
      font-size: 1.3rem;
      font-weight: 900;
      color: #111111;
      margin-bottom: 12px;
    }

    .sensory-text {
      font-size: 0.9rem;
      color: #4b5563;
      line-height: 1.85;
    }

    /* Section: Chef's Recipes */
    .recipes-section {
      background: #ffffff;
    }

    .recipes-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 32px;
    }

    .recipe-card {
      background: #ffffff;
      border-radius: var(--radius-md);
      border: 1px solid rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: var(--transition);
      box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15);
    }

    .recipe-card:hover {
      border-color: #000000;
      transform: translateY(-6px);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    }

    .recipe-media {
      position: relative;
      height: 220px;
      overflow: hidden;
    }

    .recipe-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .recipe-card:hover .recipe-media img {
      transform: scale(1.05);
    }

    .recipe-badge-tag {
      position: absolute;
      top: 14px;
      right: 14px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(0, 0, 0, 0.15);
      color: #000000;
      font-size: 0.74rem;
      font-weight: 900;
      padding: 4px 12px;
      border-radius: var(--radius-full);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .recipe-content {
      padding: 24px;
    }

    .recipe-headline {
      font-size: 1.25rem;
      font-weight: 900;
      color: #111111;
      margin-bottom: 12px;
    }

    .recipe-summary {
      font-size: 0.88rem;
      color: #4b5563;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .recipe-steps-list {
      list-style: none;
      margin-bottom: 20px;
    }

    .recipe-steps-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.85rem;
      color: #4b5563;
      margin-bottom: 8px;
    }

    .recipe-steps-list li span {
      color: #000000;
      font-weight: 900;
    }

    .btn-watch-recipe {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #000000;
      font-weight: 900;
      font-size: 0.88rem;
      text-decoration: none;
      cursor: pointer;
      transition: var(--transition);
    }

    .btn-watch-recipe:hover {
      color: #333333;
      transform: translateX(-4px);
    }

    /* Heritage & Stats Section */
    .heritage-section {
      background: #fbfbfc;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      padding: 0;
      margin: 0;
    }

    .heritage-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 60px;
    }

    .heritage-tag {
      color: var(--brand-red);
      background: rgba(229, 35, 42, 0.08);
      border: 1px solid rgba(229, 35, 42, 0.2);
      display: inline-block;
      padding: 5px 16px;
      border-radius: var(--radius-full);
      font-size: 0.85rem;
      font-weight: 900;
      margin-bottom: 14px;
      box-shadow: 0 4px 15px rgba(229, 35, 42, 0.06);
    }

    .heritage-title {
      font-size: clamp(2rem, 3.2vw, 2.8rem);
      font-weight: 900;
      color: #111827;
      line-height: 1.3;
      margin-bottom: 20px;
    }

    .heritage-desc {
      font-size: 1.05rem;
      color: #4b5563;
      line-height: 2.1;
      margin-bottom: 30px;
    }

    .stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .stat-box {
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: var(--radius-md);
      padding: 20px 16px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .stat-number {
      font-size: 2.4rem;
      font-weight: 900;
      color: #000000;
      line-height: 1.1;
      margin-bottom: 6px;
    }

    .stat-label {
      font-size: 0.8rem;
      color: #4b5563;
      font-weight: 700;
    }

    .heritage-visual {
      position: relative;
    }

    .heritage-img-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
      border: 3px solid #ffffff;
    }

    .heritage-img-card img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      display: block;
    }

    .heritage-floating-stamp {
      position: absolute;
      bottom: -25px;
      left: -25px;
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background: #ffffff;
      border: 4px solid #000000;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
      padding: 10px;
    }

    .heritage-floating-stamp img {
      width: 95px;
      height: auto;
      object-fit: contain;
    }

    .heritage-floating-stamp span {
      font-size: 0.72rem;
      font-weight: 900;
      margin-top: 4px;
      color: #000000;
      letter-spacing: 0.5px;
    }

    /* ==========================================================================
       SUBSIDIARY COMPANIES & STRATEGIC ARMS (شرکت‌های زیرمجموعه مهنام)
       ========================================================================== */
    .subsidiaries-section {
      background: #ffffff;
      position: relative;
      overflow: hidden;
      padding: 0;
      margin: 0;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .subsidiaries-header {
      text-align: center;
      max-width: 860px;
      margin: 0 auto 36px;
    }

    /* Holding Master Executive Showcase Banner */
    .subsidiaries-holding-banner {
      background: #ffffff;
      border: 1.5px solid rgba(0, 0, 0, 0.08);
      border-radius: var(--radius-lg);
      padding: 32px 36px;
      margin-bottom: 32px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 16px 45px rgba(0, 0, 0, 0.15);
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 28px;
    }

    .subsidiaries-holding-banner::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 10% 50%, rgba(0, 0, 0, 0.03), transparent 55%),
        radial-gradient(circle at 90% 50%, rgba(217, 119, 6, 0.06), transparent 55%);
      pointer-events: none;
    }

    .holding-master-logo {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 105px;
      height: 105px;
      border-radius: 24px;
      background: #f9fafb;
      border: 2px solid #e5e7eb;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
      flex-shrink: 0;
      z-index: 2;
    }

    .holding-logo-img {
      width: 78px;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.15));
    }

    .holding-banner-content {
      position: relative;
      z-index: 2;
    }

    .holding-badge-top {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.78rem;
      font-weight: 900;
      color: #000000;
      background: #f3f4f6;
      border: 1px solid #e5e7eb;
      padding: 4px 14px;
      border-radius: var(--radius-full);
      margin-bottom: 10px;
    }

    .holding-banner-title {
      font-size: 1.55rem;
      font-weight: 900;
      color: #111111;
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .holding-banner-desc {
      font-size: 0.92rem;
      color: #4b5563;
      line-height: 1.8;
      max-width: 620px;
    }

    .holding-banner-stats {
      display: flex;
      flex-direction: column;
      gap: 12px;
      position: relative;
      z-index: 2;
      flex-shrink: 0;
      border-right: 1.5px solid #e5e7eb;
      padding-right: 28px;
    }

    .holding-stat-item {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }

    .holding-stat-val {
      font-size: 1.35rem;
      font-weight: 900;
      color: #000000;
      line-height: 1.2;
    }

    .holding-stat-lbl {
      font-size: 0.76rem;
      color: #6b7280;
      font-weight: 600;
    }

    /* Subsidiary Logo Wall / Showcase Grid */
    .subsidiaries-logo-wall {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 14px;
      margin-bottom: 36px;
    }

    .subsidiary-logo-pill {
      background: #ffffff;
      border: 1.5px solid rgba(0, 0, 0, 0.08);
      border-radius: 18px;
      padding: 16px 12px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
      cursor: pointer;
      transition: var(--transition);
      text-decoration: none;
      color: #111111;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
      position: relative;
      overflow: hidden;
    }

    .subsidiary-logo-pill:hover,
    .subsidiary-logo-pill.active {
      transform: translateY(-5px);
      border-color: #000000;
      background: #ffffff;
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
    }

    .logo-pill-emblem {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: #111111;
      border: 1px solid #000000;
      display: grid;
      place-items: center;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    .subsidiary-logo-pill:hover .logo-pill-emblem,
    .subsidiary-logo-pill.active .logo-pill-emblem {
      transform: scale(1.08) rotate(3deg);
    }

    .logo-pill-emblem svg {
      width: 28px;
      height: 28px;
    }

    .logo-pill-title {
      font-size: 0.82rem;
      font-weight: 800;
      color: #111111;
      line-height: 1.35;
    }

    .logo-pill-tag {
      font-size: 0.68rem;
      color: #000000;
      font-weight: 700;
    }

    .subsidiaries-filters {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 44px;
    }

    .subsidiary-filter-btn {
      font-family: inherit;
      padding: 9px 18px;
      border-radius: var(--radius-full);
      background: #ffffff;
      border: 1.5px solid rgba(0, 0, 0, 0.1);
      color: #111111;
      font-size: 0.86rem;
      font-weight: 800;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .subsidiary-filter-btn svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }

    .subsidiary-filter-btn:hover {
      border-color: #000000;
      color: #ffffff;
      background: #111111;
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    }

    .subsidiary-filter-btn.active {
      background: #000000;
      color: #ffffff;
      border-color: #000000;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    }

    .subsidiaries-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
      gap: 30px;
    }

    .subsidiary-card {
      background: #ffffff;
      border: 1.5px solid rgba(0, 0, 0, 0.08);
      border-radius: var(--radius-md);
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      box-shadow: 0 14px 38px rgba(0, 0, 0, 0.12);
      transition: var(--transition);
      overflow: hidden;
    }

    .subsidiary-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #111111, #333333);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .subsidiary-card:hover {
      transform: translateY(-8px);
      border-color: #000000;
      box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
    }

    .subsidiary-card:hover::before {
      opacity: 1;
    }

    .subsidiary-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 20px;
    }

    .subsidiary-logo-badge {
      width: 66px;
      height: 66px;
      border-radius: 20px;
      background: linear-gradient(135deg, #e5232a 0%, #961217 100%);
      border: 2px solid rgba(251, 191, 36, 0.5);
      display: grid;
      place-items: center;
      box-shadow: 0 10px 24px rgba(201, 32, 38, 0.32), inset 0 1px 2px rgba(255, 255, 255, 0.4);
      flex-shrink: 0;
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    }

    .subsidiary-card:hover .subsidiary-logo-badge {
      transform: scale(1.08) rotate(-3deg);
      border-color: #d97706;
      box-shadow: 0 14px 30px rgba(201, 32, 38, 0.45);
    }

    .subsidiary-logo-svg {
      width: 38px;
      height: 38px;
      display: block;
    }

    .subsidiary-badges-col {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 6px;
    }

    .subsidiary-holding-tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 0.72rem;
      font-weight: 800;
      color: #b45309;
      background: rgba(245, 158, 11, 0.14);
      border: 1px solid rgba(217, 119, 6, 0.3);
      padding: 3px 10px;
      border-radius: var(--radius-full);
    }

    .subsidiary-status {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.72rem;
      font-weight: 900;
      padding: 3px 10px;
      border-radius: var(--radius-full);
      background: #f3f4f6;
      color: #000000;
      border: 1px solid #e5e7eb;
    }

    .subsidiary-status .status-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #10b981;
      box-shadow: 0 0 8px #10b981;
    }

    @media (max-width: 1040px) {
      .subsidiaries-holding-banner {
        grid-template-columns: auto 1fr;
        padding: 26px;
        gap: 20px;
      }

      .holding-banner-stats {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-around;
        border-right: none;
        border-top: 1.5px solid rgba(201, 32, 38, 0.18);
        padding-right: 0;
        padding-top: 18px;
        margin-top: 6px;
      }

      .holding-stat-item {
        align-items: center;
      }

      .subsidiaries-logo-wall {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 640px) {
      .subsidiaries-holding-banner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 22px 18px;
      }

      .holding-master-logo {
        margin: 0 auto;
      }

      .holding-banner-desc {
        font-size: 0.88rem;
      }

      .subsidiaries-logo-wall {
        display: flex;
        overflow-x: auto;
        padding-bottom: 12px;
        scroll-snap-type: x mandatory;
        gap: 12px;
      }

      .subsidiary-logo-pill {
        min-width: 140px;
        flex-shrink: 0;
        scroll-snap-align: start;
      }

      .subsidiaries-grid {
        grid-template-columns: 1fr;
      }
    }

    .subsidiary-title {
      font-size: 1.32rem;
      font-weight: 900;
      color: #111111;
      margin-bottom: 6px;
      line-height: 1.35;
    }

    .subsidiary-eng-name {
      font-size: 0.78rem;
      font-weight: 800;
      color: #000000;
      letter-spacing: 0.5px;
      margin-bottom: 14px;
      text-transform: uppercase;
      direction: ltr;
      text-align: right;
    }

    .subsidiary-desc {
      font-size: 0.94rem;
      color: #4b5563;
      line-height: 1.9;
      margin-bottom: 22px;
      flex-grow: 1;
    }

    .subsidiary-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 22px;
    }

    .subsidiary-tag {
      font-size: 0.75rem;
      font-weight: 800;
      padding: 3px 10px;
      border-radius: 8px;
      background: #f3f4f6;
      color: #111111;
      border: 1px solid #e5e7eb;
    }

    .subsidiary-metric-box {
      background: #f9fafb;
      border: 1px dashed rgba(0, 0, 0, 0.2);
      border-radius: 12px;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .subsidiary-metric-val {
      font-size: 1.15rem;
      font-weight: 900;
      color: #000000;
    }

    .subsidiary-metric-lbl {
      font-size: 0.76rem;
      font-weight: 600;
      color: #6b7280;
    }

    .btn-subsidiary-action {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 12px 18px;
      border-radius: var(--radius-full);
      background: #ffffff;
      border: 1.5px solid #000000;
      color: #000000;
      font-weight: 900;
      font-size: 0.88rem;
      cursor: pointer;
      text-decoration: none;
      transition: var(--transition);
    }

    .btn-subsidiary-action:hover {
      background: #000000;
      color: #ffffff;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
      transform: translateY(-2px);
    }

    /* CTA Section */
    .cta-section {
      background: radial-gradient(circle at center, #c92026 0%, #8b0f14 100%);
      position: relative;
      overflow: hidden;
      padding: 30px 0;
      margin: 0;
      text-align: center;
    }

    .cta-inner {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .cta-badge {
      display: inline-block;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.35);
      color: #fff;
      font-size: 0.85rem;
      font-weight: 800;
      padding: 6px 18px;
      border-radius: var(--radius-full);
      margin-bottom: 20px;
    }

    .cta-title {
      font-size: clamp(2.2rem, 4vw, 3.6rem);
      font-weight: 900;
      color: #fff;
      margin-bottom: 20px;
      line-height: 1.25;
    }

    .cta-text {
      font-size: 1.15rem;
      color: #ffffff;
      line-height: 2;
      margin-bottom: 36px;
    }

    .btn-cta-white {
      background: #ffffff;
      color: #000000;
      font-size: 1.05rem;
      font-weight: 900;
      padding: 16px 36px;
      border-radius: var(--radius-full);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
      transition: var(--transition);
      border: none;
      cursor: pointer;
    }

    .btn-cta-white:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
      background: #000000;
      color: #ffffff;
    }

    /* Footer with Official Logo */
    footer {
      background: #0f0708;
      border-top: 1px solid rgba(0, 0, 0, 0.2);
      padding: 80px 0 40px;
      color: #e2d7d7;
    }

    #mahnam-site-footer.mahnam-custom-footer {
      padding: 0;
      background: #0f0708;
      color: #e2d7d7;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
      gap: 50px;
      padding-bottom: 50px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
    }

    .footer-logo-img {
      height: 64px;
      width: auto;
      object-fit: contain;
      margin-bottom: 16px;
      filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.5));
    }

    .footer-logo-title {
      font-size: 1.6rem;
      font-weight: 900;
      color: #fff;
      margin-bottom: 12px;
    }

    .footer-text {
      font-size: 0.92rem;
      color: #b0a3a4;
      line-height: 2;
      max-width: 360px;
      margin-bottom: 24px;
    }

    .social-links {
      display: flex;
      gap: 12px;
    }

    .social-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      display: grid;
      place-items: center;
      color: #fff;
      text-decoration: none;
      transition: var(--transition);
    }

    .social-btn:hover {
      background: #ffffff;
      color: #000000;
      border-color: #ffffff;
    }

    .footer-col h4 {
      font-size: 1.08rem;
      font-weight: 900;
      color: #ffffff;
      margin-bottom: 22px;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: #b0a3a4;
      text-decoration: none;
      font-size: 0.9rem;
      transition: var(--transition);
    }

    .footer-links a:hover {
      color: #fff;
      padding-right: 6px;
    }

    .footer-link-badge {
      display: inline-block;
      font-size: 0.72rem;
      padding: 2px 8px;
      border-radius: 10px;
      background: rgba(229, 57, 53, 0.2);
      color: #ff6b6b;
      font-weight: 700;
      margin-right: 6px;
    }

    .footer-contact-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.92rem;
      color: #b0a3a4;
      line-height: 1.8;
    }

    .footer-contact-item .contact-icon {
      font-size: 1.1rem;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .footer-contact-item a.contact-link {
      color: #b0a3a4;
      text-decoration: none;
      transition: var(--transition, all 0.3s ease);
    }

    .footer-contact-item a.contact-link:hover {
      color: #ffffff;
    }

    .footer-hours-item {
      padding-top: 8px;
      border-top: 1px dashed rgba(255, 255, 255, 0.12);
      font-size: 0.85rem;
      color: #94a3b8;
    }

    .footer-contact-extra {
      margin-top: 10px;
      padding-top: 10px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 30px;
      font-size: 0.82rem;
      color: #8c7d7e;
    }

    .mahnam-footer-bottom-wrap {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.86rem;
      color: #8c7d7e;
      flex-wrap: wrap;
      gap: 16px;
      padding: 0;
    }

    .footer-site-credit {
      color: #cbd5e1;
      font-weight: 600;
      font-size: 0.85rem;
    }

    .footer-back-to-top {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #cbd5e1;
      text-decoration: none;
      padding: 6px 14px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      font-size: 0.82rem;
      transition: var(--transition, all 0.3s ease);
      cursor: pointer;
    }

    .footer-back-to-top:hover {
      background: #ffffff;
      color: #000000;
      border-color: #ffffff;
      transform: translateY(-2px);
    }

    /* Modal / Theater for Video Reels */
    .theater-modal {
      position: fixed;
      inset: 0;
      background: rgb(255 0 0 / 35%);
      backdrop-filter: blur(20px);
      z-index: 1200;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .theater-modal.active {
      opacity: 1;
      pointer-events: auto;
    }

    .theater-content {
      width: min(960px, 100%);
      max-height: 90vh;
      background: #ffffff;
      border: 1px solid rgba(201, 32, 38, 0.2);
      border-radius: var(--radius-lg);
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
      position: relative;
    }

    .theater-close-btn {
      position: absolute;
      top: 18px;
      left: 18px;
      z-index: 20;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.65);
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: #fff;
      display: grid;
      place-items: center;
      font-size: 1.2rem;
      cursor: pointer;
      transition: var(--transition);
    }

    .theater-close-btn:hover {
      background: #000000;
      border-color: #000000;
    }

    .theater-video-wrap {
      background: #000;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
    }

    .theater-video-wrap video {
      width: 100%;
      height: 100%;
      max-height: 80vh;
      object-fit: cover;
    }

    .theater-info-wrap {
      padding: 40px 32px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
    }

    .theater-info-tag {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 900;
      color: #fff;
      background: #000000;
      padding: 4px 14px;
      border-radius: var(--radius-full);
      margin-bottom: 12px;
      width: fit-content;
    }

    .theater-info-title {
      font-size: 1.7rem;
      font-weight: 900;
      color: #111111;
      margin-bottom: 14px;
      line-height: 1.3;
    }

    .theater-info-desc {
      font-size: 0.95rem;
      color: #4b5563;
      line-height: 1.9;
      margin-bottom: 24px;
    }

    .theater-features {
      margin-bottom: 28px;
    }

    .theater-feature-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.9rem;
      color: #111111;
      margin-bottom: 10px;
    }

    .theater-feature-item i {
      color: #000000;
      font-style: normal;
    }

    /* Quick View Modal */
    .quickview-modal {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(18px);
      z-index: 1250;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
    }

    .quickview-modal.active {
      opacity: 1;
      pointer-events: auto;
    }

    .quickview-content {
      width: min(850px, 100%);
      background: #ffffff;
      border: 1px solid rgba(201, 32, 38, 0.2);
      border-radius: var(--radius-lg);
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      overflow: hidden;
      box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
      position: relative;
    }

    .quickview-img-wrap {
      width: 100%;
      height: 100%;
      min-height: 380px;
      position: relative;
      background: #fff2f4;
    }

    .quickview-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .quickview-info {
      padding: 36px 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .heritage-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .theater-content,
      .quickview-content {
        grid-template-columns: 1fr;
        max-height: 85vh;
        overflow-y: auto;
      }

      .theater-video-wrap {
        height: 360px;
      }
    }

    @media (max-width: 768px) {

      .hero-section {
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
        margin-bottom: 0;
      }

      .hero-title {
        font-size: 2.3rem;
      }

      .hero-badges-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }

      .reels-grid {
        grid-template-columns: 1fr;
      }

      .products-grid {
        grid-template-columns: 1fr;
      }

      .subsidiaries-grid {
        grid-template-columns: 1fr;
      }

      .subsidiaries-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
      }

      .stats-row {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
      }
    }

    /* ==========================================================================
       ELEMENTOR ZERO SECTION SPACING & GAP OVERRIDES
       Ensures no unwanted spacing between sections; 100% controlled by Elementor.
       ========================================================================== */
    section,
    .hero-section,
    .reels-section,
    .catalog-section,
    .sensory-section,
    .recipes-section,
    .heritage-section,
    .subsidiaries-section,
    .video-hero-fullscreen {
      margin-top: 0 !important;
      margin-bottom: 0 !important;
      padding-top: 0 !important;
      padding-bottom: 0 !important;
    }

    /* Remove Elementor widget default bottom spacing */
    .elementor-widget-wrap > .elementor-widget:not(:last-child),
    .elementor-widget:not(:last-child),
    .elementor-widget,
    .elementor-section {
      margin-bottom: 0 !important;
      margin-top: 0 !important;
    }

    .elementor-section.elementor-section-gap-no,
    .elementor-section.elementor-section-gap-no > .elementor-container,
    .elementor-section-gap-no > .elementor-column-gap-no {
      gap: 0 !important;
    }

    .elementor-widget-container > section,
    .elementor-widget-container > div.marquee-wrapper {
      margin-top: 0 !important;
      margin-bottom: 0 !important;
      padding-top: 0 !important;
      padding-bottom: 0 !important;
    }