 .fruits-grid {
      padding: 56px 0;
      background: #fff;
    }
    .fruits-grid__items {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }
    @media (max-width: 992px) {
      .fruits-grid__items {
        grid-template-columns: 1fr;
      }
    }
    .fruit-panel {
      display: flex;
      flex-direction: column;
      gap: 18px;
      padding: 24px;
      margin: 0rem;
      border: 1px solid rgba(0, 0, 0, 0.05);
      border-radius: 32px;
      background: #fff;
      box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
      min-height: 700px;
    }
    @media (max-width: 600px) {
      .fruit-panel {
        /* keep horizontal bleed but prevent vertical overlap with the sticky header */
         margin: -2rem -1.65rem;
      }
    }
    
    .dragon-title-bar {
      background: linear-gradient(135deg, #ff1f5c, #ff779c);
      border-radius: 16px;
      color: #fff;
      text-align: center;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 16px 0;
      font-size: 1.25rem;
    }
    .dragon-info-card {
      background: #fff0f5;
      border-radius: 20px;
      border: 1px solid rgba(255, 31, 92, 0.3);
      padding: 24px;
      box-shadow: 0 20px 40px rgba(255, 31, 92, 0.12);
    }
    .dragon-info-card img {
      border-radius: 16px;
      margin-bottom: 20px;
    }
    .dragon-info-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .dragon-info-card li {
      background: #fff;
      border-radius: 14px;
      padding: 12px 14px;
      display: flex;
      gap: 10px;
      box-shadow: inset 0 0 0 1px rgba(255, 31, 92, 0.15);
    }
    .dragon-info-card li .fa-stack {
      min-width: 28px;
      font-size: 0.9rem;
      color: #c20042;
    }
    .dragon-info-card strong {
      font-size: 0.95rem;
      margin-bottom: 2px;
    }
    .fruit-gallery {
      border-radius: 20px;
      overflow: hidden;
    }
    .fruit-gallery img {
      width: 100%;
      height: 200px;
      border-radius: 0;
      object-fit: cover;
      box-shadow: none;
    }
    .dragon-gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }
    @media (max-width: 992px) {
      .dragon-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }
    }
    .mango-title-bar {
      background: linear-gradient(135deg, #f6c343, #fbc02d 65%, #fdd835);
      border-radius: 16px;
      color: #2c1200;
      text-align: center;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 16px 0;
      font-size: 1.25rem;
      box-shadow: 0 10px 30px rgba(251, 192, 91, 0.4);
    }
    .mango-info-card {
      background: #fffef5;
      border-radius: 20px;
      border: 1px solid rgba(255, 173, 51, 0.4);
      padding: 24px;
      box-shadow: 0 20px 45px rgba(251, 182, 62, 0.18);
    }
    .mango-info-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .mango-info-card li {
      background: #fff;
      border-radius: 14px;
      padding: 12px 14px;
      display: flex;
      gap: 10px;
      box-shadow: inset 0 0 0 1px rgba(251, 182, 62, 0.25);
    }
    .mango-info-card li .fa-stack {
      min-width: 28px;
      font-size: 0.9rem;
      color: #c17b00;
    }
    .mango-gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }
    .mango-gallery-grid img {
      border-radius: 18px;
      object-fit: cover;
    }
    @media (max-width: 992px) {
      .mango-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }
    }
    .yam-info-card {
      background: #fff8ee;
      border-radius: 20px;
      border: 1px solid rgba(95, 61, 34, 0.5);
      padding: 24px;
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    }
    .yam-info-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .yam-info-card li {
      background: rgba(255, 255, 255, 0.9);
      border-radius: 14px;
      padding: 12px 14px;
      display: flex;
      gap: 10px;
      box-shadow: inset 0 0 0 1px rgba(95, 61, 34, 0.25);
    }
    .yam-info-card li .fa-stack {
      min-width: 28px;
      font-size: 0.9rem;
      color: #7b4a21;
    }
    .yam-title-bar {
      background: linear-gradient(135deg, #b87333, #d9a861 60%, #f0c27b);
      border-radius: 16px;
      color: #3a1903;
      text-align: center;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 16px 0;
      font-size: 1.15rem;
    }
    .yam-gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }
    .yam-gallery-grid img {
      border-radius: 18px;
      object-fit: cover;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    }
    @media (max-width: 992px) {
      .yam-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }
    }
    .avocado-title-bar {
      background: linear-gradient(135deg, #2c7b3a, #56b870 70%, #7ddd8f);
      border-radius: 16px;
      color: #05240b;
      text-align: center;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 16px 0;
      font-size: 1.25rem;
      box-shadow: 0 10px 30px rgba(7, 65, 24, 0.45);
    }
    .avocado-info-card {
      background: rgba(255, 255, 255, 0.9);
      border-radius: 20px;
      border: 1px solid rgba(20, 80, 30, 0.4);
      padding: 24px;
      box-shadow: 0 20px 45px rgba(15, 48, 18, 0.25);
    }
    .avocado-info-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .avocado-info-card li {
      background: #fff;
      border-radius: 14px;
      padding: 12px 14px;
      display: flex;
      gap: 10px;
      box-shadow: inset 0 0 0 1px rgba(34, 89, 45, 0.25);
    }
    .avocado-info-card li .fa-stack {
      min-width: 28px;
      font-size: 0.9rem;
      color: #2b6d33;
    }
    .avocado-gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }
    .avocado-gallery-grid img {
      border-radius: 18px;
      object-fit: cover;
      box-shadow: 0 20px 40px rgba(7, 65, 24, 0.4);
    }
    @media (max-width: 992px) {
      .avocado-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }
    }
    .lemon-title-bar {
      background: linear-gradient(135deg, #f8d948, #f7b500 70%, #f28f05);
      border-radius: 16px;
      color: #3a2600;
      text-align: center;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 16px 0;
      font-size: 1.25rem;
      box-shadow: 0 10px 30px rgba(247, 194, 79, 0.35);
    }
    .lemon-info-card {
      background: #fffdf2;
      border-radius: 20px;
      border: 1px solid rgba(243, 166, 0, 0.4);
      padding: 24px;
      box-shadow: 0 20px 45px rgba(243, 166, 0, 0.2);
    }
    .lemon-info-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .lemon-info-card li {
      background: #fff;
      border-radius: 14px;
      padding: 12px 14px;
      display: flex;
      gap: 10px;
      box-shadow: inset 0 0 0 1px rgba(243, 166, 0, 0.25);
    }
    .lemon-info-card li .fa-stack {
      min-width: 28px;
      font-size: 0.9rem;
      color: #c86c00;
    }
    .lemon-gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }
    .lemon-gallery-grid img {
      border-radius: 18px;
      object-fit: cover;
      box-shadow: 0 20px 30px rgba(248, 217, 72, 0.3);
    }
    @media (max-width: 992px) {
      .lemon-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }
    }
    .guava-title-bar {
      background: linear-gradient(135deg, #8ecf58, #61a922 70%, #3b7a12);
      border-radius: 16px;
      color: #0f3103;
      text-align: center;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 16px 0;
      font-size: 1.25rem;
      box-shadow: 0 10px 30px rgba(98, 186, 29, 0.35);
    }
    .guava-info-card {
      background: #f5fff1;
      border-radius: 20px;
      border: 1px solid rgba(91, 185, 24, 0.4);
      padding: 24px;
      box-shadow: 0 20px 45px rgba(91, 185, 24, 0.2);
    }
    .guava-info-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .guava-info-card li {
      background: #fff;
      border-radius: 14px;
      padding: 12px 14px;
      display: flex;
      gap: 10px;
      box-shadow: inset 0 0 0 1px rgba(91, 185, 24, 0.25);
    }
    .guava-info-card li .fa-stack {
      min-width: 28px;
      font-size: 0.9rem;
      color: #2e6b16;
    }
    .guava-gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }
    .guava-gallery-grid img {
      border-radius: 18px;
      object-fit: cover;
      box-shadow: 0 20px 30px rgba(79, 180, 35, 0.3);
    }
    @media (max-width: 992px) {
      .guava-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }
    }
    .ginger-title-bar {
      background: linear-gradient(135deg, #d7a04a, #c27f1c 70%, #a65100);
      border-radius: 16px;
      color: #1d0f00;
      text-align: center;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 16px 0;
      font-size: 1.25rem;
      box-shadow: 0 10px 30px rgba(194, 143, 58, 0.35);
    }
    .ginger-info-card {
      background: #fffaf4;
      border-radius: 20px;
      border: 1px solid rgba(194, 143, 58, 0.4);
      padding: 24px;
      box-shadow: 0 20px 45px rgba(194, 143, 58, 0.2);
    }
    .ginger-info-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .ginger-info-card li {
      background: #fff;
      border-radius: 14px;
      padding: 12px 14px;
      display: flex;
      gap: 10px;
      box-shadow: inset 0 0 0 1px rgba(194, 143, 58, 0.25);
    }
    .ginger-info-card li .fa-stack {
      min-width: 28px;
      font-size: 0.9rem;
      color: #a65100;
    }
    .ginger-gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }
    .ginger-gallery-grid img {
      border-radius: 18px;
      object-fit: cover;
      box-shadow: 0 20px 30px rgba(220, 152, 66, 0.3);
    }
    @media (max-width: 992px) {
      .ginger-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }
    }
    .purple-yam-title-bar {
      background: linear-gradient(135deg, #925b9e, #6b3481 70%, #481455);
      border-radius: 16px;
      color: #fff;
      text-align: center;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 16px 0;
      font-size: 1.25rem;
      box-shadow: 0 10px 30px rgba(107, 52, 129, 0.35);
    }
    .purple-yam-info-card {
      background: #fff3fb;
      border-radius: 20px;
      border: 1px solid rgba(145, 91, 158, 0.4);
      padding: 24px;
      box-shadow: 0 20px 45px rgba(145, 91, 158, 0.25);
    }
    .purple-yam-info-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .purple-yam-info-card li {
      background: #fff;
      border-radius: 14px;
      padding: 12px 14px;
      display: flex;
      gap: 10px;
      box-shadow: inset 0 0 0 1px rgba(145, 91, 158, 0.25);
    }
    .purple-yam-info-card li .fa-stack {
      min-width: 28px;
      font-size: 0.9rem;
      color: #6b3481;
    }
    .purple-yam-gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }
    .purple-yam-gallery-grid img {
      border-radius: 18px;
      object-fit: cover;
      box-shadow: 0 20px 30px rgba(145, 91, 158, 0.25);
    }
    @media (max-width: 992px) {
      .purple-yam-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }
    }
    .mangosteen-title-bar {
      background: linear-gradient(135deg, #862c4d, #a7355e 60%, #c64f7a);
      border-radius: 16px;
      color: #fff;
      text-align: center;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 16px 0;
      font-size: 1.25rem;
      box-shadow: 0 10px 30px rgba(197, 79, 122, 0.35);
    }
    .mangosteen-info-card {
      background: #fff4fb;
      border-radius: 20px;
      border: 1px solid rgba(197, 79, 122, 0.4);
      padding: 24px;
      box-shadow: 0 20px 45px rgba(197, 79, 122, 0.2);
    }
    .mangosteen-info-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .mangosteen-info-card li {
      background: #fff;
      border-radius: 14px;
      padding: 12px 14px;
      display: flex;
      gap: 10px;
      box-shadow: inset 0 0 0 1px rgba(197, 79, 122, 0.25);
    }
    .mangosteen-info-card li .fa-stack {
      min-width: 28px;
      font-size: 0.9rem;
      color: #a7355e;
    }
    .mangosteen-gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }
    .mangosteen-gallery-grid img {
      border-radius: 18px;
      object-fit: cover;
      box-shadow: 0 20px 30px rgba(197, 79, 122, 0.3);
    }
    @media (max-width: 992px) {
      .mangosteen-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }
    }
    .red-dragon-title-bar {
      background: linear-gradient(135deg, #a4002d, #ff1f66 65%, #ff5c9c);
      border-radius: 16px;
      color: #fff;
      text-align: center;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 16px 0;
      font-size: 1.25rem;
      box-shadow: 0 10px 30px rgba(255, 95, 154, 0.35);
    }
    .red-dragon-info-card {
      background: #fff0f5;
      border-radius: 20px;
      border: 1px solid rgba(255, 31, 92, 0.4);
      padding: 24px;
      box-shadow: 0 20px 45px rgba(255, 31, 92, 0.2);
    }
    .red-dragon-info-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .red-dragon-info-card li {
      background: #fff;
      border-radius: 14px;
      padding: 12px 14px;
      display: flex;
      gap: 10px;
      box-shadow: inset 0 0 0 1px rgba(255, 31, 92, 0.25);
    }
    .red-dragon-info-card li .fa-stack {
      min-width: 28px;
      font-size: 0.9rem;
      color: #c20042;
    }
    .red-dragon-gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }
    .red-dragon-gallery-grid img {
      border-radius: 18px;
      object-fit: cover;
      box-shadow: 0 20px 30px rgba(255, 31, 92, 0.3);
    }
    @media (max-width: 992px) {
      .red-dragon-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }
    }
    .chomchom-title-bar {
      background: linear-gradient(135deg, #d83d5d, #f75e8a 65%, #ff8ebc);
      border-radius: 16px;
      color: #fff;
      text-align: center;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 16px 0;
      font-size: 1.25rem;
      box-shadow: 0 10px 30px rgba(247, 94, 138, 0.35);
    }
    .chomchom-info-card {
      background: #fff5fb;
      border-radius: 20px;
      border: 1px solid rgba(216, 61, 93, 0.4);
      padding: 24px;
      box-shadow: 0 20px 45px rgba(216, 61, 93, 0.2);
    }
    .chomchom-info-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .chomchom-info-card li {
      background: #fff;
      border-radius: 14px;
      padding: 12px 14px;
      display: flex;
      gap: 10px;
      box-shadow: inset 0 0 0 1px rgba(216, 61, 93, 0.25);
    }
    .chomchom-info-card li .fa-stack {
      min-width: 28px;
      font-size: 0.9rem;
      color: #aa0d41;
    }
    .chomchom-gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }
    .chomchom-gallery-grid img {
      border-radius: 18px;
      object-fit: cover;
      box-shadow: 0 20px 30px rgba(217, 61, 93, 0.3);
    }
    @media (max-width: 992px) {
      .chomchom-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }
    }
    .carrot-title-bar {
      background: linear-gradient(135deg, #f79426, #ff6b00 70%, #f44336);
      border-radius: 16px;
      color: #3a1300;
      text-align: center;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 16px 0;
      font-size: 1.25rem;
      box-shadow: 0 10px 30px rgba(255, 123, 14, 0.35);
    }
    .carrot-info-card {
      background: #fff6ed;
      border-radius: 20px;
      border: 1px solid rgba(247, 132, 36, 0.4);
      padding: 24px;
      box-shadow: 0 20px 45px rgba(247, 132, 36, 0.2);
    }
    .carrot-info-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .carrot-info-card li {
      background: #fff;
      border-radius: 14px;
      padding: 12px 14px;
      display: flex;
      gap: 10px;
      box-shadow: inset 0 0 0 1px rgba(247, 132, 36, 0.25);
    }
    .carrot-info-card li .fa-stack {
      min-width: 28px;
      font-size: 0.9rem;
      color: #c55200;
    }
    .carrot-gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }
    .carrot-gallery-grid img {
      border-radius: 18px;
      object-fit: cover;
      box-shadow: 0 20px 30px rgba(255, 128, 0, 0.25);
    }
    @media (max-width: 992px) {
      .carrot-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }
    }
    .tomato-title-bar {
      background: linear-gradient(135deg, #ff4d4d, #d50000 70%, #8b0000);
      border-radius: 16px;
      color: #ffffff;
      text-align: center;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 16px 0;
      font-size: 1.25rem;
      box-shadow: 0 10px 30px rgba(211, 14, 14, 0.35);
    }
    .tomato-info-card {
      background: #fff4f4;
      border-radius: 20px;
      border: 1px solid rgba(255, 77, 77, 0.4);
      padding: 24px;
      box-shadow: 0 20px 45px rgba(255, 77, 77, 0.2);
    }
    .tomato-info-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .tomato-info-card li {
      background: #fff;
      border-radius: 14px;
      padding: 12px 14px;
      display: flex;
      gap: 10px;
      box-shadow: inset 0 0 0 1px rgba(255, 77, 77, 0.25);
    }
    .tomato-info-card li .fa-stack {
      min-width: 28px;
      font-size: 0.9rem;
      color: #b30000;
    }
    .tomato-gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }
    .tomato-gallery-grid img {
      border-radius: 18px;
      object-fit: cover;
      box-shadow: 0 20px 30px rgba(255, 77, 77, 0.25);
    }
    @media (max-width: 992px) {
      .tomato-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }
    }
    .durian-title-bar {
      background: linear-gradient(135deg, #f5d450, #e3bb0f 55%, #b49024);
      border-radius: 16px;
      color: #332602;
      text-align: center;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 16px 0;
      font-size: 1.25rem;
      box-shadow: 0 10px 30px rgba(211, 173, 26, 0.4);
    }
    .durian-info-card {
      background: #fffef4;
      border-radius: 20px;
      border: 1px solid rgba(226, 177, 53, 0.5);
      padding: 24px;
      box-shadow: 0 20px 45px rgba(58, 40, 0, 0.15);
    }
    .durian-info-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .durian-info-card li {
      background: #fff;
      border-radius: 14px;
      padding: 12px 14px;
      display: flex;
      gap: 10px;
      box-shadow: inset 0 0 0 1px rgba(201, 161, 61, 0.35);
    }
    .durian-info-card li .fa-stack {
      min-width: 28px;
      font-size: 0.9rem;
      color: #6f4f0b;
    }
    .durian-gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }
    .durian-gallery-grid img {
      border-radius: 18px;
      object-fit: cover;
      box-shadow: 0 20px 40px rgba(80, 71, 14, 0.35);
    }
    @media (max-width: 992px) {
      .durian-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }
    }
    .dried-mango-title-bar {
      background: linear-gradient(135deg, #ff9c4a, #ff712a 60%, #ff5028);
      border-radius: 16px;
      color: #2c0c00;
      text-align: center;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 16px 0;
      font-size: 1.25rem;
      box-shadow: 0 10px 30px rgba(255, 112, 42, 0.4);
    }
    .dried-mango-info-card {
      background: #fff6ef;
      border-radius: 20px;
      border: 1px solid rgba(255, 129, 42, 0.45);
      padding: 24px;
      box-shadow: 0 20px 45px rgba(255, 138, 42, 0.25);
    }
    .dried-mango-info-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .dried-mango-info-card li {
      background: #fff;
      border-radius: 14px;
      padding: 12px 14px;
      display: flex;
      gap: 10px;
      box-shadow: inset 0 0 0 1px rgba(255, 141, 65, 0.35);
    }
    .dried-mango-info-card li .fa-stack {
      min-width: 28px;
      font-size: 0.9rem;
      color: #cc4b00;
    }
    .dried-mango-gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }
    .dried-mango-gallery-grid img {
      border-radius: 18px;
      object-fit: cover;
      box-shadow: 0 20px 40px rgba(255, 96, 0, 0.3);
    }
    @media (max-width: 992px) {
      .dried-mango-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }
    }
    .img-fluid {
    margin-bottom: 1.2rem;
    height: 20rem; 
    border-radius: 5%;
    }
    .name-fluid{
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }
    .fruit-jump-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 2.5rem;
      justify-content: center;
    }
    .fruit-jump-grid a {
      padding: 0.65rem 1.25rem;
      border-radius: 20px;
      border: 1px solid #1b5e20;
      background: #fff;
      color: #1b5e20;
      font-weight: 600;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      text-decoration: none;
      transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.35rem;
    }
    .fruit-jump-grid a:hover {
      background: #e8f5e9;
      cursor: pointer;
      transform: translateY(-1px);
    }
    .fruit-jump-grid a.active {
      background: #1b5e20;
      color: #fff;
      border-color: transparent;
      box-shadow: 0 8px 20px rgba(27, 94, 32, 0.25);
    }
    #scroll-top {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: none;
      background: linear-gradient(180deg, #50c878, #0b6623);
      color: #fff;
      font-size: 1.3rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 20px 35px rgba(11, 102, 35, 0.45);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease, transform 0.25s ease;
      will-change: opacity, transform;
      z-index: 9999;
    }
    #scroll-top.show {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(-4px);
    }