  * {
      box-sizing: border-box;
  }

  body {
      font-family: 'Vazirmatn', sans-serif;
      background: var(--cream);
      color: var(--text-dark);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
  }

  .mono-hero {
      width: 100%;
      padding: 58px 48px;
      background:
          radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 32%),
          linear-gradient(180deg, #fff0df 0%, #fff7ef 100%);
  }

  .mono-hero-card {
      width: min(1440px, 100%);
      min-height: 820px;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
      border-radius: 34px;
      background:
          radial-gradient(circle at 65% 50%, rgba(255, 204, 120, 0.35), transparent 30%),
          linear-gradient(135deg, #f27022  0%, #f27022  42%, #f27022  100%);
      box-shadow:
          0 32px 70px rgba(165, 74, 10, 0.25),
          inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }

  /* Header */

  .mono-header {
      height: 116px;
      padding: 0 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid rgba(160, 66, 0, 0.14);
      position: relative;
      z-index: 5;
  }

  .mono-logo img {
      width: 116px;
      height: auto;
      display: block;
  }

  .mono-nav {
      display: flex;
      align-items: center;
      gap: 46px;
  }

  .mono-nav a {
      color: #fff;
      text-decoration: none;
      font-size: 17px;
      font-weight: 800;
      text-shadow: 0 3px 8px rgba(110, 43, 0, 0.18);
  }

  .quick-order {
      height: 52px;
      padding: 0 28px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      text-decoration: none;
      font-size: 17px;
      font-weight: 900;
      background: rgba(255, 255, 255, 0.13);
      border: 1px solid rgba(255, 255, 255, 0.34);
      box-shadow:
          inset 0 1px 0 rgba(255, 255, 255, 0.32),
          0 12px 28px rgba(120, 48, 0, 0.16);
  }

  /* Main */

  .mono-hero-content {
      position: relative;
      z-index: 3;
      min-height: 704px;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      align-items: center;
      padding: 40px 68px 74px;
  }

  .hero-text {
      color: #fff;
      position: relative;
      z-index: 3;
  }

  .hero-text h1 {
      margin: 0;
      font-size: clamp(54px, 5vw, 82px);
      line-height: 1.42;
      font-weight: 1000;
      letter-spacing: -3px;
      text-shadow:
          0 7px 0 rgba(119, 52, 7, 0.28),
          0 16px 22px rgba(93, 37, 0, 0.34);
  }

  .hero-text h1::first-line {
      color: #fff;
  }

  .hero-text p {
      margin: 26px 0 0;
      font-size: 17px;
      line-height: 2.2;
      font-weight: 800;
      color: rgba(255, 255, 255, 0.96);
      text-shadow: 0 5px 12px rgba(111, 42, 0, 0.2);
  }

  .hero-actions {
      margin-top: 42px;
      display: flex;
      align-items: center;
      gap: 24px;
  }

  .btn {
      min-width: 214px;
      height: 58px;
      padding: 0 26px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      text-decoration: none;
      font-size: 16px;
      font-weight: 900;
      transition: 0.2s ease;
  }

  .btn:hover {
      transform: translateY(-3px);
  }

  .btn-orange {
      color: #fff;
      background: linear-gradient(135deg, #ff8a1a, #ff6b16);
      border: 1px solid rgba(255, 255, 255, 0.22);
      box-shadow:
          inset 0 1px 0 rgba(255, 255, 255, 0.3),
          0 16px 32px rgba(137, 55, 0, 0.25);
  }

  .btn-orange span {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.15);
      font-size: 22px;
  }

  .btn-white {
      color: #2d2018;
      background: #fff;
      box-shadow: 0 16px 32px rgba(111, 45, 0, 0.18);
  }

  .whatsapp {
      color: #16b857;
      font-size: 24px;
  }

  /* Features */

  .features {
      width: 500px;
      height: 108px;
      margin-top: 44px;
      border-radius: 24px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      overflow: hidden;
      background: rgba(255, 255, 255, 0.13);
      border: 1px solid rgba(255, 255, 255, 0.28);
      backdrop-filter: blur(10px);
  }

  .feature {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 7px;
      color: #fff;
      font-weight: 900;
      font-size: 14px;
      position: relative;
  }

  .feature:not(:last-child)::after {
      content: "";
      position: absolute;
      left: 0;
      top: 24px;
      width: 1px;
      height: 60px;
      background: rgba(255, 255, 255, 0.36);
  }

  .feature-icon {
      font-size: 28px;
      filter: drop-shadow(0 5px 8px rgba(110, 44, 0, 0.24));
  }

  /* Visual */

  .hero-visual {
      position: relative;
      height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .hero-visual img {
      width: 140%;
      max-width: 115%;
      height: auto;
      object-fit: contain;
      display: block;
      transform: translateX(-26px) translateY(22px);
      filter: drop-shadow(0 32px 34px rgba(102, 42, 0, 0.28));
      animation: floatHero 5s ease-in-out infinite;
  }

  /* Arrows */

  .slider-arrow {
      position: absolute;
      top: 51%;
      z-index: 7;
      width: 48px;
      height: 48px;
      border: 0;
      border-radius: 50%;
      background: #fff;
      color: #e85a00;
      font-size: 36px;
      line-height: 1;
      font-weight: 900;
      cursor: pointer;
      box-shadow: 0 14px 30px rgba(116, 48, 0, 0.18);
  }

  .arrow-right {
      right: 18px;
  }

  .arrow-left {
      left: 18px;
  }

  /* Dots */

  .slider-dots {
      position: absolute;
      bottom: 42px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 7;
      display: flex;
      gap: 18px;
  }

  .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #fff;
      opacity: 0.9;
  }

  .dot.active {
      background: #ff7210;
      box-shadow: 0 0 0 7px rgba(255, 114, 16, 0.16);
  }

  /* Decorative Soft Glows */

  .mono-hero-card::before {
      content: "";
      position: absolute;
      width: 620px;
      height: 620px;
      border-radius: 50%;
      right: 46%;
      top: 18%;
      background: radial-gradient(circle, rgba(255, 198, 109, 0.22), transparent 65%);
      pointer-events: none;
  }

  .mono-hero-card::after {
      content: "";
      position: absolute;
      width: 460px;
      height: 460px;
      border-radius: 50%;
      left: 8%;
      bottom: -160px;
      background: radial-gradient(circle, rgba(255, 189, 79, 0.22), transparent 68%);
      pointer-events: none;
  }

  @keyframes floatHero {

      0%,
      100% {
          transform: translateX(-26px) translateY(22px);
      }

      50% {
          transform: translateX(-26px) translateY(2px);
      }
  }

  /* Responsive */

  @media (max-width: 1200px) {
      .mono-nav {
          gap: 26px;
      }

      .hero-visual img {
          width: 650px;
      }

      .features {
          width: 460px;
      }
  }

  @media (max-width: 980px) {
      .mono-hero {
          padding: 24px 16px;
      }

      .mono-hero-card {
          min-height: auto;
          border-radius: 28px;
      }

      .mono-header {
          height: auto;
          padding: 22px 26px;
      }

      .mono-nav {
          display: none;
      }

      .mono-hero-content {
          grid-template-columns: 1fr;
          padding: 30px 26px 70px;
      }

      .hero-visual {
          order: -1;
          height: auto;
          justify-content: center;
      }

      .hero-visual img {
          width: 92%;
          transform: none;
      }

      @keyframes floatHero {

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

          50% {
              transform: translateY(-16px);
          }
      }

      .hero-text {
          text-align: center;
      }

      .hero-actions {
          justify-content: center;
      }

      .features {
          width: 100%;
      }
  }

  @media (max-width: 620px) {
      .mono-header {
          padding: 18px;
      }

      .mono-logo img {
          width: 90px;
      }

      .quick-order {
          height: 44px;
          padding: 0 16px;
          font-size: 13px;
      }

      .hero-text h1 {
          font-size: 38px;
          letter-spacing: -1px;
      }

      .hero-text p {
          font-size: 14px;
      }

      .hero-actions {
          flex-direction: column;
      }

      .btn {
          width: 100%;
      }

      .features {
          height: auto;
          grid-template-columns: repeat(2, 1fr);
      }

      .feature {
          min-height: 92px;
      }

      .feature:nth-child(2)::after {
          display: none;
      }

      .slider-arrow {
          display: none;
      }

      .slider-dots {
          bottom: 24px;
      }
  }

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

  :root {

      --cream: #FDF6EC;
      --cream-dark: #F5E8D0;
      --brown: #3D1F0E;
      --brown-mid: #6B3A1F;
      --orang: #f27022;
      --orang-light: #E8A84A;
      --gold: #D4A853;
      --gold-light: #F0CC7A;
      --pink: #F2A7B8;
      --pink-light: #FDDDE6;
      --mint: #A8D5B5;
      --mint-light: #D4EED9;
      --vanilla: #FFF4DC;
      --choc: #2C1006;
      --white: #FFFFFF;
      --text-dark: #2C1808;
      --text-mid: #5C3A1E;
      --text-light: #8B6347;
      --shadow-warm: 0 8px 32px rgba(60, 30, 10, 0.12);
      --shadow-card: 0 4px 16px rgba(60, 30, 10, 0.08);
      --radius-lg: 20px;
      --radius-md: 14px;
      --radius-sm: 8px;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  html {
      scroll-behavior: smooth
  }

  body {
      font-family: 'Vazirmatn', sans-serif;
      background: var(--cream);
      color: var(--text-dark);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
  }



  /* ── HERO ── */
  .hero {
      min-height: 100vh;
      background: linear-gradient(160deg, var(--vanilla) 0%, var(--cream) 50%, var(--pink-light) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      padding: 80px 24px 40px;
  }

  .hero-bg-circle {
      position: absolute;
      border-radius: 50%;
      opacity: 0.25;
      animation: float 6s ease-in-out infinite;
  }

  .hero-bg-circle:nth-child(1) {
      width: 400px;
      height: 400px;
      background: var(--gold-light);
      top: -100px;
      left: -100px;
      animation-delay: 0s
  }

  .hero-bg-circle:nth-child(2) {
      width: 300px;
      height: 300px;
      background: var(--pink);
      bottom: -50px;
      right: -80px;
      animation-delay: 2s
  }

  .hero-bg-circle:nth-child(3) {
      width: 200px;
      height: 200px;
      background: var(--mint);
      bottom: 100px;
      left: 20%;
      animation-delay: 4s
  }

  @keyframes float {

      0%,
      100% {
          transform: translateY(0) rotate(0deg)
      }

      50% {
          transform: translateY(-20px) rotate(5deg)
      }
  }

  .hero-content {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      max-width: 1100px;
      width: 100%;
      align-items: center;
  }

  .hero-text h1 {
      font-size: clamp(28px, 4.5vw, 54px);
      font-weight: 800;
      color: #fff;
      line-height: 1.3;
      margin-bottom: 16px;
  }

  .hero-text h1 span {
      color: var(--orang)
  }

  .hero-text p {
      font-size: 17px;
      color: #fff;
      line-height: 1.8;
      margin-bottom: 32px;
      max-width: 420px;
  }

  .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 12px
  }

  .btn-primary {
      background: var(--orang);
      color: var(--white);
      border: none;
      padding: 14px 28px;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      font-family: 'Vazirmatn', sans-serif;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
  }

  .btn-primary:hover {
      background: var(--brown-mid);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(100, 60, 20, 0.3)
  }

  .btn-whatsapp {
      background: #25D366;
      color: var(--white);
      border: none;
      padding: 14px 28px;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      font-family: 'Vazirmatn', sans-serif;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
  }

  .btn-whatsapp:hover {
      background: #128C7E;
      transform: translateY(-2px)
  }

  .btn-outline {
      background: transparent;
      color: var(--orang);
      border: 2px solid var(--orang);
      padding: 14px 28px;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      font-family: 'Vazirmatn', sans-serif;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
  }

  .btn-outline:hover {
      background: var(--orang);
      color: var(--white)
  }

  /* 3D floating objects SVG */
  .hero-visual {
      position: relative;
      height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .float-obj {
      position: absolute;
      animation: floatObj 5s ease-in-out infinite;
      filter: drop-shadow(0 8px 16px rgba(60, 30, 10, 0.15));
  }

  .float-obj:nth-child(1) {
      top: 10%;
      right: 0;
      animation-delay: 0s;
      animation-duration: 5s
  }

  .float-obj:nth-child(2) {
      top: 45%;
      left: 5%;
      animation-delay: 1.5s;
      animation-duration: 6s
  }

  .float-obj:nth-child(3) {
      bottom: 5%;
      right: 15%;
      animation-delay: 3s;
      animation-duration: 4.5s
  }

  .float-obj:nth-child(4) {
      top: 5%;
      left: 30%;
      animation-delay: 0.8s;
      animation-duration: 5.5s
  }

  .float-obj:nth-child(5) {
      bottom: 20%;
      left: 20%;
      animation-delay: 2.5s;
      animation-duration: 4s
  }

  @keyframes floatObj {

      0%,
      100% {
          transform: translateY(0) rotate(0deg) scale(1)
      }

      33% {
          transform: translateY(-16px) rotate(5deg) scale(1.03)
      }

      66% {
          transform: translateY(-8px) rotate(-3deg) scale(0.98)
      }
  }

  /* ── SECTION SHARED ── */
  section {
      padding: 80px 24px
  }

  .section-header {
      text-align: center;
      margin-bottom: 52px
  }

  .section-header h2 {
      font-size: clamp(24px, 3.5vw, 38px);
      font-weight: 800;
      color: var(--brown);
      margin-bottom: 12px
  }

  .section-header p {
      font-size: 16px;
      color: var(--text-light);
      max-width: 500px;
      margin: 0 auto
  }

  .eyebrow {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      color: var(--orang);
      background: rgba(196, 123, 43, 0.1);
      padding: 4px 14px;
      border-radius: 50px;
      margin-bottom: 12px;
      text-transform: uppercase;
  }

  .container {
      max-width: 1100px;
      margin: 0 auto
  }

  /* ── CATEGORIES ── */
  #categories {
      background: var(--cream)
  }

  .categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 24px;
  }

  .cat-card {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 24px 16px;
      text-align: center;
      cursor: pointer;
      transition: var(--transition);
      border: 2px solid transparent;
      position: relative;
      overflow: hidden;
  }

  .cat-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(135deg, transparent, rgba(196, 123, 43, 0.05));
      opacity: 0;
      transition: opacity 0.3s;
  }

  .cat-card:hover {
      transform: translateY(-4px);
      border-color: var(--orang);
      box-shadow: var(--shadow-card)
  }

  .cat-card:hover::before {
      opacity: 1
  }

  .cat-card.active {
      border-color: var(--orang);
      background: var(--vanilla);
      box-shadow: var(--shadow-card)
  }

  .cat-icon {
      font-size: 36px;
      display: block;
      margin-bottom: 10px;
      line-height: 1
  }

  .cat-name {
      font-size: 13px;
      font-weight: 600;
      color: var(--brown);
      margin-bottom: 4px
  }

  .cat-desc {
      font-size: 11px;
      color: var(--text-light);
      line-height: 1.5
  }

  /* ── MENU ── */
  #menu {
      background: var(--cream)
  }

  .menu-tabs {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 36px;
      justify-content: center;
  }

  .tab-btn {
      background: var(--white);
      border: 1.5px solid rgba(196, 123, 43, 0.2);
      color: var(--text-mid);
      padding: 8px 18px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      font-family: 'Vazirmatn', sans-serif;
      transition: var(--transition);
  }

  .tab-btn:hover {
      border-color: var(--orang);
      color: var(--orang)
  }

  .tab-btn.active {
      background: var(--orang);
      color: var(--white);
      border-color: var(--orang)
  }

  .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 20px;
  }

  .product-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: var(--transition);
      cursor: pointer;
      border: 1px solid rgba(196, 123, 43, 0.08);
  }

  .product-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-warm)
  }

  .product-img {
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 64px;
      position: relative;
      overflow: hidden;
  }

  .product-img-bg-warm {
      background: linear-gradient(135deg, var(--vanilla), var(--cream-dark))
  }

  .product-img-bg-cool {
      background: linear-gradient(135deg, var(--mint-light), #E0F5EA)
  }

  .product-img-bg-pink {
      background: linear-gradient(135deg, var(--pink-light), #FFEEF5)
  }

  .product-img-bg-choc {
      background: linear-gradient(135deg, #F5E8D0, #EDD5B0)
  }

  .product-body {
      padding: 16px
  }

  .product-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 10px
  }

  .tag {
      font-size: 10px;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 4px
  }

  .tag-bestseller {
      background: #FFF3CD;
      color: #7B5A00
  }

  .tag-new {
      background: #D4EDDA;
      color: #155724
  }

  .tag-special {
      background: #F8D7DA;
      color: #721C24
  }

  .tag-sugarfree {
      background: #D1ECF1;
      color: #0C5460
  }

  .tag-kids {
      background: var(--pink-light);
      color: #8B3A55
  }

  .product-name {
      font-size: 16px;
      font-weight: 700;
      color: var(--brown);
      margin-bottom: 6px
  }

  .product-desc {
      font-size: 12px;
      color: var(--text-light);
      line-height: 1.6;
      margin-bottom: 12px;
      min-height: 38px
  }

  .product-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px
  }

  .product-price {
      font-size: 17px;
      font-weight: 800;
      color: var(--orang)
  }

  .product-price small {
      font-size: 11px;
      font-weight: 400;
      color: var(--text-light)
  }

  .product-actions {
      display: flex;
      gap: 6px
  }

  .btn-detail {
      background: var(--cream);
      color: var(--brown);
      border: none;
      padding: 7px 12px;
      border-radius: 8px;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      font-family: 'Vazirmatn', sans-serif;
      transition: var(--transition);
  }

  .btn-detail:hover {
      background: var(--cream-dark)
  }

  .btn-add {
      background: var(--orang);
      color: var(--white);
      border: none;
      padding: 7px 12px;
      border-radius: 8px;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      font-family: 'Vazirmatn', sans-serif;
      transition: var(--transition);
      white-space: nowrap;
  }

  .btn-add:hover {
      background: var(--brown-mid)
  }

  /* ── ORDER SIDEBAR ── */
  .order-bar {
      position: fixed;
      bottom: 80px;
      left: 16px;
      z-index: 90;
      background: var(--brown);
      color: var(--white);
      border-radius: var(--radius-md);
      padding: 12px 18px;
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
      transition: var(--transition);
      transform: translateY(100px);
      opacity: 0;
  }

  .order-bar.visible {
      transform: translateY(0);
      opacity: 1
  }

  .order-bar:hover {
      background: var(--brown-mid)
  }

  .order-badge {
      background: var(--orang);
      color: var(--white);
      border-radius: 50%;
      width: 22px;
      height: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
  }

  /* ── MODAL ── */
  .modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(30, 10, 0, 0.6);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
  }

  .modal-overlay.open {
      opacity: 1;
      pointer-events: all
  }

  .modal-box {
      background: var(--white);
      border-radius: var(--radius-lg);
      max-width: 560px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      transform: scale(0.92) translateY(20px);
      transition: transform 0.3s;
  }

  .modal-overlay.open .modal-box {
      transform: scale(1) translateY(0)
  }

  .modal-img {
      height: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 80px;
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .modal-body {
      padding: 24px
  }

  .modal-body h2 {
      font-size: 24px;
      font-weight: 800;
      color: var(--brown);
      margin-bottom: 8px
  }

  .modal-body .modal-desc {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 16px
  }

  .modal-section-title {
      font-size: 12px;
      font-weight: 700;
      color: var(--text-light);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 8px
  }

  .ingredient-list {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 16px
  }

  .ingredient {
      background: var(--cream);
      color: var(--text-mid);
      font-size: 11px;
      padding: 4px 10px;
      border-radius: 50px;
      font-weight: 500
  }

  .size-options {
      display: flex;
      gap: 8px;
      margin-bottom: 16px
  }

  .size-btn {
      padding: 8px 16px;
      border-radius: 8px;
      border: 1.5px solid rgba(196, 123, 43, 0.3);
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      font-family: 'Vazirmatn', sans-serif;
      color: var(--text-mid);
      background: var(--white);
      transition: var(--transition);
  }

  .size-btn.active,
  .size-btn:hover {
      border-color: var(--orang);
      color: var(--orang);
      background: var(--vanilla)
  }

  .modal-price {
      font-size: 26px;
      font-weight: 800;
      color: var(--orang);
      margin-bottom: 16px
  }

  .modal-actions {
      display: flex;
      gap: 10px
  }

  .modal-actions .btn-primary {
      flex: 1;
      justify-content: center
  }

  .modal-close {
      position: absolute;
      top: 16px;
      left: 16px;
      background: rgba(255, 255, 255, 0.9);
      border: none;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-card);
      transition: var(--transition);
  }

  .modal-close:hover {
      background: var(--white);
      transform: scale(1.1)
  }

  .modal-wrapper {
      position: relative
  }

  .allergy-note {
      background: var(--pink-light);
      color: #7B3A55;
      font-size: 12px;
      padding: 8px 12px;
      border-radius: 8px;
      margin-bottom: 16px;
      display: flex;
      align-items: flex-start;
      gap: 6px;
      line-height: 1.5;
  }

  /* ── OFFERS ── */
  #offers {
      background: var(--orang)
  }

  #offers .section-header h2 {
      color: var(--cream)
  }

  #offers .section-header p {
      color: rgba(255, 240, 220, 0.7)
  }

  #offers .eyebrow {
      background: rgba(212, 168, 83, 0.2);
      color: var(--gold-light)
  }

  .offers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 20px;
  }

  .offer-card {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(212, 168, 83, 0.2);
      border-radius: var(--radius-lg);
      padding: 24px;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
  }

  .offer-card::after {
      content: '';
      position: absolute;
      bottom: -30px;
      right: -30px;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: rgba(212, 168, 83, 0.1);
  }

  .offer-card:hover {
      border-color: var(--gold);
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-4px)
  }

  .offer-icon {
      font-size: 40px;
      margin-bottom: 12px;
      display: block
  }

  .offer-card h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 8px
  }

  .offer-card p {
      font-size: 13px;
      color: rgba(255, 240, 220, 0.65);
      line-height: 1.7;
      margin-bottom: 16px
  }

  .offer-price {
      font-size: 20px;
      font-weight: 800;
      color: var(--gold-light)
  }

  .offer-old-price {
      font-size: 14px;
      color: rgba(255, 240, 220, 0.45);
      text-decoration: line-through;
      margin-right: 8px
  }

  .offer-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      background: var(--orang);
      color: var(--white);
      font-size: 11px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 50px;
  }

  /* ── ABOUT ── */
  #about {
      background: var(--orang)
  }

  .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center
  }

  .about-text h2 {
      font-size: 32px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 16px;
      line-height: 1.4
  }

  .about-text p {
      font-size: 15px;
      color: var(--white);
      line-height: 1.9;
      margin-bottom: 20px
  }

  .about-stats {
      display: flex;
      gap: 24px;
      margin-top: 32px
  }

  .stat {
      text-align: center
  }

  .stat-num {
      font-size: 32px;
      font-weight: 800;
      color: var(--orang);
      line-height: 1
  }

  .stat-label {
      font-size: 12px;
      color: var(--text-light);
      margin-top: 4px
  }

  .about-visual {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
  }

  .about-visual-item {
      border-radius: var(--radius-md);
      overflow: hidden;
      height: 160px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 48px;
  }

  .about-visual-item:first-child {
      grid-column: span 2;
      height: 200px;
      font-size: 64px
  }

  .about-visual-item:nth-child(1) {
      background: linear-gradient(135deg, var(--brown-mid), var(--brown))
  }

  .about-visual-item:nth-child(2) {
      background: linear-gradient(135deg, var(--pink-light), #FFC2D4)
  }

  .about-visual-item:nth-child(3) {
      background: linear-gradient(135deg, var(--mint-light), #B0E8C0)
  }

  /* ── GALLERY ── */
  #gallery {
      background: var(--cream)
  }

  .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(2, 160px);
      gap: 12px;
  }

  .gallery-item {
      border-radius: var(--radius-md);
      overflow: hidden;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 40px;
      position: relative;
      transition: var(--transition);
  }

  .gallery-item:hover {
      transform: scale(0.98);
      opacity: 0.9
  }

  .gallery-item:hover .gallery-overlay {
      opacity: 1
  }

  .gallery-overlay {
      position: absolute;
      inset: 0;
      background: rgba(44, 16, 6, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--cream);
      font-size: 14px;
      font-weight: 600;
      opacity: 0;
      transition: opacity 0.3s;
      border-radius: inherit;
  }

  .gallery-item:nth-child(1) {
      grid-column: span 2;
      grid-row: span 2;
      font-size: 64px;
      background: linear-gradient(135deg, #F5E8D0, #EDD5B0)
  }

  .gallery-item:nth-child(2) {
      background: linear-gradient(135deg, var(--pink-light), #FFD4E4)
  }

  .gallery-item:nth-child(3) {
      background: linear-gradient(135deg, var(--mint-light), #C0EDD0)
  }

  .gallery-item:nth-child(4) {
      background: linear-gradient(135deg, var(--vanilla), var(--cream-dark))
  }

  .gallery-item:nth-child(5) {
      background: linear-gradient(135deg, #F5E0C8, #EFD0B0)
  }

  /* ── CONTACT ── */
  #contact {
      background: var(--white)
  }

  .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px
  }

  .contact-info {
      display: flex;
      flex-direction: column;
      gap: 20px
  }

  .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 14px
  }

  .contact-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--cream);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
  }

  .contact-item-text {
      flex: 1
  }

  .contact-item-label {
      font-size: 11px;
      font-weight: 700;
      color: var(--text-light);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 4px
  }

  .contact-item-value {
      font-size: 15px;
      font-weight: 600;
      color: var(--brown);
      line-height: 1.5
  }

  .map-placeholder {
      background: var(--cream);
      border-radius: var(--radius-lg);
      height: 280px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 12px;
      color: var(--text-light);
      font-size: 14px;
      border: 2px dashed rgba(196, 123, 43, 0.2);
  }

  .map-placeholder span {
      font-size: 40px
  }

  .social-row {
      display: flex;
      gap: 10px;
      margin-top: 8px
  }

  .social-btn {
      background: var(--cream);
      color: var(--brown);
      border: none;
      padding: 8px 16px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      font-family: 'Vazirmatn', sans-serif;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 6px;
      text-decoration: none;
  }

  .social-btn:hover {
      background: var(--cream-dark)
  }

  .social-btn.insta {
      background: #FCEAFA;
      color: #7B2FA8
  }

  .social-btn.whatsapp {
      background: #D4F5E2;
      color: #0F6E3F
  }

  /* ── ORDER MODAL ── */
  .order-modal {
      position: fixed;
      inset: 0;
      z-index: 300;
      background: rgba(20, 8, 0, 0.7);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: flex-end;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
  }

  .order-modal.open {
      opacity: 1;
      pointer-events: all
  }

  .order-modal-box {
      background: var(--white);
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
      width: 100%;
      max-width: 500px;
      max-height: 75vh;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .order-modal.open .order-modal-box {
      transform: translateY(0)
  }

  .order-modal-header {
      padding: 20px 20px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
  }

  .order-modal-header h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--brown)
  }

  .order-items {
      padding: 16px 20px;
      overflow-y: auto;
      flex: 1
  }

  .order-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(196, 123, 43, 0.1);
  }

  .order-item-emoji {
      font-size: 24px
  }

  .order-item-info {
      flex: 1
  }

  .order-item-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--brown)
  }

  .order-item-size {
      font-size: 11px;
      color: var(--text-light)
  }

  .order-item-price {
      font-size: 15px;
      font-weight: 700;
      color: var(--orang)
  }

  .order-item-remove {
      background: none;
      border: none;
      color: var(--text-light);
      cursor: pointer;
      font-size: 16px;
      padding: 4px
  }

  .order-item-qty {
      display: flex;
      align-items: center;
      gap: 8px
  }

  .qty-btn {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--cream);
      border: none;
      font-size: 14px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: var(--brown);
      transition: background 0.2s;
  }

  .qty-btn:hover {
      background: var(--cream-dark)
  }

  .qty-num {
      font-size: 14px;
      font-weight: 600;
      min-width: 16px;
      text-align: center
  }

  .order-footer {
      padding: 16px 20px;
      background: var(--cream);
      border-top: 1px solid rgba(196, 123, 43, 0.15);
  }

  .order-total {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px
  }

  .order-total-label {
      font-size: 15px;
      color: var(--text-mid);
      font-weight: 500
  }

  .order-total-price {
      font-size: 22px;
      font-weight: 800;
      color: var(--orang)
  }

  .order-empty {
      text-align: center;
      padding: 40px 20px;
      color: var(--text-light)
  }

  .order-empty span {
      font-size: 40px;
      display: block;
      margin-bottom: 12px
  }

  /* ── FOOTER ── */
  footer {
      background: var(--orang);
      color: #fff;
      padding: 48px 24px 24px;
  }

  .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 40px;
      max-width: 1100px;
      margin: 0 auto 40px;
  }

  .footer-logo {
      font-size: 22px;
      font-weight: 800;
      color: var(--cream);
      margin-bottom: 12px;
      display: flex;
      justify-content: center;
  }

  .footer-logo span {
      color: var(--orang)
  }

  .footer-desc {
      font-size: 13px;
      line-height: 1.8;
      margin-bottom: 16px
  }

  .footer-col h4 {
      font-size: 14px;
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 14px
  }

  .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px
  }

  .footer-links a {
      font-size: 13px;
      color: #fff;
      text-decoration: none;
      transition: color 0.2s
  }

  .footer-links a:hover {
      color: var(--gold-light)
  }

  .footer-bottom {
      border-top: 1px solid rgba(255, 240, 220, 0.08);
      padding-top: 20px;
      text-align: center;
      font-size: 12px;
      max-width: 1100px;
      margin: 0 auto;
  }

  /* ── STICKY MOBILE BAR ── */
  .mobile-bar {
      position: fixed;
      bottom: 0;
      right: 0;
      left: 0;
      z-index: 95;
      background: var(--orang);
      backdrop-filter: blur(8px);
      display: none;
      height: 64px;
      justify-content: space-around;
      align-items: center;
      border-top: 1px solid rgba(255, 240, 220, 0.1);
  }

  .mb-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      color: rgba(255, 240, 220, 0.65);
      font-size: 10px;
      font-weight: 600;
      background: none;
      border: none;
      cursor: pointer;
      font-family: 'Vazirmatn', sans-serif;
      transition: color 0.2s;
      padding: 0 12px;
  }

  .mb-btn:hover,
  .mb-btn.active {
      color: var(--gold-light)
  }

  .mb-btn span {
      font-size: 20px;
      line-height: 1
  }

  /* ── SCROLL ANIMATION ── */
  .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s, transform 0.6s
  }

  .reveal.visible {
      opacity: 1;
      transform: none
  }

  /* ── RESPONSIVE ── */
  @media(max-width:768px) {
      nav {
          padding: 0 16px
      }

      .nav-links {
          display: none
      }

      .hero-content {
          grid-template-columns: 1fr;
          gap: 32px;
          text-align: center
      }

      .hero-text p {
          margin: 0 auto 24px
      }

      .hero-visual {
          height: 280px
      }

      .float-obj:nth-child(1) {
          top: 5%;
          right: 5%;
          transform: scale(0.7)
      }

      .float-obj:nth-child(2) {
          display: none
      }

      .float-obj:nth-child(4) {
          display: none
      }

      .about-grid {
          grid-template-columns: 1fr
      }

      .about-visual {
          order: -1
      }

      .contact-grid {
          grid-template-columns: 1fr
      }

      .gallery-grid {
          grid-template-columns: repeat(2, 1fr);
          grid-template-rows: auto
      }

      .gallery-item:nth-child(1) {
          grid-column: span 2
      }

      .footer-grid {
          grid-template-columns: 1fr
      }

      .mobile-bar {
          display: flex
      }

      section {
          padding: 60px 16px
      }

      .order-bar {
          bottom: 74px
      }
  }

  @media(max-width:480px) {
      .hero-buttons {
          justify-content: center
      }

      .categories-grid {
          grid-template-columns: repeat(2, 1fr)
      }

      .about-stats {
          gap: 12px
      }
  }

  /* number animation */
  @keyframes countUp {
      from {
          opacity: 0;
          transform: translateY(10px)
      }

      to {
          opacity: 1;
          transform: none
      }
  }