.product-popup-overlay {
      position: fixed;
      top: 85px;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.3);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 999;
      
      
    }

    .product-menu-link:hover .product-popup-overlay{
        display:block;
    }

    .product-popup {
      background: white;
      width: 90%;
      max-width: 1200px;
      padding: 40px;
      display: flex;
      gap: 40px;
      border-radius: 12px;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
      overflow-y: auto;
      max-height: 90vh;
      margin-top:-100px;
      
    }

    .popup-section {
      flex: 2;
    }

    .popup-section h3 {
      font-size: 18px;
      margin-bottom: 24px;
      color: #333;
    }

    .popup-items {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px 30px;
      margin-bottom: 40px;
    }

    .popup-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      border-radius: 10px;
      padding: 10px;
      transition: background 0.25s ease, transform 0.2s ease;
      cursor: pointer;
    }

    .popup-item:hover {
      background-color: #ffffff;
      transform: translateY(-2px);
    }

    .popup-icon {
      width: 48px;
      height: 48px;
      background: #f3f3f3;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 12px;
      flex-shrink: 0;
      transition: background-color 0.3s ease;
    }

    .popup-item:hover .popup-icon {
      background-color: 	#FFB3DE;
    }

    .popup-icon img {
      width: 24px;
      height: 24px;
      object-fit: contain;
    }

    .popup-info {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .popup-info strong {
      font-size: 14px;
      color: #000;
      margin-bottom: 4px;
    }

    .popup-info p {
      font-size: 13px;
      color: #555;
      line-height: 1.4;
      margin: 0;
    }

    .popup-update {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .popup-update h3 {
      font-size: 18px;
      margin-bottom: 20px;
      color: #333;
    }

    .popup-update img {
      width: 100%;
      max-width: 260px;
      border-radius: 10px;
      margin-bottom: 10px;
    }

    .popup-update strong {
      font-size: 14px;
      color: #000;
      margin-bottom: 4px;
    }

    .popup-update p {
      font-size: 13px;
      color: #555;
      margin: 0;
    }

    @media (max-width: 992px) {
      .popup-items {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .popup-items {
        grid-template-columns: 1fr;
      }

      .product-popup {
        flex-direction: column;
      }
    }

    .d-none{
      display: none;
    }